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

body {
    background: #efefef;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: "Avenir Light", "Avenir-Light", "Avenir", sans-serif;
    font-weight: 300;
}

.container {
    width: 100%;
    max-width: 100%;
    background: #fff;
}
.footer-logo.desktop-only
 {
    padding-left: 30px;
}
html,
body {
    width: 100%;
    overflow-x: hidden;
}

@font-face {
    font-family: "Gilroy";
    src: url("Gilroy-Light.otf") format("opentype");
    font-weight: 400;
}

.heading,
h1,
h2,
h3,
h4 {
    font-family: "Gilroy", sans-serif;
}


/* ================= HEADER ================= */

.navbar {
    width: 100%;
    height: 98px;
    background: #0d1a27;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
}


/* Hamburger */

.menu-icon {
    width: 83px;
	padding-right: 31px;
    cursor: pointer;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 9px 0;
    transition: 0.3s;
}

.menu-icon span:nth-child(2) {
    width: 70%;
}

.menu-icon span:nth-child(3) {
    width: 50%;
}


/* Logo */

.logo {
    text-align: center;
    img {
/*         width: 229px;
        height: 28px; */
/*         margin-top: 8px; */
    }
    p {
        font-size: 12.7px;
        letter-spacing: 2px;
        color: #333;
        padding-top: 8px;
    }

}


/* Contact */

.contact {
    font-size: 14.8px;
    color: #fff;
    cursor: pointer;
    letter-spacing: 1px;
}

.menu-icon {
    cursor: pointer;
}

@media (max-width: 576px) {
	.contact {
		font-size: 9.8px;
	}
	.menu-icon {
        width: 50px;
		padding-right: 0;
    }
    .logo {
        img {
            width: 152px;
            height: 22px;
/* 			width: ;190 */
/*             height: 56px; */
        }
        p {
            display: none;
        }
    }
}
@media (max-width: 480px) {
    .logo {
          img {
/*             width: 137px;
            height: 18px; */
        }
    }
}


/* Overlay */

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 999;
}


/* Sidebar */

.sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 320px;
    height: 100vh;
    background: #03172d;
    padding: 30px;
    z-index: 1000;
    transition: .4s ease;
    display: flex;
    flex-direction: column;
    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
/*         .sidebar-logo {
            h1 {
                color: #fff;
                font-size: 34px;
                font-weight: 300;
                letter-spacing: 4px;
            }
            p {
                color: #c7b79e;
                font-size: 11px;
                letter-spacing: 2px;
            }
        } */
		
		.sidebar-logo {
			img {
				width: 220px;   // Adjust as needed
				height: auto;
				display: block;
				object-fit: contain;
			}
		}
		
        .close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 35px;
            cursor: pointer;
        }
    }
    .sidebar-menu {
        margin-top: 70px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        a {
            text-decoration: none;
            color: white;
            font-size: 22px;
            font-weight: 300;
            transition: .3s;
            &:hover {
                color: #c7b79e;
                transform: translateX(10px);
            }
        }
    }
        .menu-item {
        display: flex;
        flex-direction: column;
    }
    .submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .arrow {
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    .submenu {
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        margin-left: 30px;
        gap: 6px;
        transition: max-height 0.35s ease;
    }
    .submenu a {
        font-size: 18px !important;
        color: #d6d6d6 !important;
        padding: 5px 0;
    }
    .menu-item.active .submenu {
        max-height: 220px;
    }
    .menu-item.active .arrow {
        transform: rotate(180deg);
    }

}

@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        left: -100%;
    }
}


/* Active State */

.sidebar.active {
    left: 0;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* ================= Navbar ================= */

@media(max-width:768px) {
    .navbar {
        padding: 0 16px;
        height: 80px;
    }
    .logo h1 {
        font-size: 28px;
        letter-spacing: 3px;
    }
    .logo p {
        font-size: 9px;
    }
}


/* ================= CONTACT SECTION ================= */

.contact-section {
    width: 100%;
    /* Heading */
    .contact-heading {
        padding: 76px 41px;
        text-align: center;
        h1 {
            font-size: 60px;
            font-weight: 300;
            color: #ffffff;
            letter-spacing: 3px;
        }
    }
    /* Form Container */
    .contact-container {
        width: 100%;
        padding: 80px 120px;
        position: relative;
        overflow: hidden;
        background-image: linear-gradient(rgb(173 161 142 / 90%)), url(../images/bg-img.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        .contact-form {
            position: relative;
            z-index: 2;
            /* Rows */
            .form-row {
                display: flex;
                gap: 40px;
                margin-bottom: 22px;
                .input-box {
                    flex: 1;
                    input,
                    select {
                        width: 100%;
                        height: 57px;
                        background: rgba(98, 74, 46, 0.38);
                        backdrop-filter: blur(3px);
                        -webkit-backdrop-filter: blur(3px);
                        border: 1px solid rgba(255, 255, 255, 0.25);
                        outline: none;
                        padding: 0 22px;
                        color: #fff;
                        font-size: 15.4px;
                        font-weight: 300;
                        font-family: 'Public Sans', sans-serif;
                    }
                    input::placeholder,
                    textarea::placeholder {
                        color: rgba(255, 255, 255, 0.9);
                    }
                    select {
                        appearance: none;
                        cursor: pointer;
                    }
                    .input-box {
                        flex: 1;
                        position: relative;
                    }
                }
            }
            /* Message */
            .message-box {
                margin-bottom: 22px;
                font-family: 'Public Sans';
                textarea {
                    width: 100%;
                    height: 180px;
                    resize: none;
                    background: rgba(98, 74, 46, 0.38);
                    backdrop-filter: blur(3px);
                    -webkit-backdrop-filter: blur(3px);
                    border: 1px solid rgba(255, 255, 255, 0.25);
                    outline: none;
                    padding: 22px;
                    color: #fff;
                    font-size: 15.4px;
                    font-weight: 300;
                    font-family: 'Public Sans';
                }
                textarea::placeholder {
                    color: rgba(255, 255, 255, 0.9);
                }
            }
            .submit-btn {
                width: 100%;
                height: 57px;
                background: rgba(98, 74, 46, 0.38);
                backdrop-filter: blur(3px);
                -webkit-backdrop-filter: blur(3px);
                border: none;
                color: #fff;
                font-size: 16px;
                font-weight: 400;
                letter-spacing: 1px;
                cursor: pointer;
                transition: .3s ease;
                text-transform: uppercase;
                font-family: 'Public Sans', sans-serif;
            }
            .submit-btn:hover {
                background: #4e3921;
                /* color: #624A2E; */
            }
        }
    }
}

.contact-sectionn {
    width: 100%;
    /* Heading */
    .contact-heading {
        padding: 76px 41px;
        text-align: center;
        h1 {
            font-size: 60px;
            font-weight: 300;
            color: #624A2E;
            letter-spacing: 3px;
        }
    }
    /* Form Container */
    .contact-containeer {
        width: 100%;
        padding: 80px 120px;
        position: relative;
        overflow: hidden;
        background-image:  url(story-bg.png);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        .contact-form {
            position: relative;
            z-index: 2;
            /* Rows */
            .form-row {
                display: flex;
                gap: 40px;
                margin-bottom: 22px;
                .input-box {
                    flex: 1;
                    input,
                    select {
                        width: 100%;
                        height: 57px;
                        background: rgba(98, 74, 46, 0.38);
                        backdrop-filter: blur(3px);
                        -webkit-backdrop-filter: blur(3px);
                        border: 1px solid rgba(255, 255, 255, 0.25);
                        outline: none;
                        padding: 0 22px;
                        color: #fff;
                        font-size: 15.4px;
                        font-weight: 300;
                        font-family: 'Public Sans', sans-serif;
                    }
                    input::placeholder,
                    textarea::placeholder {
                        color: rgba(255, 255, 255, 0.9);
                    }
                    select {
                        appearance: none;
                        cursor: pointer;
                    }
                    .input-box {
                        flex: 1;
                        position: relative;
                    }
                }
            }
            /* Message */
            .message-box {
                margin-bottom: 22px;
                font-family: 'Public Sans';
                textarea {
                    width: 100%;
                    height: 180px;
                    resize: none;
                    background: rgba(98, 74, 46, 0.38);
                    backdrop-filter: blur(3px);
                    -webkit-backdrop-filter: blur(3px);
                    border: 1px solid rgba(255, 255, 255, 0.25);
                    outline: none;
                    padding: 22px;
                    color: #fff;
                    font-size: 15.4px;
                    font-weight: 300;
                    font-family: 'Public Sans';
                }
                textarea::placeholder {
                    color: rgba(255, 255, 255, 0.9);
                }
            }
            .submit-btn {
                width: 100%;
                height: 57px;
                background: rgba(98, 74, 46, 0.38);
                backdrop-filter: blur(3px);
                -webkit-backdrop-filter: blur(3px);
                border: none;
                color: #fff;
                font-size: 16px;
                font-weight: 400;
                letter-spacing: 1px;
                cursor: pointer;
                transition: .3s ease;
                text-transform: uppercase;
                font-family: 'Public Sans', sans-serif;
            }
            .submit-btn:hover {
                background: #4e3921;
                /* color: #624A2E; */
            }
        }
    }
}


.select-box {
    position: relative;
    i {
        position: absolute;
        right: 20px;
        top: 50%;
        translate: 0 -50%;
        font-size: 24px;
        color: #fff;
        pointer-events: none;
    }
}


/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .contact-section, 
	.contact-sectionn {
        .contact-heading {
            h1 {
                font-size: 60px;
            }
        }
        .contact-container, 
		.contact-containeer {
            padding: 60px 40px;
            .contact-form {
                .form-row {
                    flex-direction: column;
                    gap: 22px;
                }
            }
        }
    }
}

@media(max-width: 576px) {
    .contact-section, 
	.contact-sectionn {
        .contact-heading {
            padding: 40px 15px;
            h1 {
                font-size: 30px;
            }
        }
        .contact-container,
		.contact-containeer {
            padding: 40px 20px;
            .contact-form {
                .form-row {
                    .input-box {
                        input,
                        select {
                            height: 58px;
                            font-size: 18px;
                        }
                    }
                }
                .message-box {
                    textarea {
                        height: 140px;
                        font-size: 18px;
                    }
                }
            }
        }
    }
}


/* ================= FOOTER ================= */

.footer {
    width: 100%;
    background: #0d1a27;
    padding: 80px 60px 40px;
    color: #fff;
    .footer-container {
        width: 100%;
    }
    /* ROW */
    .footer-row {
        display: flex;
        justify-content: space-between;
        gap: 50px;
    }
    /* TOP ROW */
    .footer-top {
        align-items: flex-start;
    }
    /* MIDDLE ROW */
    .footer-middle {
        margin-top: 60px;
        align-items: flex-start;
    }
    /* BOX */
    .footer-box {
        h2 {
            font-size: 28.2px;
            font-weight: 50;
            color: #b8ae9d;
            margin-bottom: 35px;
        }
        ul {
            list-style: none;
            li {
                margin-bottom: 12px;
                a {
                    text-decoration: none;
                    color: #fff;
                    font-size: 20px;
                    transition: 0.3s;
                    &:hover {
                        color: #c7b79e;
                    }
                }
            }
        }
        p {
            font-size: 20px;
            line-height: 1.8;
            letter-spacing: 1.4px;
        }
        .mt {
            margin-top: 30px;
        }
    }
    .footer-box {
        h2 {
            font-size: 23px;
            font-weight: 100;
            color: #c7b79e;
            margin-bottom: 35px;
        }
        ul {
            list-style: none;
            li {
                margin-bottom: 12px;
                a {
                    text-decoration: none;
                    color: #fff;
                    font-size: 20px;
                    transition: 0.3s;
                    &:hover {
                        color: #c7b79e;
                    }
                }
            }
        }
        p {
            font-size: 18.6px;
            line-height: 1.4;
            font-weight: 300;
        }

        .mt {
            margin-top: 30px;
        }
    }
    .footer-box.last {
        width: 300px;
    }
    .left{
        width: 234px;
    }
    /* LOGO */
    .footer-logo {
        img {
            width: 220px;
            height: auto;
            display: block;
            object-fit: contain;
        }
    }
    /* SOCIAL */
    .social-icons {
        display: flex;
        gap: 18px;
        a {
            width: 48px;
            height: 48px;
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: #fff;
            font-size: 20px;
            transition: 0.3s;
            &:hover {
                background: #fff;
                color: #03172d;
            }
        }
    }
    /* BOTTOM */
    .footer-bottom {
        margin-top: 60px;
        text-align: center;
        a {
            text-decoration: none;
            color: #c7b79e;
            font-size: 20.2px;
        }
        p {
            margin-top: 20px;
            color: #c7b79e;
            font-size: 20.2px;
        }
    }
}


/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {
    .footer {
        .footer-row {
            flex-direction: column;
            gap: 60px;
        }
        .footer-logo {
            text-align: left;
            h1 {
                font-size: 52px;
                letter-spacing: 6px;
            }
        }
        .footer-middle {
            margin-top: 60px;
        }
        .footer-bottom {
            margin-top: 60px;
        }
    }
}

@media(max-width: 576px) {
    .footer {
        padding: 60px 25px 30px;
        .footer-box {
            h2 {
                font-size: 24px;
            }
            p,
            a {
                font-size: 17px;
            }
        }
        .footer-logo {
            h1 {
                font-size: 40px;
            }
        }
        .social-icons {
            a {
                width: 48px;
                height: 48px;
                font-size: 22px;
            }
        }
        .footer-bottom {
            a,
            p {
                font-size: 16px;
            }
        }
    }
}


/* Desktop */

.desktop-only {
    display: block;
}

.mobile-only {
    display: none !important;
}


/* Mobile */

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}
