:root {
    --green: #006D18;
    --green-dark: #0b2a14;
    --gold: #cba24f;
    --cream: #faf7f0;
    --off: #f5f0e6;
    --black: #121212;
    --dark: #111;
    --text: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #222;
}

.container {
    width: min(1400px, 92%);
    margin: auto;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

p{
	font-size: 16px;
	color: #072E18;
	font-weight: 500
}

/* ============ SECTION HEADINGS ============ */
.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading span:not(.arrow-heading) {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.section-heading h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    color: var(--green);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.section-heading h2 i {
    color: var(--gold);
    font-size: 22px;
}

.section-heading.light h2 {
    color: #fff;
}

.section-heading .arrow-heading {
   display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: var(--green-dark);
    font-weight: 700;
}

.section-heading .arrow-heading i {
    color: var(--gold);
}

.section-heading .arrow-heading i.flip {
    transform: scaleX(-1);
}

.section-heading .arrow-heading .arrow-flourish {
    width: auto;
    height: 15px;
    display: inline-block;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255, 251, 208, 0.9);
    backdrop-filter: blur(10px);
    transition: .4s;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 30px;
}

.logo {
    align-self: flex-start;
}

.logo img {
    width: 150px;
    display: block;
    margin-top: -6px
}

.navbar ul {
    display: flex;
    gap: 38px;
}

.navbar a {
    color: var(--green);
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    letter-spacing: .5px;
}

.navbar a:hover {
    color: #000000;
}

.navbar a.active {
    color: #000000;
}

.navbar a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 100%;
    height: 2px;
    background: #000000;
}

.quote-btn {
    background: var(--green);
    padding: 16px 28px;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    display: flex;
    gap: 10px;
    align-items: center;
    white-space: nowrap;
    transition: .3s;
}

.quote-btn:hover {
    background: var(--gold);
    color: var(--green);
}

.menu-toggle {
    display: none;
    color: var(--green);
    font-size: 26px;
    cursor: pointer;
}

/* ============ HERO ============ */
.hero {
    height: 90vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-slide.active {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide {
        transition: none;
    }
}

.hero .overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .82) 25%, rgba(0, 0, 0, .5) 58%, rgba(0, 0, 0, .1) 82%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-left {
    max-width: 620px;
    color: #fff;
}

/* Clears the logo ribbon, which hangs down from the header over the
   top-left of the hero. Only the eyebrow + main heading sit beside it;
   everything below returns to the normal left edge. */
.hero-top {
    padding-left: clamp(120px, 15vw, 190px);
}

.sub-title {
    letter-spacing: 2px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.hero h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 82px;
    line-height: 92px;
    margin: 1px 0;
    font-weight: 400;
	margin-top: 20px;
	color: var(--gold);
}

.hero h1 span {
    display: block;
}

.hero h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 76px;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    line-height: 34px;
    color: #ddd;
    margin-bottom: 18px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn {
    padding: 18px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .3s;
}

.green {
    background: var(--green);
    color: #fff;
}

.green:hover {
    background: var(--gold);
    color: var(--green);
}

.gold {
    border: 2px solid var(--gold);
    color: #fff;
}

.gold:hover {
    background: var(--gold);
    color: var(--green);
}

.gold2 {
	background: var(--gold);
    color: #fff;
}

.gold2:hover {
    background: var(--green);
    color: #ffffff;
}

/* ============ AWARDS ============ */
.awards {
   background-image: -ms-linear-gradient(top, #FFFACE 0%, #D9AA60 100%);
	background-image: -moz-linear-gradient(top, #FFFACE 0%, #D9AA60 100%);
	background-image: -o-linear-gradient(top, #FFFACE 0%, #D9AA60 100%);
	background-image: -webkit-gradient(linear, left bottom, right bottom, color-stop(0, #FFFACE), color-stop(100, #D9AA60));
	background-image: -webkit-linear-gradient(top, #565656 0%, #000 100%);
	background-image: linear-gradient(to left, #FFFACE 0%, #D9AA60 100%);
    color: #fff;
    padding-top: 51px;
    padding-bottom: 51px;
    border-top: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.award {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    text-align: left;
}

.award:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, .25);
}

.award img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    flex-shrink: 0;
}

.award h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
	color: #000;
}

.award p {
    font-size: 16px;
    color: var(--green-dark);
    margin-top: 3px;
	font-weight: 500
}

/* ============ ABOUT ============ */
.about {
    padding: 00px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    aspect-ratio: 5 / 5;
}

.about-content span {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
    text-transform: uppercase
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    line-height: 1.15;
    margin: 20px 0;
    color: var(--green);
    font-weight: 900;
}

.about-content p {
    font-size: 16px;
     line-height:1.55;
    color: #072E18;
    margin-bottom: 40px;
	font-weight: 600
}

.about-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding-bottom: 30px
}

.box {
    border: 1px solid var(--gold);
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    transition: .3s;
	background: var(--green);
}

.box:hover {
    border-color: #ddd;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.box i {
    font-size: 32px;
    color:#fff;
    margin-bottom: 15px;
}

.box h4 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
	color: #fff
}

/* ============ MARQUEE ============ */
.menu-marquee {
    position: relative;
    padding: 50px 0;
    background: url('../images/cta-bg.jpg') center center/cover;
    background-attachment: fixed;
}

.menu-marquee .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .92);
    border-radius: inherit;
}

.menu-marquee .container {
    position: relative;
    z-index: 2;
}

.marquee {
    position: relative;
    z-index: 2;
    overflow: hidden
}

.marquee:before,
.marquee:after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.menu-marquee .section-heading h2 {
    margin-bottom: 10px;
	color: var(--green)
}

.menu-marquee .section-heading p {
    color: #000;
    font-size: 16px;
    line-height: 30px
}

.section-title {
    position: relative;
    z-index: 10;
}

.marquee:before {
    left: 0;
    background: linear-gradient(to right, #101010, transparent);
}

.marquee:after {
    right: 0;
    background: linear-gradient(to left, #101010, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.marquee:hover .marquee-track {
    animation-play-state: paused;
}

.food {
    flex: 0 0 auto;
    width: 220px;
    margin-right: 18px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #c79b46;
    transition: .4s;
}

.food img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    transition: .6s;
    display: block;
}

.food:hover img {
    transform: scale(1.12);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.food {
    width: 200px;
}

/* ============ SERVICES ============ */
.services {
    padding: 100px 0 120px;
    background: var(--off);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
}

.service-card {
    text-align: center;
}

.service-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-icon {
    position: absolute;
    left: 50%;
    bottom: -26px;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green);
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
}

.service-card h4 {
    margin-top: 36px;
    font-size: 15px;
    font-weight: 600;
    color: var(--green);
}

/* ============ FEATURED MENU ============ */
.menu {
    background: var(--black);
    padding: 50px 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}

.menu-item {
    text-align: center;
    border: 1px solid rgba(203, 162, 79, .25);
    border-radius: 10px
}

.menu-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.menu-item h5 {
    margin-top: 16px;
    color: #f2ede0;
    font-weight: 500;
    font-size: 14.5px;
    letter-spacing: .3px;
}

/* ============ WHY CHOOSE US ============ */
.why-us {
    padding: 50px 0;
    background: #fff;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.why-box {
    background: var(--green);
    border: 1px solid var(--gold);
    border-radius: 10px;
    padding: 35px 20px;
    text-align: center;
    transition: .3s;
}

.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .06);
    border-color: var(--gold);
}

.why-box i {
    font-size: 30px;
    color: var(--cream);
    margin-bottom: 16px;
}

.why-box img {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto 16px;
    object-fit: contain;
}

.halaal-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border: 1.5px solid var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.halaal-icon i {
    margin: 0;
    font-size: 18px;
}

.why-box h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 14px;
    line-height: 22px;
    color: #fff;
}

/* ============ CTA BANNER ============ */
.cta {
    position: relative;
    padding: 50px 0;
    background: url('../images/cta-bg.jpg') center center/cover;
    background-attachment: fixed;

    margin: 0 auto;
}

.cta .overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 15, 8, .72);
    border-radius: inherit;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 16px;
}

.gold-text {
    color: var(--gold);
}

.cta-content p {
    font-size: 17px;
    color: #e4e4e4;
    margin-bottom: 34px;
}

.cta-content .btn {
    margin: auto;
}

/* ==========================================
   ABOUT HERO
========================================== */
.about-hero {
    position: relative;
    height: 50vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url("../images/hero-3.jpg") center center/cover no-repeat;
}
.about-hero1 {
    position: relative;
    height: 50vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url("../images/1.jpg") center center/cover no-repeat;
}
.about-hero2 {
    position: relative;
    height: 50vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url("../images/2.jpg") center center/cover no-repeat;
}
.about-hero3 {
    position: relative;
    height: 50vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url("../images/3.jpg") center center/cover no-repeat;
}
.about-hero4 {
    position: relative;
    height: 50vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url("../images/hero.jpg") center center/cover no-repeat;
}
.about-hero5 {
    position: relative;
    height: 50vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url("../images/5.jpg") center center/cover no-repeat;
}
.about-hero6 {
    position: relative;
    height: 50vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: url("../images/hero-3.jpg") center center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .82) 25%, rgba(0, 0, 0, .5) 58%, rgba(0, 0, 0, .1) 82%, rgba(0, 0, 0, 0) 100%);
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    /* Same alignment as Home page */
    padding-left: 190px;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1px;
}

.about-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 66px;
    line-height: 0.95;
    font-weight: 500;
    color: #fff;
    margin: 10px 0;
}

.about-hero h1 span {
    color: var(--gold);
}

.hero-divider {
    width: 95px;
    margin-bottom: 28px;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 520px;
    color: #fff;
}

.about-hero1::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    /* Same alignment as Home page */
    padding-left: 190px;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1px;
}

.about-hero1 h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 66px;
    line-height: 0.95;
    font-weight: 500;
    color: #fff;
    margin: 10px 0;
}

.about-hero1 h1 span {
    color: var(--gold);
}

.hero-divider {
    width: 95px;
    margin-bottom: 28px;
}

.about-hero1 p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 520px;
    color: #fff;
}
.about-hero2::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    /* Same alignment as Home page */
    padding-left: 190px;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1px;
}

.about-hero2 h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 66px;
    line-height: 0.95;
    font-weight: 500;
    color: #fff;
    margin: 10px 0;
}

.about-hero2 h1 span {
    color: var(--gold);
}

.hero-divider {
    width: 95px;
    margin-bottom: 28px;
}

.about-hero2 p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 520px;
    color: #fff;
}
.about-hero3::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    /* Same alignment as Home page */
    padding-left: 190px;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1px;
}

.about-hero3 h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 66px;
    line-height: 0.95;
    font-weight: 500;
    color: #fff;
    margin: 10px 0;
}

.about-hero3 h1 span {
    color: var(--gold);
}

.hero-divider {
    width: 95px;
    margin-bottom: 28px;
}

.about-hero3 p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 520px;
    color: #fff;
}
.about-hero4::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    /* Same alignment as Home page */
    padding-left: 190px;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1px;
}

.about-hero4 h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 66px;
    line-height: 0.95;
    font-weight: 500;
    color: #fff;
    margin: 10px 0;
}

.about-hero4 h1 span {
    color: var(--gold);
}

.hero-divider {
    width: 95px;
    margin-bottom: 28px;
}

.about-hero4 p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 520px;
    color: #fff;
}
.about-hero5::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    /* Same alignment as Home page */
    padding-left: 190px;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1px;
}

.about-hero5 h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 66px;
    line-height: 0.95;
    font-weight: 500;
    color: #fff;
    margin: 10px 0;
}

.about-hero5 h1 span {
    color: var(--gold);
}

.hero-divider {
    width: 95px;
    margin-bottom: 28px;
}

.about-hero5 p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 520px;
    color: #fff;
}
.about-hero6::before {
    content: "";
    position: absolute;
    inset: 0;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    /* Same alignment as Home page */
    padding-left: 190px;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1px;
}

.about-hero6 h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 66px;
    line-height: 0.95;
    font-weight: 500;
    color: #fff;
    margin: 10px 0;
}

.about-hero6 h1 span {
    color: var(--gold);
}

.hero-divider {
    width: 95px;
    margin-bottom: 28px;
}

.about-hero6 p {
    font-size: 20px;
    line-height: 1.9;
    max-width: 520px;
    color: #fff;
}



/*====================================
 LEGACY
====================================*/

.legacy{

    padding:90px 0;

    background:#faf7f1;

}
.legacy-grid{

    display:grid;

    grid-template-columns:500px 1fr;

    gap:80px;

    align-items:center;

}
.legacy-image{
    position: relative;
    overflow: visible;
    border-radius: 10px;
}

.years-box{

    position:absolute;

    right:-35px;

    bottom:35px;

    width:170px;

    background: var(--green);

    border:2px solid var(--gold);

    border-radius:10px;

    text-align:center;

    padding:25px 20px;

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}
.years-box img{

    width:34px;

    margin:0 auto 15px;

}
.years-box span{

    display:block;

    font-family:"Cormorant Garamond",serif;

    font-size:70px;

    color:var(--gold);

    line-height:1;

    margin-bottom:12px;

}
.years-box p{

    color:#fff;

    font-size:18px;

    line-height:1.6;

}
.legacy-content h2{

    font-family:"Cormorant Garamond",serif;

    font-size:50px;

    line-height:1;

    font-weight:900;

    color:var(--green-dark);

    margin-bottom:18px;

}
.gold-divider{

    width:90px;

    margin-bottom:28px;

}
.legacy-content p{

    font-size:16px;

    line-height:1.55;

    color:#072E18;

    margin-bottom:20px;
	font-weight: 600

}
.legacy-image{

    overflow:visible;

    border-radius:10px;

}

.legacy-image img{

    transition:.6s;

}

.legacy-image:hover img{

    transform:scale(1.05);

}
/*====================================
 JOURNEY
====================================*/

.journey{

    padding:50px 0;

    background:#fff;

}

.journey h2{
	color: #072E18
}
.journey-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    margin-top:70px;

}
.journey-card{

    position:relative;

    background:#faf7f1;

    border:1px solid rgba(199,155,70,.35);

    border-radius:12px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

}
.journey-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}
.journey-icon{

    width:72px;

    height:72px;

    margin:0 auto;

    border-radius:50%;

    background:var(--green);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:28px;

    position:relative;

    z-index:2;
	border:3px solid rgba(199,155,70,.35);
    box-shadow:0 0 0 8px rgba(199,155,70,.08);

}
.journey-line{

    width:2px;

    height:55px;

    background:var(--gold);

    margin:0 auto 25px;

}
.journey-year{

    display:block;

    color:var(--gold);

    font-size:28px;

    font-weight:700;

    margin-bottom:15px;

    font-family:"Cormorant Garamond",serif;

}
.journey-card h3{

    font-size:24px;

    color:var(--green);

    margin-bottom:18px;

    font-family:"Cormorant Garamond",serif;

}
.journey-card p{

    color:#666;

    line-height:1.9;

    font-size:16px;

}

/*====================================
 JOURNEY STORY (About page)
====================================*/

.journey .section-heading {
    margin-bottom: 45px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr;
    gap: 45px;
    align-items: start;
	padding-bottom: 50px
}

.story-col p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #444;
    font-weight: 500;
    margin-bottom: 22px;
}

.story-col p:last-child {
    margin-bottom: 0;
}

.story-quote {
    position: relative;
    background: #faf3e6;
    border-left: 3px solid var(--gold);
    border-radius: 6px;
    padding: 26px 26px 26px 50px;
    margin-bottom: 22px;
}

.story-quote i {
    position: absolute;
    left: 18px;
    top: 22px;
    color: var(--gold);
    font-size: 18px;
    opacity: .85;
}

.story-quote p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.8;
    color: var(--green-dark);
    margin-bottom: 0;
    font-weight: 600;
}

.story-block {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}

.story-block:last-child {
    margin-bottom: 0;
}

.story-icon {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--green-dark);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 17px;
}

.story-icon img{
    width: 40px;
	 height: 40px;
}

.story-block p {
    margin-bottom: 0;
}

.milestones-bar {
    margin-top: 65px;
    background: var(--green-dark);
    border-radius: 14px;
    padding: 45px 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.milestone {
    text-align: center;
    position: relative;
}

.milestone:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: rgba(203, 162, 79, .4);
}

.milestone i {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 18px;
}

.milestone p {
    font-size: 13.5px;
    line-height: 1.7;
    color: #d9ddd9;
    font-weight: 500;
}

/*====================================
 TEAM + MOTTO QUOTE (About page)
====================================*/

.legacy-quote {
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.legacy-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 45px;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
	margin-bottom: -40px
}

.team-photo,
.spices-photo {
    overflow: hidden;
    height: 100%;
}

.team-photo img,
.spices-photo img {
    height: 340px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.spices-photo img {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 28%);
    mask-image: linear-gradient(to right, transparent 0%, #000 28%);
}

.quote-content {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
    padding: 0 10px;
}

.quote-intro {
    font-size: 15.5px;
    line-height: 1.7;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}

.motto-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 24px;
    line-height: 1.5;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.motto-quote i {
    color: #fff;
    font-size: 16px;
    vertical-align: middle;
    margin: 0 4px;
}

.signature {
    font-family: 'Great Vibes', cursive;
    font-size: 34px;
    color:#fff;
    font-weight: 400;
}

/*====================================
 CREDENTIALS BAR (About page)
====================================*/

.credentials-bar {
    background: var(--green-dark);
    padding: 44px 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 18px;
}

.credential-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
}

.credential h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.credential p {
    font-size: 14px;
    color: #cfd6cf;
    font-weight: 500;
    margin-top: 2px;
}

/* ============ FOOTER ============ */
.footer {
    background: url(../images/bg.png) #006D18;
    color: #cfd6cf;
    padding: 50px 0 0;
	background-position: center;
	background-attachment: fixed

}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr 2.3fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 1);
}

.footer-grid>* {
    position: relative;
}

/* Add dividers after columns 2, 3 and 4 only */
.footer-grid> :nth-child(1)::after,
.footer-grid> :nth-child(2)::after,
.footer-grid> :nth-child(3)::after,
.footer-grid> :nth-child(4)::after {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    right: -20px;
    /* Half the 40px gap */
    width: 1px;
    background: rgba(203, 162, 79, 0.25);
}

/* Contact Us is wider, so move its divider further right */
.footer-grid> :nth-child(1)::after {
    right: 2px;
    /* Adjust to -45px or -50px if needed */
}

/* Contact Us is wider, so move its divider further right */
.footer-grid> :nth-child(4)::after {
    right: 35px;
    /* Adjust to -45px or -50px if needed */
}

/* Contact Us is wider, so move its divider further right */
.footer-grid> :nth-child(3)::after {
    right: 10px;
    /* Adjust to -45px or -50px if needed */
}

.footer-brand img {
    width: 180px;
    margin-bottom: 1px;
    padding-top: 22%;
	filter:brightness(0) invert(1);
}

.footer-col h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 22px;
    letter-spacing: .5px;
}

.footer-col ul li {
    margin-bottom: 13px;
}

.footer-col ul li a {
    color: #cfd6cf;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col ul li a i {
    font-size: 13px;
    color: var(--gold);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.contact-list li i {
    color: var(--gold);
    margin-top: 4px;
    width: 14px;
}

.contact-list li span {
    display: block;
    font-size: 13px;
    color: #ddd;
}

.follow-col .social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border: 1px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;font-size: 20px
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.halaal-badge {
    align-items: center;
}

.halaal-badge img {
    width: 60px;
	filter:brightness(0) invert(1);
}

.halaal-badge span {
    font-size: 9px;
    letter-spacing: 1px;
    line-height: 1.3;
    font-weight: 600;
}

.footer-bottom {
    padding: 16px 0;
    text-align: center;
    font-size: 13px;
    color: #9aa79c;
}
.footer-bottom p  {
    color: #9aa79c;
	font-size: 13px;
	font-weight: 400
}

.footer-bottom p a {
    color: #9aa79c;
}

/*====================================
 OUR MENUS (Menus page)
====================================*/

.our-menus {
    padding: 100px 0;
    background: var(--off);
}

.section-heading h2.ornate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    color: var(--green-dark);
    font-weight: 700;
}

.divider-line {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 1px;
    background: var(--gold);
}

.divider-line::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    transform: translate(-50%, -50%);
}

.section-sub {
    text-align: center;
    font-size: 15.5px;
    color: #555;
    font-weight: 500;
    margin-top: 14px;
}

.menu-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 55px auto 0;
}

.menu-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .04);
}

.menu-card-image {
    position: relative;
}

.menu-card-image-inner {
    aspect-ratio: 16 / 11;
    overflow: hidden;
}

.menu-card-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card-icon {
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green-dark);
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .15);
    z-index: 2;
}

.menu-card-body {
    padding: 46px 30px 34px;
    text-align: center;
}

.menu-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.menu-card-body .mini-divider {
    width: 44px;
    margin: 0 auto 18px;
    opacity: .85;
}

.menu-card-body p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
    margin-bottom: 26px;
}

/*====================================
 EXCELLENCE IN EVERY DISH (Menus page)
====================================*/

.excellence {
    position: relative;
    padding: 65px 0;
    overflow: hidden;
    background: #111;
}

.excellence-bg {
    position: absolute;
    inset: 0;
    display: flex;
}

.excellence-bg img {
    width: 50%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.excellence-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.excellence-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, rgba(6, 15, 8, .92) 32%, rgba(6, 15, 8, .92) 68%, transparent 100%);
}

.excellence-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
}

.excellence-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.excellence-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #eee;
    font-weight: 500;
}

.excellence-content .mini-divider {
    width: 44px;
    margin: 20px auto 0;
    opacity: .9;
}

.excellence-content .mini-divider.light {
    filter: brightness(1.3);
}
/*====================================
 GALLERY (Gallery page)
====================================*/

.gallery-section {
    padding: 90px 0 100px;
    background: var(--off);
}

.gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
	background: #fff
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: none;
    color: var(--green-dark);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 14px 42px;
    cursor: pointer;
    transition: .3s;
}

.filter-btn i {
    color: var(--gold);
    font-size: 15px;
    transition: .3s;
}

.filter-btn:hover {
    color: var(--green);
}

.filter-btn.active {
    background: var(--green-dark);
    color: #fff;
}

.filter-btn.active i {
    color: var(--gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .07);
    transition: opacity .35s ease, transform .35s ease;
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 15, 8, 0) 40%, rgba(6, 15, 8, .75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .35s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 22px;
    width: 54px;
    height: 54px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(.7);
    transition: transform .35s ease;
    background: rgba(6, 15, 8, .4);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/*====================================
 LIGHTBOX (Gallery page)
====================================*/

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s ease, visibility 0s linear .35s;
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
    transition: opacity .35s ease, visibility 0s linear 0s;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 15, 8, .93);
    backdrop-filter: blur(6px);
}

.lightbox-stage {
    position: relative;
    z-index: 2;
    max-width: 84vw;
    max-height: 82vh;
    transform: scale(.85);
    opacity: 0;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), opacity .4s ease;
}

.lightbox.active .lightbox-stage {
    transform: scale(1);
    opacity: 1;
}

.lightbox-stage img {
    display: block;
    max-width: 84vw;
    max-height: 82vh;
    width: auto;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .5);
}

.lightbox-close {
    position: absolute;
    top: 28px;
    right: 34px;
    z-index: 3;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.lightbox-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--green-dark);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #eee;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 600;
}
/*====================================
 CONTACT SECTION (Contact page)
====================================*/

.contact-section {
    padding: 90px 0 100px;
    background: var(--off);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 70px;
    align-items: start;
}

.contact-form-col h2,
.contact-details-col h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: var(--green-dark);
    font-weight: 700;
}

.contact-form-col .mini-divider,
.contact-details-col .mini-divider {
    width: 40px;
    margin: 14px 0 16px;
    opacity: .9;
}

.contact-form-col > p,
.contact-details-col > p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    font-weight: 500;
    margin-bottom: 34px;
    max-width: 420px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
}

.form-group label .req {
    color: #98121E;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 15px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #222;
    transition: .3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(203, 162, 79, .18);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23006D18'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.input-icon {
    position: relative;
}

.input-icon input {
    padding-right: 42px;
}

.input-icon i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 15px;
    pointer-events: none;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 8px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.contact-detail-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 10px;
    padding: 20px 22px;
    transition: .3s;
}

.contact-detail-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--green-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-detail-card h4 {

    font-size: 22px;
    color: var(--green-dark);
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-detail-card p {
    font-size: 14.5px;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

/*====================================
 EVENT BANNER (Contact page)
====================================*/

.event-banner {
    position: relative;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
}

.event-banner-text {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 46px clamp(20px, 5%, 60px);
    flex: 1 1 520px;
}

.event-banner-content .hero-tag {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
}

.event-banner-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: #fff;
    font-weight: 700;
    margin: 10px 0 12px;
}

.event-banner-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #d8ded9;
    font-weight: 500;
    max-width: 480px;
}

.event-banner-btn {
    white-space: nowrap;
    flex-shrink: 0;
}

.event-banner-image {
    position: relative;
    align-self: stretch;
    flex: 0 1 400px;
    min-height: 220px;
}

.event-banner-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--green-dark) 0%, rgba(11, 42, 20, 0) 18%);
    z-index: 1;
}

.event-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*====================================
 MAP (Contact page)
====================================*/

.map-section {
    width: 100%;
    height: 420px;
    line-height: 0;
	margin-bottom: -70px
}

.map-section iframe {
    filter: grayscale(.15);
}
/*====================================
 MEDIA ROOM PAGE
====================================*/

/* ---- Awards & Recognition ---- */

.media-awards-section {
    padding: 90px 0 50px;
    background: var(--off);
}

.award-banner {
    margin-top: 50px;
    background: var(--green-dark);
    border-radius: 14px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.award-banner-content {
    padding: 54px clamp(28px, 5vw, 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.award-banner-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.award-banner-icon {
    color: var(--gold);
    font-size: 54px;
    flex-shrink: 0;
    margin-top: 2px;
}

.award-banner-top img{
  width: 90px  ;
}

.award-banner-titles h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 4px;
}

.award-banner-sub {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.45;
}

.award-banner-content .mini-divider {
    width: 40px;
    margin: 18px 0;
    opacity: .85;
}

.award-banner-text {
    color: #cfd6cf;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    max-width: 460px;
}

.award-banner-image {
    position: relative;
    min-height: 320px;
}

.award-banner-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--green-dark) 0%, rgba(11, 42, 20, 0) 18%);
    z-index: 1;
}

.award-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- Certifications ---- */

.certifications-section {
    padding: 0 0 100px;
    background: var(--off);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.cert-card {
    text-align: center;
    cursor: pointer;
}

.cert-card-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
    transition: .3s;
    margin-bottom: 16px;
}

.cert-card-image img {
    height: 100%;
    display: block;
    transition: transform .5s ease;
}

.cert-card:hover .cert-card-image {
    border-color: var(--gold);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .1);
    transform: translateY(-4px);
}

.cert-card:hover .cert-card-image img {
    transform: scale(1.05);
}

.cert-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 15, 8, .0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease, background .3s ease;
}

.cert-card:hover .cert-card-overlay {
    opacity: 1;
    background: rgba(6, 15, 8, .35);
}

.cert-card-overlay i {
    color: #fff;
    font-size: 18px;
    width: 44px;
    height: 44px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(6, 15, 8, .4);
}

.cert-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: var(--green-dark);
    font-weight: 700;
}

.cert-card p {
    font-size: 13.5px;
    color: #666;
    font-weight: 500;
    margin-top: 2px;
}

/* ---- Accreditations & Memberships ---- */

.accreditations-section {
    padding: 0 0 90px;
    background: var(--off);
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.accred-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 10px;
    padding: 30px 18px;
    text-align: center;
    transition: .3s;
}

.accred-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .06);
    transform: translateY(-4px);
}

.accred-icon {
    font-size: 30px;
    margin-bottom: 16px;
    display: block;
}

.accred-icon.icca {
    color: var(--green);
}

.accred-icon.sacia {
    color: var(--gold);
}

.accred-icon.fedhasa {
    color: #c9862f;
}

.accred-icon.sachefs {
    color: #16305e;
}

.accred-icon.ethekwini {
    color: #1c6bb0;
}

.accred-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.accred-card p {
    font-size: 12.5px;
    line-height: 1.4;
    color: #666;
    font-weight: 500;
}

/* ---- Our Promise of Quality & Trust banner ---- */

.promise-banner {
    position: relative;
    overflow: hidden;
    padding: 55px 0;
}

.promise-banner-bg {
    position: absolute;
    inset: 0;
}

.promise-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promise-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 15, 8, .92) 0%, rgba(6, 15, 8, .75) 55%, rgba(6, 15, 8, .55) 100%);
}

.promise-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.promise-banner-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
}

.promise-banner-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #eee;
    font-weight: 500;
    max-width: 580px;
}

.promise-banner-btn {
    flex-shrink: 0;
}