:root {
    --primary: linear-gradient(-45deg, #d0a649, #c99c3e);
    --secondary: #4A4A4A;
    --dark: #1A1A1A;
    --light: #F5F5F5;
    --accent: #ddb865;
    --cream: #F9F6F0;
}

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

body, html {
    height: 100vh;
    max-height: 100vh;
    /* overflow: hidden; */
    font-family: 'Manrope', sans-serif;
    background: var(--dark);
    color: var(--light);
    /* overflow-x: hidden; */
}

/* Main Container */
.full-page-container {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Modern Header */
.modern-header {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(157, 131, 82, 0.3);
    z-index: 100;
}

.modern-header .logo img{
    max-width: 195px;
}
.header-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-modern {
    background: transparent;
    border: 1px solid #ddb865;
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-modern:hover {
    color: var(--dark);
}

.btn-modern:hover::before {
    left: 0;
}

.btn-filled {
    background: var(--primary);
    color: var(--dark);
    border: 1px solid var(--primary);
}

.btn-filled::before {
    background: var(--accent);
}

/* Main Content Area */
.main-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    /* height: calc(100vh - 50px); */
    overflow: hidden;
}

/* Left Content Area */
.left-content {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Banner Section */
.banner-section {
    position: relative;
    /* height: 30vh; */
    height: 70vh;
    /* background: linear-gradient(rgba(26, 26, 26, 0.7), rgba(26, 26, 26, 0.7)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1973&q=80') center/cover; */
    background: url("../images/banner4.jpg") no-repeat center center / cover;
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(157, 131, 82, 0.2) 100%); */
}

.banner-content {
    position: relative;
    z-index: 10;
    max-width: 100%;
    /* width: 570px; */
        /* width: 584px; */
        width: 64%;
}

.main-title {
    font-family: 'Marcellus', serif;
    font-size: 2.8rem;
    color: var(--light);
    line-height: 1.2;
    margin-bottom: 2.5rem;
    position: relative;
}

.main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

.main-title span {
    color: var(--accent);
}

.main-description {
    font-size: 1rem;
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.5;
    margin: 1rem 0 0 0;
    max-width: 88%;
}

/* Feature Panels */
.feature-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem 1.5rem;
    flex: 1;
}

.feature-panel {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(157, 131, 82, 0.3);
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    /* flex-direction: column; */
    align-items: center;
}

.feature-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease;
}

.feature-panel:hover::before {
    height: 100%;
}

.feature-panel:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    margin-right: 8px;
}

.feature-title {
    font-family: 'Marcellus', serif;
    /* font-size: 1.5rem; */
    font-size: 1rem;
    /* color: var(--accent); */
    color: #fff;
    margin-bottom: 0.2rem;
}

.feature-text {
    font-size: 0.6rem;
    color: rgba(245, 245, 245, 0.8);
    /* line-height: 1.4; */
    margin-bottom: 0;
}

.price-highlight {
        color: #ddb865;
        font-weight: 600;
        font-size: 1.3rem;
        margin-bottom: 0;
}

/* Form Area */
.form-area {
    /* background: rgba(26, 26, 26, 0.9); */
    background-color: #56565675 !important;
    backdrop-filter: blur(15px);
    border-left: 1px solid rgba(157, 131, 82, 0.3);
    padding: 1rem 1rem;
    height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddb865;
    /* display: flex; */
    /* align-items: center; */
}

.form-area::-webkit-scrollbar {
    width: 5px;
}

.form-area::-webkit-scrollbar-track {
    background: var(--dark);
}

.form-area::-webkit-scrollbar-thumb {
    background: var(--primary);
}
.consent-text {
    font-size: 0.5rem;
    color: #fff;
    line-height: 1.3;
    margin-left: 0px;
    margin-bottom: 8px;
}
.luxury-checkbox {
    width: 14px;
    height: 14px;
}
.consent-text {
    font-size: 0.5rem;
    color: #fff;
    line-height: 1.3;
    margin-left: 0px;
}
input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: var(--primary);
}

.form-container {
    position: relative;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(-45deg, #d0a649, #c99c3e);
    /* display: block; */
}

.form-title {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    margin-top: 26px;
    padding-top: 10px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: linear-gradient(-45deg, #d0a649, #c99c3e);
}
.form-input::placeholder{
    color: #fff;
}

.form-input, .form-select {
    width: 100%;
    /* background: rgba(245, 245, 245, 0.05);
    border: 1px solid rgba(157, 131, 82, 0.2); */
    border: none;
    background: transparent;
    border-bottom: 1px solid rgba(157, 131, 82, 0.2);
    padding: 0.5rem 0.75rem;
    margin-bottom: 0.6rem;
    color: var(--light);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    border-radius: 0;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: linear-gradient(-45deg, #d0a649, #c99c3e);
    /* background: rgba(245, 245, 245, 0.1); */
    background: transparent;
}

.form-select option {
    background: var(--dark);
    color: var(--light);
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: linear-gradient(-45deg, #d0a649, #c99c3e);
}

.checkbox-wrapper label {
    font-size: 0.75rem;
    color: rgba(245, 245, 245, 0.6);
    line-height: 1.3;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    background: linear-gradient(-45deg,  #d0a649, #c99c3e);
    color: var(--dark);
    border: none;
    padding: 0.75rem;
    font-family: 'Marcellus', serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: all 0.3s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    left: 0;
}

/* Alert Styles */
.alert-modern {
    border: none;
    margin-bottom: 0.75rem;
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
}

.alert-success-modern {
    background: rgba(34, 197, 94, 0.1);
    border-left: 3px solid #22c55e;
    color: #22c55e;
}

.alert-danger-modern {
    background: rgba(239, 68, 68, 0.1);
    border-left: 3px solid #ef4444;
    color: #ef4444;
}

.modal-content{
    background-color: #303030;
}
.modal-title{
    margin: auto;
    color: #D4B572;
}
.modal-header .btn-close{
    margin-left: 0;
    filter: invert(1);
    opacity: 1;
}
.modal .form-area {
    padding: 1rem 0;
    background: transparent;
    border-left: none;
}
.modal .form-container::before{
    content: none;
}
.modal .form-control{
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(157, 131, 82, 0.2);
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--light);
    border-radius: 0;

}
.modal input::placeholder{
    color: #fff;
}
.modal .form-input, .form-select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(157, 131, 82, 0.2);
    border-radius: 0;
}
.moda .form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary);
    /* background: rgba(245, 245, 245, 0.1); */
    background: transparent;
    box-shadow: none;
}
.modal .form-control:focus {
    box-shadow: none;
    outline: none;
    border-color: var(--primary);
    /* background: rgba(245, 245, 245, 0.1); */
    background: transparent;
}
.modal .consent-text {
    font-size: 0.5rem;
    color: #fff;
    line-height: 1.3;
    margin-left: 0px;
    margin-bottom: 8px;
}
.modal .luxury-checkbox {
    width: 14px;
    height: 14px;
}
.modal .consent-text {
    font-size: 0.5rem;
    color: #fff;
    line-height: 1.3;
    margin-left: 0px;
}
input[type="checkbox"] {
    margin-top: 0.2rem;
    accent-color: #ddb865;
}

footer {
    padding: 15px 0;
    background: #111609;
}
.dis {
    text-align: center;
}
.box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 110px;
}
.dis p {
    letter-spacing: 1px;
    margin-bottom: 0px;
    font-size: 10px;
    color: #fff;
}
.dis p a {
    color: #fff;
    text-decoration: none;
}
.d_view{
    display: block;
}
/* Responsive Design */
/* @media(max-width:1366px){
    .form-area .logo {
        margin-bottom: 20px;
    }
    .form-area {
        padding: 1rem 1rem;
    }
} */
 .d_views{
    display: block;
 }
 .m_views{
    display: none;
 }
 .box_m{
    display: none;
 }

 @media(max-width:1366px){
 .form-area {
   height: 70vh;
 }
 .form-title {
    margin-top: 5px;
    
}
}
@media(max-width:1280px){
    .price-highlight {
        font-size: 1.1rem;
    }
     .form-area {

    height: 100%;
 }
     .form-title {
        margin-top: 6px;
    }
    .main-title {
        font-size: 2.5rem;
    }
     .form-area {
   height: 70vh;
 }
}
@media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        height: calc(100vh - 50px);
    }
    
    .left-content {
        height: auto;
    }
    
    .banner-section {
        height: 20vh;
    }
    
    .feature-panels {
        padding: 0.75rem;
    }
    
    .form-area {
        border-left: none;
        /* border-top: 1px solid rgba(157, 131, 82, 0.3); */
        height: auto;
    }
}

@media (max-width: 768px) {
    .banner-content {
    width: 100%;
}
    .modern-header {
        padding: 0.5rem 1rem;
    }
    .modern-header .logo img {
        max-width: 130px;
    }
    .form-container::before{
        display: none;
    }
    .feature-panels {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    .feature-panel {
        padding: 0.5rem 0.5rem;
    }
    .feature-icon {
        font-size: 1.50rem;
        margin-right: 8px;
    }
    .feature-title {
        font-size: 0.8rem;
    }
    .price-highlight {
        font-size: 1rem;
    }
     .feature-panel:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        width: 60%;
    }
    .banner-section {
        /* height: auto; */
        padding: 1rem;
        /* height: 40vh; */
        background:url("../images/banner-4-mob.jpg") no-repeat center center / cover;
    }
    
    .main-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    .main-title::after {
        content: none;
    }
    
    .main-description {
        font-size: 0.8rem;
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0.5rem;
        text-align: justify;
    }
    .box {
        flex-direction: column;
        padding: 0 10px;
    }
    .dis p {
        margin-bottom: 5px;
    }
    .d_view{
        display: none;
    }
    .d_views{
        display: none;
    }
    .m_views{
        display: block;
    }
    .banner-content.m_views{
        padding: 1rem;
    }
    .box_m{
        display: block;
        display: flex;
    }
}

/* Tab System for Mobile */
.tab-system {
    display: none;
}

@media (max-width: 576px) {
    body, html {
    height: unset;
    max-height: unset;
    /* overflow: hidden; */
}
    .full-page-container {
        grid-template-rows: auto 1fr auto;
        overflow: unset;
        height: 100%;
    }
    
    .main-content {
        display: block;
        overflow: unset;
                height: unset;
    }
    
    .left-content, .form-area {
        height: auto;
    }
    
    .tab-system {
        display: flex;
        border-top: 1px solid rgba(157, 131, 82, 0.3);
    }
    
    .tab {
        flex: 1;
        text-align: center;
        padding: 0.75rem 0;
        font-size: 0.8rem;
        color: var(--accent);
        background: var(--dark);
        border: none;    
        cursor: pointer;
    }    
    
    .tab.active {
        background: rgba(157, 131, 82, 0.2);
        color: var(--light);
        border-top: 2px solid var(--primary);
    }
    
    .tab-content {
        /* display: none; */
    }
    
    .tab-content.active {
        display: block;
    }
}

.form-area .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239D8352' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem !important;
}

/* For modal select fields */
.modal .form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239D8352' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem !important;
}