.ashranda-about-story {
    background: #0E0D0A;
    padding: 90px 0;
    overflow: hidden;
}

.about-story-image {
    width: 100%;
    height: 580px;
    border-radius: 6px;
    overflow: hidden;
}

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

.about-story-content {
    text-align: center;
    max-width: 430px;
    margin: 0 auto;
}

.about-story-content .section-subtitle {
    display: block;
    color: #c99a3d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.about-story-content h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 24px;
}

.about-story-content p {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 500;
    margin-bottom: 26px;
}

.discover-link {
    position: relative;
    display: inline-block;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    text-decoration: none;
    padding-bottom: 7px;
    transition: 0.3s ease;
}

.discover-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 85px;
    height: 2px;
    background: #c99a3d;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.discover-link:hover {
    color: #c99a3d !important;
}

.discover-link:hover::after {
    width: 105px;
}

@media (max-width: 991px) {
    .ashranda-about-story {
        padding: 70px 0;
    }

    .about-story-content h2 {
        font-size: 44px;
    }

    .about-story-image {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .ashranda-about-story {
        padding: 55px 0;
    }

    .about-story-content {
        max-width: 100%;
    }

    .about-story-content h2 {
        font-size: 38px;
    }

    .about-story-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-story-image {
        height: 500px;
    }
}

@media (max-width: 575px) {
    .ashranda-about-story {
        padding: 45px 0;
    }

    .about-story-content .section-subtitle {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .about-story-content h2 {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .about-story-content p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 22px;
    }

    .about-story-image {
        height: 500px;
    }
}
/* =============== Restaurant Features =============== */

.restaurant-features-section {
    position: relative;
    padding: 75px 0 95px;
    background-image: url('/AshrandaDining/img/backgroundfeature.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.restaurant-features-section .features-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    z-index: 1;
}

.restaurant-features-section .container {
    position: relative;
    z-index: 2;
}

.restaurant-features-section .section-title {
    text-align: center;
    margin-bottom: 38px;
}

.restaurant-features-section .section-title h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

.restaurant-feature-card {
    position: relative;
    height: 410px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(201, 154, 61, 0.75);
}

.restaurant-feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.restaurant-feature-card:hover img {
    transform: scale(1.06);
}

.restaurant-feature-card .card-dark-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.feature-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 55px;
    z-index: 2;
    text-align: center;
    padding: 0 18px;
}

.feature-card-content h3 {
    color: #ffffff;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.reserve-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 46px;
    padding: 0 24px;
    background: #d9a64a;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: 0.3s ease;
}

.reserve-btn:hover {
    background: #c99a3d;
    color: #ffffff !important;
}

/* Responsive */
@media (max-width: 991px) {
    .restaurant-features-section {
        padding: 65px 0 75px;
    }

    .restaurant-features-section .section-title h2 {
        font-size: 42px;
    }

    .restaurant-feature-card {
        height: 390px;
    }
}

@media (max-width: 575px) {
    .restaurant-features-section {
        padding: 55px 0 65px;
    }

    .restaurant-features-section .section-title h2 {
        font-size: 34px;
    }

    .restaurant-feature-card {
        height: 360px;
    }

    .feature-card-content {
        bottom: 45px;
    }

    .feature-card-content h3 {
        font-size: 18px;
    }
}
/* =============== Customer Feedback =============== */

.ashranda-feedback-section {
    background: #0E0D0A;
    padding: 95px 0;
    overflow: hidden;
}

.feedback-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 26px;
}

.feedback-avatars {
    display: flex;
    flex-direction: column;
    gap: 18px;
    flex-shrink: 0;
}

.avatar-item {
    width: 70px;
    height: 70px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
}

.avatar-item.active {
    border-color: #c99a3d;
}

.avatar-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feedback-card {
    position: relative;
    width: 100%;
    min-height: 315px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 7px;
    padding: 48px 42px;
    background: transparent;
}

.feedback-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.feedback-card h4 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feedback-card span {
    position: relative;
    display: inline-block;
    color: #bfbfbf;
    font-size: 15px;
    font-weight: 600;
    padding-right: 72px;
}

.feedback-card span::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 62px;
    height: 1px;
    background: #c99a3d;
    transform: translateY(-50%);
}

.feedback-stars {
    color: #c99a3d;
    font-size: 16px;
    white-space: nowrap;
    padding-top: 10px;
}

.feedback-card p {
    color: #d7d7d7;
    font-size: 19px;
    line-height: 1.75;
    font-weight: 400;
    margin: 0;
    max-width: 620px;
}

.quote-icon {
    position: absolute;
    right: -36px;
    bottom: 36px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #070806;
    border: 2px solid rgba(255, 255, 255, 0.16);
    color: #c99a3d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.feedback-content {
    max-width: 420px;
}

.feedback-content h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 22px;
}

.feedback-content p {
    color: #d1d1d1;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    max-width: 360px;
}

/* Responsive */
@media (max-width: 991px) {
    .ashranda-feedback-section {
        padding: 75px 0;
    }

    .feedback-content {
        text-align: center;
        margin: 0 auto;
    }

    .feedback-content p {
        margin: 0 auto;
    }

    .feedback-card {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .feedback-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .feedback-avatars {
        flex-direction: row;
        justify-content: center;
        order: 2;
    }

    .feedback-card {
        order: 1;
        padding: 36px 24px;
    }

    .quote-icon {
        right: 20px;
        bottom: -34px;
    }

    .feedback-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .feedback-card-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .feedback-stars {
        padding-top: 0;
    }
}

@media (max-width: 575px) {
    .ashranda-feedback-section {
        padding: 60px 0;
    }

    .feedback-card {
        padding: 32px 20px 44px;
    }

    .avatar-item {
        width: 58px;
        height: 58px;
    }

    .feedback-content h2 {
        font-size: 32px;
    }

    .feedback-content p {
        font-size: 14px;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        bottom: -30px;
    }
}

/* =============== Restho Gallery =============== */

.ashranda-gallery-section {
    background: #000000;
    padding: 80px 0 65px;
    overflow: hidden;
    position: relative;
}

.gallery-title {
    margin-bottom: 42px;
}

.gallery-title h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
}

.ashranda-gallery-slider {
    padding-bottom: 42px;
    overflow: visible;
}

.ashranda-gallery-slider .swiper-slide {
    width: 320px;
    transition: transform 0.35s ease, opacity 0.35s ease;
    opacity: 0.7;
}

.ashranda-gallery-slider .swiper-slide-active,
.ashranda-gallery-slider .swiper-slide-next,
.ashranda-gallery-slider .swiper-slide-prev {
    opacity: 1;
}

.gallery-card {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    background: #111;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

/* Pagination */
.ashranda-gallery-slider .swiper-pagination {
    position: relative;
    margin-top: 22px;
    bottom: 0 !important;
}

.ashranda-gallery-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #ffffff;
    opacity: 0.45;
    margin: 0 5px !important;
}

.ashranda-gallery-slider .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}

/* optional subtle line under section like image */
.ashranda-gallery-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.10);
}

/* Responsive */
@media (max-width: 1199px) {
    .gallery-title h2 {
        font-size: 46px;
    }

    .ashranda-gallery-slider .swiper-slide {
        width: 290px;
    }

    .gallery-card {
        height: 205px;
    }
}

@media (max-width: 991px) {
    .ashranda-gallery-section {
        padding: 65px 0 55px;
    }

    .gallery-title {
        margin-bottom: 34px;
    }

    .gallery-title h2 {
        font-size: 40px;
    }

    .ashranda-gallery-slider .swiper-slide {
        width: 260px;
    }

    .gallery-card {
        height: 190px;
    }
}

@media (max-width: 767px) {
    .ashranda-gallery-section {
        padding: 55px 0 50px;
    }

    .gallery-title h2 {
        font-size: 34px;
    }

    .ashranda-gallery-slider .swiper-slide {
        width: 230px;
    }

    .gallery-card {
        height: 175px;
        border-radius: 6px;
    }
}

@media (max-width: 575px) {
    .ashranda-gallery-section {
        padding: 45px 0 42px;
    }

    .gallery-title {
        margin-bottom: 28px;
    }

    .gallery-title h2 {
        font-size: 30px;
    }

    .ashranda-gallery-slider .swiper-slide {
        width: 200px;
    }

    .gallery-card {
        height: 155px;
    }

    .ashranda-gallery-slider {
        padding-bottom: 36px;
    }
}
/* =============== Recent News =============== */

.ashranda-news-section {
    background: #000000;
    padding: 62px 0 88px;
    overflow: hidden;
}

.ashranda-news-section .container {
    max-width: 1188px;
}

.ashranda-news-title {
    margin-bottom: 30px;
}

.ashranda-news-title h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 500;
    margin: 0;
}

.ashranda-news-row {
    --bs-gutter-x: 18px;
    --bs-gutter-y: 36px;
}

.ashranda-news-card {
    width: 100%;
    background: transparent;
}

.ashranda-news-card .news-image {
    position: relative;
    width: 100%;
    height: 286px;
    overflow: hidden;
    border-radius: 7px;
    background: #111111;
}

.ashranda-news-card .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.ashranda-news-card:hover .news-image img {
    transform: scale(1.06);
}

.news-date {
    position: absolute;
    top: 18px;
    left: 12px;
    background: #d4a24b;
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
    font-weight: 400;
    padding: 8px 10px;
    border-radius: 2px;
    z-index: 2;
}

.news-content {
    padding-top: 16px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
}

.news-meta i {
    color: #c99a3d;
    font-size: 13px;
}

.news-content h3 {
    margin: 0;
}

.news-content h3 a {
    color: #ffffff !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #d4a24b !important;
}

/* Responsive */

@media (max-width: 1199px) {
    .ashranda-news-section .container {
        max-width: 960px;
    }

    .ashranda-news-card .news-image {
        height: 230px;
    }

    .news-content h3 a {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .ashranda-news-section {
        padding: 58px 0 72px;
    }

    .ashranda-news-title h2 {
        font-size: 42px;
    }

    .ashranda-news-card .news-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .ashranda-news-title h2 {
        font-size: 36px;
    }

    .ashranda-news-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .ashranda-news-card .news-image {
        height: 250px;
    }
}

@media (max-width: 575px) {
    .ashranda-news-section {
        padding: 48px 0 62px;
    }

    .ashranda-news-title {
        margin-bottom: 26px;
    }

    .ashranda-news-title h2 {
        font-size: 31px;
    }

    .ashranda-news-card {
        max-width: 350px;
    }

    .ashranda-news-card .news-image {
        height: 215px;
    }

    .news-date {
        top: 12px;
        left: 10px;
        font-size: 12px;
        padding: 7px 9px;
    }

    .news-meta {
        gap: 16px;
    }

    .news-meta span {
        font-size: 11px;
    }

    .news-content h3 a {
        font-size: 18px;
    }
}
/* =============== Private Events =============== */

.ashranda-private-events-section {
    background: #0E0D0A;
    padding: 95px 0 100px;
    overflow: hidden;
}

.private-events-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
}

.private-events-form-box {
    position: relative;
    min-height: 520px;
    background-image: url('/AshrandaDining/img/backgroundburger.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 14px 0 0 14px;
    overflow: hidden;
}

.private-events-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.74);
    z-index: 1;
}

.private-events-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 58px 42px 45px;
    text-align: center;
    color: #ffffff;
}

.private-events-icon {
    color: #d4a24b;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 18px;
}

.private-events-content h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.35;
    font-style: italic;
    font-weight: 400;
    margin: 0 0 18px;
}

.private-events-content p {
    color: #eeeeee;
    max-width: 470px;
    margin: 0 auto 34px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}

.private-events-form {
    width: 100%;
}

.private-events-form .form-row {
    display: grid;
    gap: 22px;
    margin-bottom: 24px;
}

.private-events-form .form-row.three-cols {
    grid-template-columns: repeat(3, 1fr);
}

.private-events-form .form-group {
    position: relative;
}

.private-events-form input,
.private-events-form select,
.private-events-form textarea {
    width: 100%;
    height: 42px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    outline: none;
    padding: 0 4px;
}

.private-events-form textarea {
    height: 58px;
    resize: none;
    padding-top: 8px;
}

.private-events-form input::placeholder,
.private-events-form textarea::placeholder {
    color: #ffffff;
    opacity: 1;
}

.private-events-form select {
    appearance: auto;
    cursor: pointer;
}

.private-events-form select option {
    color: #000000;
}

.private-events-form input[type="date"],
.private-events-form input[type="time"] {
    color-scheme: dark;
}

.form-button {
    padding-top: 6px;
}

.form-button button {
    min-width: 188px;
    height: 44px;
    border: 0;
    border-radius: 3px;
    background: #d4a24b !important;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-button button:hover {
    background: #c39138 !important;
}

.private-events-image {
    min-height: 520px;
    border-radius: 0 14px 14px 0;
    overflow: hidden;
    background: #000000;
}

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

/* Responsive */

@media (max-width: 1199px) {
    .private-events-wrapper {
        max-width: 960px;
    }

    .private-events-form-box,
    .private-events-image {
        min-height: 500px;
    }

    .private-events-content {
        padding: 50px 34px 40px;
    }
}

@media (max-width: 991px) {
    .ashranda-private-events-section {
        padding: 75px 0;
    }

    .private-events-wrapper {
        grid-template-columns: 1fr;
        max-width: 720px;
    }

    .private-events-form-box {
        border-radius: 14px 14px 0 0;
    }

    .private-events-image {
        min-height: 430px;
        border-radius: 0 0 14px 14px;
    }
}

@media (max-width: 767px) {
    .private-events-content {
        padding: 45px 26px 38px;
    }

    .private-events-content h2 {
        font-size: 22px;
    }

    .private-events-form .form-row.three-cols {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .private-events-form .form-row {
        margin-bottom: 18px;
    }

    .private-events-form-box {
        min-height: auto;
    }

    .private-events-image {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .ashranda-private-events-section {
        padding: 55px 0;
    }

    .private-events-wrapper {
        border-radius: 10px;
    }

    .private-events-form-box {
        border-radius: 10px 10px 0 0;
    }

    .private-events-image {
        min-height: 280px;
        border-radius: 0 0 10px 10px;
    }

    .private-events-content {
        padding: 38px 20px 34px;
    }

    .private-events-icon {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .private-events-content h2 {
        font-size: 20px;
    }

    .private-events-content p {
        font-size: 15px;
        margin-bottom: 26px;
    }

    .form-button button {
        width: 100%;
    }
}
.private-events-icon {
    margin-bottom: 18px;
    text-align: center;
}

.private-events-icon img {
    width: 48px;
    height: auto;
    display: inline-block;
}
/* =============== About Hero =============== */

    .ashranda-about-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.62) 0%,
        rgba(0, 0, 0, 0.48) 42%,
        rgba(0, 0, 0, 0.18) 100%
    );
    z-index: 1;
}

.ashranda-about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    padding-top: 65px;
}

.about-hero-content h1 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 600;
    margin: 0;
}

/* Responsive */

@media (max-width: 991px) {
    .ashranda-about-hero {
        min-height: 380px;
    }

    .about-hero-bg {
        object-position: center right;
    }

    .about-hero-content h1 {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .ashranda-about-hero {
        min-height: 360px;
    }

    .about-hero-content {
        padding-top: 45px;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 575px) {
    .ashranda-about-hero {
        min-height: 350px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }
}
 /* =============== Experienced Restaurant =============== */

    .ashranda-experienced-section {
        background: #000000;
        padding: 72px 0 78px;
        overflow: hidden;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .experienced-wrapper {
        
        margin: 0 auto;
    }

    .experienced-title {
        margin-bottom: 36px;
    }

    .experienced-title h2 {
        color: #ffffff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 42px;
        line-height: 1.15;
        font-weight: 600;
        margin: 0;
        letter-spacing: 0.2px;
    }

    .experienced-main {
        display: grid;
        grid-template-columns: 320px 1fr;
        gap: 36px;
        align-items: start;
    }

    .experienced-image {
        width: 100%;
        height: 310px;
        border-radius: 6px;
        overflow: hidden;
        background: #111111;
    }

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

    /* Content */

    .experienced-content {
        padding-top: 0;
    }

    .experienced-top {
        display: grid;
        grid-template-columns: 170px 1fr;
        gap: 24px;
        align-items: center;
        margin-bottom: 30px;
    }

    .mission-box {
        min-height: 98px;
        border: 1px solid rgba(255, 255, 255, 0.75);
        border-radius: 4px;
        padding: 22px 20px;
        display: grid;
        grid-template-columns: 28px 1fr;
        column-gap: 12px;
        align-items: center;
    }

    .mission-icon img {
        width: 26px;
        height: auto;
        display: block;
    }

    .mission-line {
        width: 58px;
        height: 1px;
        background: rgba(255, 255, 255, 0.65);
    }

    .mission-box h3 {
        grid-column: 1 / -1;
        color: #ffffff;
        font-family: Georgia, "Times New Roman", serif;
        font-size: 19px;
        line-height: 1.2;
        font-weight: 700;
        margin: 12px 0 0;
    }

    .mission-text p {
        color: #dcdcdc;
        font-size: 14px;
        line-height: 1.85;
        font-weight: 500;
        margin: 0;
    }

    /* Features */

    .experienced-features {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 46px;
        margin-bottom: 40px;
    }

    .experienced-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .experienced-features li {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #ffffff;
        font-size: 14px;
        line-height: 1.4;
        font-weight: 500;
        margin-bottom: 17px;
    }

    .experienced-features li:last-child {
        margin-bottom: 0;
    }

    .experienced-features i {
        color: #c99a3d;
        font-size: 14px;
    }

    /* Quote */

    .experienced-quote {
        border: 1px solid rgba(255, 255, 255, 0.78);
        border-radius: 6px;
        padding: 24px 40px;
        max-width: 730px;
    }

    .experienced-quote p {
        color: #ffffff;
        font-size: 18px;
        line-height: 1.45;
        font-weight: 400;
        margin: 0;
    }

    /* Responsive */

    @media (max-width: 1199px) {
        .experienced-wrapper {
            max-width: 960px;
        }

        .experienced-main {
            grid-template-columns: 300px 1fr;
            gap: 30px;
        }

        .experienced-image {
            height: 300px;
        }

        .experienced-title h2 {
            font-size: 40px;
        }

        .experienced-quote {
            padding: 22px 32px;
        }
    }

    @media (max-width: 991px) {
        .ashranda-experienced-section {
            padding: 62px 0 70px;
        }

        .experienced-title {
            text-align: center;
            margin-bottom: 32px;
        }

        .experienced-title h2 {
            font-size: 36px;
        }

        .experienced-main {
            grid-template-columns: 1fr;
            max-width: 720px;
            margin: 0 auto;
        }

        .experienced-image {
            height: 420px;
        }

        .experienced-top {
            grid-template-columns: 180px 1fr;
        }
    }

    @media (max-width: 767px) {
        .experienced-title h2 {
            font-size: 32px;
        }

        .experienced-image {
            height: 360px;
        }

        .experienced-top {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .mission-box {
            max-width: 230px;
            margin: 0 auto;
        }

        .mission-text {
            text-align: center;
        }

        .experienced-features {
            grid-template-columns: 1fr;
            gap: 16px;
            max-width: 330px;
            margin: 0 auto 34px;
        }

        .experienced-quote {
            text-align: center;
            padding: 22px 24px;
        }

        .experienced-quote p {
            font-size: 16px;
        }

        .experienced-quote br {
            display: none;
        }
    }

    @media (max-width: 575px) {
        .ashranda-experienced-section {
            padding: 52px 0 58px;
        }

        .experienced-title h2 {
            font-size: 28px;
            line-height: 1.25;
        }

        .experienced-image {
            height: 285px;
        }

        .mission-text p {
            font-size: 13px;
            line-height: 1.75;
        }

        .experienced-features li {
            font-size: 13px;
            margin-bottom: 14px;
        }

        .experienced-quote {
            padding: 20px 18px;
        }

        .experienced-quote p {
            font-size: 15px;
            line-height: 1.55;
        }
    }
    .ashranda-restaurant-hero {
    position: relative;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000000;
}

.restaurant-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
}

.restaurant-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.ashranda-restaurant-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.18) 45%,
        rgba(0, 0, 0, 0.40) 100%
    );
    z-index: 2;
}

.ashranda-restaurant-hero .container {
    position: relative;
    z-index: 3;
}

.restaurant-hero-content {
    text-align: center;
    padding-top: 80px;
}

.restaurant-hero-content h1 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    line-height: 1.45;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 13px;
    margin: 0;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

/* Responsive */

@media (max-width: 1199px) {
    .ashranda-restaurant-hero {
        min-height: 470px;
    }

    .restaurant-hero-content h1 {
        font-size: 46px;
        letter-spacing: 10px;
    }
}

@media (max-width: 991px) {
    .ashranda-restaurant-hero {
        min-height: 700px;
    }

    .restaurant-hero-content {
        padding-top: 70px;
    }

    .restaurant-hero-content h1 {
        font-size: 40px;
        letter-spacing: 8px;
        line-height: 1.45;
    }
}

@media (max-width: 767px) {
    .ashranda-restaurant-hero {
        min-height: 700px;
    }

    .restaurant-hero-content {
        padding-top: 55px;
    }

    .restaurant-hero-content h1 {
        font-size: 30px;
        letter-spacing: 6px;
        line-height: 1.5;
    }
}

@media (max-width: 575px) {
    .ashranda-restaurant-hero {
        min-height: 500px;
    }

    .restaurant-hero-bg {
        object-position: center center;
    }

    .restaurant-hero-content h1 {
        font-size: 23px;
        letter-spacing: 4px;
        line-height: 1.55;
    }
}

@media (max-width: 380px) {
    .restaurant-hero-content h1 {
        font-size: 20px;
        letter-spacing: 3px;
    }
}
/* =============== Restaurant Cards =============== */

.ashranda-restaurant-list-section {
    background: #000000;
    padding: 75px 0 90px;
    overflow: hidden;
}

.ashranda-restaurant-list-section .container {
    max-width: 1120px;
}

.restaurant-card-row {
    --bs-gutter-x: 34px;
    --bs-gutter-y: 36px;
}

.restaurant-menu-card {
    background: #111111;
    border-radius: 7px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    transition: 0.35s ease;
}

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

.restaurant-card-img {
    position: relative;
    width: 100%;
    height: 185px;
    overflow: hidden;
    background: #1a1a1a;
}

.restaurant-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.restaurant-menu-card:hover .restaurant-card-img img {
    transform: scale(1.06);
}

.status-badge {
    position: absolute;
    top: 12px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 20px;
    background: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    z-index: 2;
}

.status-badge i {
    font-size: 7px;
}

.status-badge.open {
    color: #13a84a;
}

.status-badge.closed {
    color: #d92424;
}

.rating-badge {
    position: absolute;
    right: 12px;
    bottom: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 9px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.72);
    color: #ffffff;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    z-index: 2;
}

.rating-badge i {
    color: #d9a64a;
    font-size: 10px;
}

.restaurant-card-content {
    padding: 18px 18px 18px;
}

.restaurant-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.restaurant-card-title h3 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0;
}

.type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.type-badge.seafood {
    background: #e7f0ff;
    color: #1766e8;
}

.type-badge.oriental {
    background: #fff1db;
    color: #d87900;
}

.type-badge.fast-food {
    background: #ffe4e4;
    color: #e02929;
}

.type-badge.italian {
    background: #ddffe9;
    color: #16964a;
}

.type-badge.cafe {
    background: #efe3ff;
    color: #7e35d8;
}

.restaurant-card-content p {
    color: #d6d6d6;
    font-size: 17px;
    line-height: 1.65;
    font-weight: 400;
    min-height: 40px;
    margin: 0 0 13px;
}

.restaurant-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.restaurant-card-content ul li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #d5d5d5;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 8px;
}

.restaurant-card-content ul li:last-child {
    margin-bottom: 0;
}

.restaurant-card-content ul li i {
    color: #ffffff;
    font-size: 13px;
    width: 12px;
}

.menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    background: #d9a64a;
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s ease;
}

.menu-btn:hover {
    background: #c99a3d;
    color: #ffffff !important;
}

/* Responsive */

@media (max-width: 1199px) {
    .ashranda-restaurant-list-section .container {
        max-width: 960px;
    }

    .restaurant-card-row {
        --bs-gutter-x: 24px;
    }

    .restaurant-card-title h3 {
        font-size: 20px;
    }
}

@media (max-width: 991px) {
    .ashranda-restaurant-list-section {
        padding: 65px 0 75px;
    }

    .restaurant-card-img {
        height: 205px;
    }
}

@media (max-width: 767px) {
    .ashranda-restaurant-list-section {
        padding: 55px 0 65px;
    }

    .restaurant-menu-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .restaurant-card-img {
        height: 220px;
    }

    .restaurant-card-title h3 {
        font-size: 21px;
    }
}

@media (max-width: 575px) {
    .restaurant-card-row {
        --bs-gutter-y: 28px;
    }

    .restaurant-menu-card {
        max-width: 350px;
    }

    .restaurant-card-img {
        height: 190px;
    }

    .restaurant-card-content {
        padding: 16px;
    }

    .restaurant-card-title h3 {
        font-size: 19px;
    }

    .restaurant-card-content p {
        font-size: 15px;
    }
}
    .restaurant-card-img {
    display: block;
    position: relative;
    width: 100%;
    height: 185px;
    overflow: hidden;
    background: #1a1a1a;
    text-decoration: none;
    color: inherit;
}

.restaurant-card-img:hover {
    color: inherit;
}

.restaurant-card-title h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.restaurant-card-title h3 a:hover {
    color: #d9a64a;
}

.restaurant-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
/* Fix Restaurant Card Size */

.ashranda-restaurant-list-section .container {
    max-width: 1260px;
}

.restaurant-card-row {
    --bs-gutter-x: 36px;
    --bs-gutter-y: 36px;
}

.restaurant-menu-card {
    width: 100%;
    min-height: 493px;
    background: #111111;
    border-radius: 7px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.restaurant-card-img {
    display: block;
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #1a1a1a;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.restaurant-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.restaurant-card-content {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.restaurant-card-content p {
    min-height: 48px;
}

.restaurant-card-content ul {
    margin-bottom: 22px;
}

.menu-btn {
    margin-top: auto;
}
 /* =============== Restaurant Details Hero =============== */

.ashranda-restaurant-details-hero {
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    padding: 160px 0 230px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.restaurant-details-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
object-position: center 45%; 
   z-index: 0;
}

.restaurant-details-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 1;
}

.ashranda-restaurant-details-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 2;
}

.ashranda-restaurant-details-hero .container {
    position: relative;
    z-index: 3;
}

.restaurant-details-hero-content {
    max-width: 720px;
}

.restaurant-details-hero-content h1 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 18px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.restaurant-details-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.restaurant-details-badge {
    height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 5px;
    padding: 0 12px;
    font-size: 15px;
    line-height: 1;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.badge-orange {
    color: #ff8b22;
    background: rgba(255, 117, 0, 0.14);
    border: 1px solid rgba(255, 117, 0, 0.95);
}

.badge-rating {
    color: #ffffff;
    background: rgba(18, 27, 42, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.badge-rating i {
    color: #d9a64a;
    font-size: 14px;
}

.badge-rating strong {
    color: #ffffff;
    font-size: 14px;
}

.badge-rating small {
    color: #bfc4ca;
    font-size: 14px;
    font-weight: 500;
}

.badge-open {
    color: #1fe36d;
    background: rgba(0, 145, 67, 0.18);
    border: 1px solid rgba(0, 210, 95, 0.95);
    box-shadow: 0 0 14px rgba(0, 210, 95, 0.18);
}

.badge-open i {
    font-size: 8px;
}

/* Responsive */

@media (max-width: 991px) {
    .ashranda-restaurant-details-hero {
        min-height: 500px;
        padding: 120px 0 48px;
    }

    .restaurant-details-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .ashranda-restaurant-details-hero {
        min-height: 500px;
        padding: 105px 0 42px;
        align-items: flex-end;
    }

    .restaurant-details-hero-content h1 {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .restaurant-details-badges {
        gap: 10px;
    }

    .restaurant-details-badge {
        height: 31px;
        font-size: 14px;
        padding: 0 10px;
    }

    .badge-rating small {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .ashranda-restaurant-details-hero {
        min-height: 500px;
           padding: 160px 0 80px;
    }

    .restaurant-details-hero-content h1 {
        font-size: 28px;
    }

    .restaurant-details-badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .restaurant-details-badge {
        height: 30px;
    }
}
/* =============== Restaurant Gallery =============== */

.restaurant-gallery-section {
    background: transparent;
    padding: 0 0 48px;
    margin-top: -210px;
    position: relative;
    z-index: 10;
}



.restaurant-gallery-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr 0.65fr;
    grid-template-rows: 170px 170px;
    gap: 18px;
}

.restaurant-gallery-main,
.restaurant-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: #111;
}

.restaurant-gallery-main {
    grid-row: 1 / 3;
}

.restaurant-gallery-main img,
.restaurant-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.restaurant-gallery-main:hover img,
.restaurant-gallery-item:hover img {
    transform: scale(1.05);
}

.restaurant-map-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.show-map-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.78);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.show-map-btn i {
    font-size: 12px;
}

/* Responsive */

@media (max-width: 991px) {
    .restaurant-gallery-section {
        margin-top: -55px;
        padding-bottom: 42px;
    }

    .restaurant-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 260px 160px 160px;
        gap: 14px;
    }

    .restaurant-gallery-main {
        grid-column: 1 / 3;
        grid-row: auto;
    }
}

@media (max-width: 575px) {
    .restaurant-gallery-section {
        margin-top: -30px;
        padding-bottom: 35px;
    }

    .restaurant-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 12px;
    }

    .restaurant-gallery-main,
    .restaurant-gallery-item {
        height: 210px;
        grid-column: auto;
        grid-row: auto;
        border-radius: 7px;
    }

    .restaurant-gallery-main {
        height: 260px;
    }
}
.restaurant-about-section {
    background: #000000;
    padding: 55px 0 90px;
    color: #ffffff;
}



.restaurant-about-content {
    max-width: 100%;
}

.restaurant-about-content h2 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(120, 135, 150, 0.45);
    font-family: Arial, sans-serif;
}

.restaurant-about-content p {
    color: #c9c9c9;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
    margin: 0 0 22px;
}

.restaurant-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0 26px;
}



.restaurant-feature-box {
    min-height: 78px;
    background: #0d0d0c;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
}

.restaurant-feature-box i {
    color: #d4a24b;
    font-size: 23px;
    width: 28px;
    flex-shrink: 0;
    text-align: center;
}

.restaurant-feature-box span {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    display: block;
}

.restaurant-feature-box small {
    display: block;
    color: #9d9d9d;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 15px;
    line-height: 1.3;
    margin-top: 4px;
}

.restaurant-info-box {
    background: #090908;
    border: 1px solid rgba(120, 135, 150, 0.55);
    border-radius: 7px;
    padding: 24px 26px 26px;
    margin-top: 26px;
}

.restaurant-info-box h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 24px;
}

.restaurant-info-box h3 i {
    color: #d4a24b;
    font-size: 16px;
}

.restaurant-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 45px;
}

.restaurant-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.restaurant-info-item > i {
    color: #ffffff;
    font-size: 15px;
    width: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.restaurant-info-item h4 {
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 6px;
}

.restaurant-info-item p {
    color: #c9c9c9;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.restaurant-info-item a {
    color: #1fe36d !important;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.restaurant-sidebar-wrap {
    position: sticky;
    top: 100px;
}

/* Responsive */

@media (max-width: 991px) {
    .restaurant-about-section {
        padding: 45px 0 70px;
    }

    .restaurant-sidebar-wrap {
        position: static;
        margin-top: 20px;
    }

    .restaurant-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .restaurant-about-section {
        padding: 38px 0 60px;
    }

    .restaurant-about-content h2 {
        font-size: 20px;
    }

    .restaurant-about-content p {
        font-size: 15px;
    }

    .restaurant-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .restaurant-feature-box {
        min-height: 52px;
    }

    .restaurant-info-box {
        padding: 22px 18px;
    }

    .restaurant-info-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .restaurant-info-box h3 {
        font-size: 20px;
    }
}
/* =============== Featured Menus Professional =============== */

.featured-menus-section {
    background: #000;
    padding: 48px 0 72px;
    color: #fff;
    overflow: hidden;
}

.featured-menus-section .container {
    max-width: 1280px !important;
    margin: 0 auto;
}

.featured-menus-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.menu-column-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
}

.menu-column-title span {
    display: block;
    width: 100%;
    height: 2px;
    background: #d4a24b;
    flex: unset;
}

.menu-column-title h3 {
    color: #d4a24b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 9px;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
}
/* Menu List */
.menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 20px;
}

.menu-item h4 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0 0 10px;
}

.menu-item p {
    color: #bfbfbf;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
    margin: 0;
}

.menu-item strong {
    color: #d4a24b;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 900;
    white-space: nowrap;
    margin-top: 2px;
}

/* Center */
.featured-menu-center {
    text-align: center;
    padding-top: 0;
}

.featured-menu-center h2 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    line-height: 1.08;
    font-weight: 400;
    letter-spacing: 11px;
    text-transform: uppercase;
    margin: 0 0 34px;
}

.featured-menu-image {
    width: 245px;
    height: 410px;
    margin: 0 auto;
    border-radius: 130px;
    overflow: hidden;
    border: 1px solid rgba(212, 162, 75, 0.35);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

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

/* Responsive */

@media (max-width: 1199px) {
    .featured-menus-section .container {
        max-width: 1080px !important;
    }

    .featured-menus-wrapper {
        grid-template-columns: minmax(0, 1fr) 250px minmax(0, 1fr);
        gap: 34px;
    }

    .featured-menu-center h2 {
        font-size: 42px;
        letter-spacing: 9px;
    }

    .featured-menu-image {
        width: 220px;
        height: 360px;
    }

    .menu-column-title h3 {
        font-size: 22px;
        letter-spacing: 7px;
    }

    .menu-item h4 {
        font-size: 16px;
        letter-spacing: 3px;
    }
}

@media (max-width: 991px) {
    .featured-menus-section {
        padding: 55px 0 70px;
    }

    .featured-menus-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .featured-menu-center {
        order: -1;
    }

    .featured-menu-center h2 {
        font-size: 38px;
        letter-spacing: 8px;
        margin-bottom: 28px;
    }

    .featured-menu-image {
        width: 220px;
        height: 340px;
    }

    .menu-column {
        max-width: 620px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .featured-menus-section {
        padding: 45px 0 58px;
    }

    .featured-menu-center h2 {
        font-size: 30px;
        letter-spacing: 6px;
    }

    .featured-menu-image {
        width: 190px;
        height: 290px;
    }

    .menu-column-title {
        gap: 14px;
        margin-bottom: 32px;
    }

    .menu-column-title h3 {
        font-size: 18px;
        letter-spacing: 5px;
    }

    .menu-list {
        gap: 24px;
    }

    .menu-item {
        gap: 12px;
    }

    .menu-item h4 {
        font-size: 14px;
        letter-spacing: 2.5px;
        margin-bottom: 8px;
    }

    .menu-item p {
        font-size: 11px;
    }

    .menu-item strong {
        font-size: 15px;
    }
}
/* =============== Blog Hero =============== */

.ashranda-blog-hero {
    position: relative;
    min-height: 620px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 90px;
}

.ashranda-blog-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.ashranda-blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.28) 45%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 2;
}

.ashranda-blog-hero .container {
    position: relative;
    z-index: 3;
}

.ashranda-blog-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding-top: 60px;
}

.ashranda-blog-hero-content h1 {
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 54px;
    line-height: 1.1;
    font-weight: 600;
    margin: 0 0 18px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

.ashranda-blog-hero-content p {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
    margin: 0 0 38px;
}

.ashranda-blog-search {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    max-width: 730px;
    margin: 0 auto;
}

.blog-search-input {
    position: relative;
    flex: 1;
}

.blog-search-input i {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #9a9aaf;
    font-size: 20px;
    z-index: 2;
}

.blog-search-input input {
    width: 100%;
    height: 55px;
    border: 0;
    outline: none;
    border-radius: 6px;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    font-weight: 500;
    padding: 0 22px 0 58px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.blog-search-input input::placeholder {
    color: #9a9aaf;
}

.ashranda-blog-search button {
    width: 170px;
    height: 55px;
    border: 0;
    border-radius: 6px;
    background: #d4a24b !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 800;
    transition: 0.3s ease;
}

.ashranda-blog-search button:hover {
    background: #c39138 !important;
}

/* Responsive */

@media (max-width: 991px) {
    .ashranda-blog-hero {
        min-height: 560px;
        padding: 130px 0 80px;
    }

    .ashranda-blog-hero-content h1 {
        font-size: 46px;
    }

    .ashranda-blog-hero-content p {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .ashranda-blog-hero {
        min-height: 520px;
        padding: 120px 0 70px;
    }

    .ashranda-blog-hero-content {
        padding-top: 40px;
    }

    .ashranda-blog-search {
        gap: 14px;
    }

    .ashranda-blog-search button {
        width: 130px;
    }
}

@media (max-width: 575px) {
    .ashranda-blog-hero {
        min-height: 500px;
        padding: 110px 0 60px;
    }

    .ashranda-blog-hero-content h1 {
        font-size: 36px;
    }

    .ashranda-blog-hero-content p {
        font-size: 21px;
        margin-bottom: 28px;
    }

    .ashranda-blog-search {
        flex-direction: column;
        gap: 14px;
    }

    .blog-search-input {
        width: 100%;
    }

    .blog-search-input input {
        height: 56px;
        font-size: 15px;
    }

    .ashranda-blog-search button {
        width: 100%;
        height: 56px;
    }
}
.new-blog-section {
  background: #000;
  padding: 60px 0;
}

.new-blog-section .container {
  max-width: 1120px;
}

.blog-tabs-wrap {
  display: flex;
  gap: 14px;
  padding: 8px;
  margin-bottom: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 40px;
  background: #030303;
}

.blog-tab {
  flex: 1;
  height: 48px;
  border: 0;
  border-radius: 30px;
  background: #0f0f0d;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
}

.blog-tab.active,
.blog-tab:hover {
  background: transparent;
  outline: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.new-blog-card {
  height: 100%;
  padding: 8px;
  background: #11110f;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;
}

.new-blog-card:hover {
  transform: translateY(-4px);
}

.new-blog-img {
  display: block;
  width: 100%;
  height: 255px;
  overflow: hidden;
  border-radius: 8px;
}

.new-blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.new-blog-card:hover .new-blog-img img {
  transform: scale(1.05);
}

.new-blog-content {
  padding: 18px 0 6px;
}

.new-blog-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.new-blog-title {
  color: #fff !important;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.new-blog-title:hover {
  color: #fff !important;
}

.new-blog-arrow {
  color: #fff !important;
  font-size: 26px;
  line-height: 1;
  text-decoration: none;
  transform: rotate(45deg);
}

.new-blog-desc {
  margin: 18px 0 18px !important;
  color: #f2f2f2;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.new-blog-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.new-blog-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 21px;
  padding: 2px 10px;
  background: #fff9d9 !important;
  border-radius: 3px;
  color: #d78a3c;
  font-size: 12px;
  font-weight: 600;
}

.new-load-more {
  margin-top: 25px;
}

/* Mobile */
@media (max-width: 767px) {
  .new-blog-section {
    padding: 40px 0;
  }

  .blog-tabs-wrap {
    overflow-x: auto;
    border-radius: 28px;
    gap: 8px;
    margin-bottom: 28px;
  }

  .blog-tab {
    flex: 0 0 auto;
    min-width: 135px;
    height: 44px;
    font-size: 14px;
  }

  .new-blog-img {
    height: 230px;
  }

  .new-blog-title {
    font-size: 16px;
  }
}
.new-blog-card {
  width: 100%;
  min-height: 440px;
  padding: 8px;
  background: #11110f;
  border-radius: 8px;
  overflow: hidden;
  transition: 0.3s ease;

  display: flex;
  flex-direction: column;
}

.new-blog-content {
  padding: 18px 0 10px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.new-blog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.blog-tabs-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 42px;
}

.blog-tab-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.85) !important;
  background: transparent;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}

.blog-tab-arrow:hover {
  background: #fff !important;
  color: #000;
}

.blog-tab-arrow i {
  line-height: 1;
}

@media (max-width: 767px) {
  .blog-tabs-arrows {
    margin-top: 24px;
    margin-bottom: 32px;
  }

  .blog-tab-arrow {
    width: 46px;
    height: 46px;
    font-size: 27px;
  }
}
.blog-section-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  margin-top: 0;
  margin-bottom: 0;
}