.heritage-section {
    position: relative;
    min-height: 99vh;
    background-image: url("/assests/Hr-dukes-den-resort/main1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
}

/* Dark overlay */
.heritage-overlay {
    position: absolute;
    inset: 0;
}

/* Text */
.heritage-title {
  font-size: 64px;
  font-weight: 700;
  font-family: "Georgia", serif;
  color: #363636;
  margin-bottom: 15px;
  margin-top: 30%;
}

.heritage-subtitle {
  font-size: 18px;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto;
  color: #ffd857;
}

/* Tablet */
@media (max-width: 991px) {
    .heritage-title {
        font-size: 48px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .heritage-section {
        min-height: 60vh;
        padding: 40px 0;
    }

    .heritage-title {
        font-size: 34px;
    }

    .heritage-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }
}




.discover-section {
    background: #f3f3f3;
}

/* Title */
.discover-title {
    font-family: "Georgia", serif;
    font-size: 36px;
    font-weight: 400;
    color: #b8a632;
}

/* Card */
.discover-card {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}

/* Image */
.discover-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Content Box */
.discover-content {
    background: #fff;
    width: 90%;
    margin: -60px auto 0;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.discover-content h5 {
    font-family: "Georgia", serif;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Button */
.discover-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.discover-btn:hover {
    background: #b8a632;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .discover-title {
        font-size: 26px;
    }

    .discover-img {
        height: 240px;
    }

    .discover-content {
        margin-top: -40px;
    }
}




.contact-section {
    background-color: #e9e6d5;
}

/* Main Title */
.contact-main-title {
    font-family: "Georgia", serif;
    font-size: 40px;
    color: #b8a632;
    font-weight: 400;
}

/* Image */
.contact-img-wrapper img {
    width: 100%;
    height: 50%;
    display: block;
}

/* Office Title */
.office-title {
    font-family: "Georgia", serif;
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

/* Contact Info */
.contact-info {
    font-size: 15px;
    margin-bottom: 15px;
    color: #333;
}

.contact-info a {
    color: #b8a632;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-main-title {
        font-size: 30px;
    }

    .office-title {
        font-size: 24px;
    }

    .contact-content {
        text-align: center;
    }
}


.contact-section {
    background: #f3f3f3;
}

.contact-title {
    font-family: "Georgia", serif;
    font-size: 34px;
    font-weight: 400;
    color: #1f2937;
}

/* Input Styling */
.custom-input {
    border-radius: 0;
    padding: 12px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.custom-input:focus {
    box-shadow: none;
    border-color: #b8a632;
}

/* Button */
.submit-btn {
    text-decoration: none;
    background: #000;
    color: #fff;
    padding: 12px 40px;
    border: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #b8a632;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {

    .contact-title {
        font-size: 24px;
    }

    .form-label {
        margin-bottom: 8px;
    }

    .row.align-items-center {
        flex-direction: column;
    }

    .col-md-3,
    .col-md-9 {
        width: 100%;
    }
}