:root {
    --dark-green: #071c10;
    --green: #112f1d;
    --gold: #f4b914;
    --light: #f6f3e9;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--dark-green);
    color: var(--light);
    font-family: Arial, Helvetica, sans-serif;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    padding: 18px 0;
    background: linear-gradient(to bottom, rgba(4, 20, 11, 0.95), transparent);
}

.navbar-brand img {
    width: 130px;
    height: auto;
}

.navbar-nav {
    gap: 8px;
}

.navbar .nav-link {
    position: relative;
    padding: 10px 8px !important;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.25s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--gold);
}

.navbar .nav-link::after {
    position: absolute;
    bottom: 3px;
    left: 8px;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    content: "";
    transition: 0.25s;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: calc(100% - 16px);
}

.contact-btn {
    padding: 11px 22px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    background-color: var(--gold);
    color: #112415;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-btn:hover {
    border-color: #ffd34e;
    background-color: #ffd34e;
    color: #112415;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 25px;
    text-decoration: none;
    transition: 0.25s;
}

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

@media (max-width: 991px) {
    .site-header {
        position: relative;
        padding: 8px 0;
        background-color: var(--dark-green);
    }

    .navbar-brand img {
        width: 90px;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 18px;
        border: 1px solid rgba(244, 185, 20, 0.25);
        border-radius: 10px;
        background-color: #0b2516;
    }

    .navbar-nav {
        align-items: flex-start !important;
        gap: 3px;
    }

    .contact-btn {
        margin-top: 15px;
    }

    .whatsapp-btn {
        margin-top: 15px;
        margin-left: 10px;
    }
}

.umrah-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 960px;
    padding: 130px 0 45px;
    overflow: hidden;
    background: url("../img/kabe-hero.jpg") center / cover no-repeat;
}

.umrah-hero-overlay {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(
                    to bottom,
                    rgba(2, 18, 10, 0.42) 0%,
                    rgba(2, 23, 12, 0.30) 25%,
                    rgba(3, 31, 16, 0.72) 68%,
                    rgba(2, 27, 14, 0.94) 100%
            ),
            rgba(3, 30, 16, 0.22);
}

.umrah-hero .container {
    z-index: 2;
}

.umrah-content {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.umrah-main-title {
    margin: 0;
    color: #f7f6ef;
    font-family: "Oswald", sans-serif;
    font-size: clamp(58px, 7vw, 105px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-shadow: 4px 5px 0 rgba(0, 0, 0, 0.28);
}

.umrah-script-title {
    margin-top: -5px;
    color: #f5b817;
    font-family: "Playball", cursive;
    font-size: clamp(72px, 8vw, 125px);
    line-height: 0.95;
    text-shadow: 3px 5px 3px rgba(0, 0, 0, 0.28);
    transform: rotate(-3deg);
}

.umrah-verse {
    display: flex;
    flex-direction: column;
    margin: 30px auto 25px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: clamp(19px, 2vw, 29px);
    font-weight: 500;
    line-height: 1.35;
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.55);
}

.umrah-verse strong,
.umrah-verse span {
    font-weight: 600;
}

.umrah-day-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    min-width: 265px;
    margin-bottom: 45px;
    padding: 13px 28px;
    border-radius: 5px;
    background-color: #f5b817;
    color: #17341f;
    font-family: "Oswald", sans-serif;
    font-size: 27px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.28);
}

.umrah-day-box i {
    font-size: 28px;
}

.package-area {
    max-width: 880px;
    margin: 0 auto 30px;
}

.luxury-package {
    margin-top: 20px;
}

.package-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    margin-bottom: 22px;
}

.package-heading span {
    width: 90px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.78);
}

.package-heading h2 {
    margin: 0;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 29px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.55);
}

.price-card {
    position: relative;
    min-height: 110px;
    padding: 28px 15px 15px;
    border-radius: 9px;
    background: linear-gradient(135deg, rgba(37, 83, 49, 0.98), rgba(23, 59, 36, 0.98));
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.32);
}

.room-label {
    position: absolute;
    top: -8px;
    left: 50%;
    min-width: 120px;
    padding: 4px 14px;
    border-radius: 2px;
    background-color: #f5b817;
    color: #17341f;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    transform: translateX(-50%);
}

.price {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 55px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.35);
}

.hero-contact-bar {
    display: flex;
    align-items: center;
    max-width: 950px;
    min-height: 66px;
    margin: 28px auto 0;
    padding: 9px 23px;
    border-radius: 15px;
    background-color: rgba(46, 82, 54, 0.92);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(4px);
}

.contact-info-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    font-size: 14px;
    line-height: 1.35;
}

.contact-info-text i {
    flex-shrink: 0;
    color: #f5b817;
    font-size: 28px;
}

.hero-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s;
}

.hero-contact-item i {
    color: #f5b817;
    font-size: 25px;
}

.hero-contact-item:hover {
    color: #f5b817;
}

.contact-separator {
    width: 1px;
    height: 33px;
    margin: 0 22px;
    background-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
    .umrah-hero {
        min-height: auto;
        padding: 135px 0 45px;
    }

    .umrah-main-title {
        font-size: clamp(52px, 8vw, 76px);
    }

    .umrah-script-title {
        font-size: 86px;
    }

    .hero-contact-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .contact-info-text {
        flex-basis: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .umrah-hero {
        padding: 105px 0 30px;
        background-position: center top;
    }

    .umrah-main-title {
        font-size: 46px;
        line-height: 1.05;
    }

    .umrah-script-title {
        margin-top: 6px;
        font-size: 73px;
    }

    .umrah-verse {
        margin-top: 25px;
        font-size: 18px;
    }

    .umrah-day-box {
        min-width: 220px;
        margin-bottom: 38px;
        font-size: 23px;
    }

    .package-heading span {
        width: 45px;
    }

    .package-heading h2 {
        font-size: 24px;
    }

    .price-card {
        max-width: 290px;
        min-height: 95px;
        margin: 0 auto 10px;
    }

    .price {
        font-size: 48px;
    }

    .hero-contact-bar {
        flex-direction: column;
        padding: 18px;
    }

    .contact-info-text {
        flex-direction: column;
    }

    .contact-separator {
        width: 80%;
        height: 1px;
        margin: 2px 0;
    }
}

@media (max-width: 480px) {
    .umrah-main-title {
        font-size: 38px;
    }

    .umrah-script-title {
        font-size: 65px;
    }

    .umrah-verse {
        font-size: 16px;
    }
}

.about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background:
            radial-gradient(
                    circle at 25% 50%,
                    rgba(20, 88, 45, 0.35),
                    transparent 45%
            ),
            linear-gradient(
                    90deg,
                    #061d10 0%,
                    #082716 50%,
                    #061b0f 100%
            );
}

.about-content {
    max-width: 610px;
}

.about-title {
    margin: 0;
    color: #f7f4e9;
    font-family: "Oswald", sans-serif;
    font-size: clamp(40px, 4vw, 61px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 3px 4px 1px rgba(0, 0, 0, 0.25);
}

.about-script-title {
    margin: 8px 0 34px;
    color: #f5b817;
    font-family: "Playball", cursive;
    font-size: clamp(47px, 5vw, 73px);
    line-height: 1;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.35);
    transform: rotate(-2deg);
    transform-origin: left center;
}

.about-lead,
.about-description {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.75;
}

.about-lead {
    margin-bottom: 10px;
}

.about-description {
    margin-bottom: 35px;
}

.about-features {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 42px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 110px;
}

.about-feature i {
    flex-shrink: 0;
    color: #f5b817;
    font-size: 37px;
}

.about-feature span {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.25;
}

.about-feature strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.about-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    min-width: 225px;
    padding: 16px 27px;
    border: 1px solid #f5b817;
    border-radius: 3px;
    background-color: #f5b817;
    color: #17341f;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.about-button i {
    font-size: 21px;
    transition: 0.3s ease;
}

.about-button:hover {
    border-color: #ffd04b;
    background-color: #ffd04b;
    color: #17341f;
    transform: translateY(-3px);
}

.about-button:hover i {
    transform: translateX(5px);
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 500px;
    border: 2px solid #d9a917;
    border-radius: 8px 75px 8px 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.about-image-wrapper::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 24, 13, 0.25), transparent 45%);
    content: "";
    pointer-events: none;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.04);
}

@media (max-width: 1199px) {
    .about-features {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .about-feature {
        width: calc(50% - 10px);
    }
}

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

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

    .about-image-wrapper {
        min-height: 440px;
    }

    .about-image {
        height: 440px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 55px 0;
    }

    .about-title {
        font-size: 39px;
    }

    .about-script-title {
        margin-bottom: 25px;
        font-size: 47px;
    }

    .about-lead,
    .about-description {
        font-size: 15px;
        line-height: 1.65;
    }

    .about-features {
        gap: 20px 10px;
    }

    .about-feature {
        width: calc(50% - 5px);
        min-width: 0;
    }

    .about-feature i {
        font-size: 30px;
    }

    .about-feature span {
        font-size: 12px;
    }

    .about-feature strong {
        font-size: 13px;
    }

    .about-button {
        width: 100%;
    }

    .about-image-wrapper {
        min-height: 330px;
        border-radius: 8px 48px 8px 8px;
    }

    .about-image {
        height: 330px;
    }
}

.why-section {
    position: relative;
    padding: 32px 0 42px;
    overflow: hidden;
    background:
            linear-gradient(rgba(20, 55, 32, 0.93), rgba(20, 55, 32, 0.93)),
            url("../img/why-pattern.jpg") center / cover no-repeat;
    border-top: 1px solid rgba(245, 184, 23, 0.25);
    border-bottom: 1px solid rgba(245, 184, 23, 0.35);
}

.why-title {
    margin: 0 0 28px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 39px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 3px 4px 2px rgba(0, 0, 0, 0.35);
}

.why-grid {
    max-width: 1180px;
    margin: 0 auto;
}

.why-item {
    position: relative;
    min-height: 155px;
    padding: 5px 24px 0;
    text-align: center;
}

.why-item::after {
    position: absolute;
    top: 12px;
    right: 0;
    width: 1px;
    height: 125px;
    background-color: rgba(245, 184, 23, 0.18);
    content: "";
}

.why-grid > div:last-child .why-item::after {
    display: none;
}

.why-item i {
    display: block;
    margin-bottom: 10px;
    color: #eeb51c;
    font-size: 46px;
    line-height: 1;
}

.why-item h3 {
    margin: 0 0 9px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.why-item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .why-item {
        min-height: 175px;
        padding: 10px 15px;
    }

    .why-item::after {
        height: 145px;
    }

    .why-item h3 {
        font-size: 19px;
    }

    .why-item p {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .why-section {
        padding: 38px 0;
    }

    .why-title {
        margin-bottom: 25px;
        font-size: 31px;
    }

    .why-item {
        min-height: 185px;
        padding: 20px 10px;
        border-bottom: 1px solid rgba(245, 184, 23, 0.15);
    }

    .why-item::after {
        display: none;
    }

    .why-grid > div:nth-child(odd) .why-item {
        border-right: 1px solid rgba(245, 184, 23, 0.15);
    }

    .why-grid > div:last-child .why-item {
        border-right: none;
        border-bottom: none;
    }

    .why-item i {
        font-size: 39px;
    }
}

@media (max-width: 480px) {
    .why-item {
        min-height: 170px;
    }

    .why-item h3 {
        font-size: 18px;
    }

    .why-item p {
        font-size: 13px;
    }
}

.packages-section {
    position: relative;
    padding: 45px 0 60px;
    color: #fff;

    background:
            linear-gradient(rgba(4, 35, 18, 0.78), rgba(4, 35, 18, 0.88)),
            url("../img/packages-bg.png") center / cover no-repeat;
}

.packages-section .packages-heading {
    margin-bottom: 30px;
    text-align: center;
}

.packages-section .packages-heading h2 {
    margin-bottom: 5px;
    font-family: "Oswald", sans-serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.packages-section .packages-heading p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.packages-section .package-box {
    height: 100%;
    padding: 25px;
    border: 1px solid rgba(245, 184, 23, 0.45);
    border-radius: 18px;
    background: rgba(7, 45, 24, 0.29);
}

.packages-section .package-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 25px;
}

.packages-section .package-title span {
    width: 65px;
    height: 2px;
    background: #d9a817;
}

.packages-section .package-title h3 {
    margin: 0;
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 27px;
    font-weight: 700;
    white-space: nowrap;
    text-transform: uppercase;
}

.packages-section .package-price-card {
    position: relative;
    min-height: 90px;
    padding: 29px 5px 10px;
    border: 1px solid rgba(245, 184, 23, 0.5);
    border-radius: 9px;
    background: linear-gradient(145deg, #174a2a, #0e3620);
    text-align: center;
}

.packages-section .package-room {
    position: absolute;
    top: -9px;
    left: 50%;
    min-width: 90px;
    padding: 4px 8px;
    border-radius: 3px;
    background: #f5b817;
    color: #17351f;
    font-family: "Oswald", sans-serif;
    font-size: 17px;
    font-weight: 700;
    white-space: nowrap;
    transform: translateX(-50%);
}

.packages-section .package-price-line {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
}

.packages-section .starting-price {
    margin-bottom: 5px;
    color: #f5b817;
    font-family: "Oswald", sans-serif;
    font-size: 10px;
    font-weight: 600;
}

.packages-section .package-price-line strong {
    color: #fff;
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
}

.packages-section .package-list {
    display: grid;
    gap: 8px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.packages-section .package-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
}

.packages-section .package-list i {
    color: #f5b817;
    font-size: 18px;
}

@media (max-width: 576px) {
    .packages-section .packages-heading h2 {
        font-size: 32px;
    }

    .packages-section .package-box {
        padding: 20px 12px;
    }

    .packages-section .package-title span {
        width: 30px;
    }

    .packages-section .package-title h3 {
        font-size: 22px;
    }

    .packages-section .package-price-card {
        min-height: 78px;
        padding: 25px 2px 8px;
    }

    .packages-section .package-room {
        min-width: 67px;
        font-size: 13px;
    }

    .packages-section .package-price-line {
        flex-direction: column-reverse;
        align-items: center;
        gap: 2px;
    }

    .packages-section .starting-price {
        margin: 0;
        font-size: 9px;
    }

    .packages-section .package-price-line strong {
        font-size: 27px;
    }
}

.gallery-section {
    position: relative;
    padding: 20px 18px 26px;
    overflow: hidden;
    background:
            linear-gradient(rgba(25, 50, 28, 0.82), rgba(18, 40, 23, 0.9)),
            url("../img/gallery-bg.jpg") center / cover no-repeat;
    border-top: 1px solid rgba(245, 184, 23, 0.3);
    border-bottom: 1px solid rgba(245, 184, 23, 0.25);
}

.gallery-title {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 3px 4px 3px rgba(0, 0, 0, 0.45);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
    max-width: 1500px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    display: block;
    height: 210px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    background-color: #12351f;
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.28);
}

.gallery-item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 28, 14, 0.35), transparent 55%);
    content: "";
    transition: 0.35s ease;
}

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

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

.gallery-item:hover::after {
    background: rgba(245, 184, 23, 0.08);
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-grid .gallery-item:nth-child(4),
    .gallery-grid .gallery-item:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .gallery-section {
        padding: 30px 12px;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        height: 190px;
        border-radius: 14px;
    }

    .gallery-grid .gallery-item:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .gallery-title {
        font-size: 26px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-grid .gallery-item:last-child {
        grid-column: auto;
    }
}

.reservation-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(245, 184, 23, 0.35);
    border-bottom: 1px solid rgba(245, 184, 23, 0.5);
    background:
            radial-gradient(
                    circle at 70% 50%,
                    rgba(36, 94, 52, 0.35),
                    transparent 45%
            ),
            linear-gradient(
                    90deg,
                    #071f11,
                    #0c341d,
                    #082515
            );
}

.reservation-image {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;

    background: url("../img/isik.png") center / cover no-repeat;
}

.reservation-image::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;

    box-shadow:
            inset 45px 0 45px -25px #082515,
            inset -45px 0 45px -25px #082515,
            inset 0 35px 40px -30px #082515,
            inset 0 -35px 40px -30px #082515;
}

.reservation-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    padding: 55px 7%;
}

.reservation-content h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: clamp(38px, 4vw, 62px);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 3px 4px 2px rgba(0, 0, 0, 0.35);
}

.reservation-content > p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.reservation-form .form-control {
    min-height: 60px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 5px;
    outline: none;
    background-color: rgba(5, 39, 20, 0.48);
    color: #ffffff;
    font-size: 15px;
    box-shadow: none;
    transition: 0.25s ease;
}

.reservation-form textarea.form-control {
    min-height: 137px;
    resize: vertical;
}

.reservation-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.63);
}

.reservation-form .form-control:focus {
    border-color: #f5b817;
    background-color: rgba(8, 48, 26, 0.72);
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(245, 184, 23, 0.1);
}

.reservation-date {
    color-scheme: dark;
}

.reservation-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-width: 210px;
    min-height: 57px;
    padding: 12px 28px;
    border: 1px solid #f5b817;
    border-radius: 4px;
    background-color: #f5b817;
    color: #17351f;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.reservation-button i {
    font-size: 21px;
    transition: 0.3s ease;
}

.reservation-button:hover {
    border-color: #ffd451;
    background-color: #ffd451;
    transform: translateY(-2px);
}

.reservation-button:hover i {
    transform: translateX(5px);
}

.site-footer {
    padding: 42px 0 18px;
    background:
            radial-gradient(
                    circle at 15% 40%,
                    rgba(35, 93, 51, 0.22),
                    transparent 32%
            ),
            linear-gradient(
                    90deg,
                    #061c0f,
                    #0a2b18,
                    #061c0f
            );
    color: #ffffff;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 19px;
    font-weight: 700;
    text-transform: uppercase;
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    text-decoration: none;
    transition: 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #f5b817;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    flex-shrink: 0;
    color: #f5b817;
    font-size: 18px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 17px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(245, 184, 23, 0.42);
    border-radius: 50%;
    color: #f5b817;
    font-size: 23px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    border-color: #f5b817;
    background-color: #f5b817;
    color: #082515;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(245, 184, 23, 0.36);
    color: rgba(255, 255, 255, 0.48);
    font-size: 13px;
}

.footer-bottom span:last-child {
    color: rgba(245, 184, 23, 0.62);
}

@media (max-width: 991px) {
    .reservation-image {
        min-height: 390px;
    }

    .reservation-content {
        min-height: auto;
        padding: 55px 30px;
    }
}

@media (max-width: 767px) {
    .reservation-image {
        min-height: 320px;
    }

    .reservation-content {
        padding: 45px 20px;
    }

    .reservation-content h2 {
        font-size: 38px;
        line-height: 1.12;
    }

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

    .reservation-button {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}