:root {
    --primary-orange: #FF8C00 !important;
    --light-orange: #FFF5E6;
    --dark-bg: #1a1a1a;
    --dark-text: #2c3e50;
    --white: #ffffff;
}

body {
    font-family: 'Kanit', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

.text-warning {
    color: var(--primary-orange) !important;
}
 /* Contact Section */
      .contact-section {
        background: var(--cream);
      }

      .contact-info-card {
        background: var(--dark-brown);
        color: white;
        padding: 50px;
        border-radius: 20px;
        height: 100%;
      }

      .contact-info-card h3 {
        font-size: 1.8rem;
        margin-bottom: 30px;
      }

      .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 30px;
      }

      .contact-item-icon {
        width: 50px;
        height: 50px;
        background: rgba(255, 107, 53, 0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }

      .contact-item-icon i {
        color: var(--primary-color);
        font-size: 1.2rem;
      }

      .contact-item h5 {
        font-size: 1rem;
        margin-bottom: 5px;
        font-family: "Sarabun", sans-serif;
      }

      .contact-item p {
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        font-size: 0.95rem;
      }

      .social-links {
        display: flex;
        gap: 15px;
        margin-top: 30px;
      }

      .social-links a {
        width: 45px;
        height: 45px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s;
      }

      .social-links a:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-3px);
      }

      .contact-form-card {
        background: white;
        padding: 50px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      }

      .contact-form-card h3 {
        font-size: 1.8rem;
        color: var(--dark-brown);
        margin-bottom: 30px;
      }

      .form-floating {
        margin-bottom: 20px;
      }

      .form-floating .form-control,
      .form-floating .form-select {
        border: 2px solid #eee;
        border-radius: 10px;
        padding: 20px 15px;
        height: auto;
        transition: border-color 0.3s;
      }

      .form-floating .form-control:focus,
      .form-floating .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: none;
      }
.contact-info-card {
    background: #2d2d2d;
}
      .form-floating label {
        padding: 15px;
        color: #999;
      }

/* --- Hero Section with Wave --- */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat fixed;

    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    transform: rotate(180deg);
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.hero-wave .shape-fill {
    fill: #ffffff;
}

/* --- 3D Flip Cards (Services) --- */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 180px;
    perspective: 1000px;
    margin-bottom: 30px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.display-4 {
    font-size: 3rem;
}

.flip-card-front {
    background-color: var(--white);
    color: var(--dark-text);
    border: 1px solid #eee;
}

.flip-card-back {
    background-color: var(--primary-orange);
    color: white;
    transform: rotateY(180deg);
}

.service-icon {
    font-size: 4rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

/* --- Dark Room Section --- */
.dark-room-section {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.room-card-dark {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    margin-bottom: 30px;
    height: 400px;
    group: room-group;
}

.room-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.room-card-dark:hover .room-bg-img {
    transform: scale(1.1);
}

.room-dark-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transition: all 0.3s;
}

.room-dark-price {
    color: var(--primary-orange);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    padding: 5px 10px;
    width: 41%;
    display: block;
    background-color: #ff8c00;
}

.room-dark-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.btn-view-room {
    color: var(--white);
    border: 1px solid var(--white);
    padding: 8px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(20px);
}

.room-card-dark:hover .btn-view-room {
    opacity: 1;
    transform: translateY(0);
    background: var(--primary-orange);
    border-color: var(--primary-orange);
}

/* --- CTA Parallax Section --- */
.cta-section {
    padding: 120px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.btn-cta {
    background: var(--white);
    color: var(--primary-orange);
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: var(--primary-orange);
    color: var(--white);
}

/* --- Header Section --- */
.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1596394516093-501ba68a0ba6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: -100px;
    /* Overlap effect */
    padding-bottom: 100px;
}

/* --- Main Content Card --- */
.contact-wrapper {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

/* Left Side (Info) */
.contact-info-bg {
    background: var(--primary-orange);
    color: var(--white);
    padding: 50px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-info-bg::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-info-bg::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

/* --- Room Card Design --- */
.room-card-modern {
    background: var(--white);
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.room-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.room-img-top {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.room-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.room-card-modern:hover .room-img-top img {
    transform: scale(1.1);
}

.price-badge {
    position: absolute;
    bottom: 20px;
    right: 0;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 8px 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px 0 0 50px;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.1);
}

.price-badge span {
    font-family: 'Kanit', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 5px;
}

.room-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.room-name-title {
    font-size: 1.6rem;
    color: var(--dark-text);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.room-name-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-orange);
}

.room-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.amenity-tag {
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
}

.amenity-tag i {
    color: var(--primary-orange);
    margin-right: 8px;
}

.btn-details {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--dark-text);
    color: var(--dark-text);
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s;
    text-decoration: none;
    border-radius: 6px;
}

.btn-details:hover {
    background-color: var(--dark-text);
    color: var(--white);
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: translateY(-3px);
}

/* Right Side (Form) */
.contact-form-wrapper {
    padding: 50px;
}

/* Floating Labels Gimmick */
.form-floating-custom {
    position: relative;
    margin-bottom: 25px;
}

.form-control-custom {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 2px solid #ddd;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
    font-size: 1rem;
}

.form-control-custom:focus {
    border-color: var(--primary-orange);
}

.form-label-custom {
    position: absolute;
    top: 10px;
    left: 0;
    color: #999;
    transition: all 0.3s;
    pointer-events: none;
}

.form-control-custom:focus~.form-label-custom,
.form-control-custom:valid~.form-label-custom {
    top: -15px;
    font-size: 0.85rem;
    color: var(--primary-orange);
}

.btn-submit {
    background: linear-gradient(to right, var(--primary-orange), #ff6b6b);
    color: var(--white);
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
}

/* --- Page Header --- */
.page-header {
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* --- Gallery Filter Buttons --- */
.gallery-filter {
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 2px solid transparent;
    padding: 8px 10px;
    margin: 0 5px;
    border-radius: 30px;
    color: #666;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--white);
    background-color: var(--primary-orange);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

/* --- Gallery Grid Items --- */
.gallery-item {
    position: relative;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    height: 250px;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-content {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.gallery-category {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary-orange);
    letter-spacing: 1px;
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --- Alert Custom --- */
.alert-custom {
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: flex;
    align-items: center;
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Footer --- */
footer {
    background-color: #111;
    color: #888;
    padding: 80px 0 30px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

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

    .navbar {
        background: #fff;
        padding: 10px 0;
    }

    .navbar-brand img {
        height: 50px;
    }

    .nav-link {
        color: var(--dark-text) !important;
    }
}

/* Testimonial Section */
.testimonial-section {
    background: var(--warm-white);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    position: relative;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: white;
}

.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-indicator .mouse::before {
    content: "";
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        top: 8px;
    }

    50% {
        opacity: 0;
        top: 18px;
    }
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.section-header .divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right,
        var(--primary-color),
        var(--accent-color));
    margin: 0 auto;
    border-radius: 3px;
}

.testimonial-card::before {
    content: '"';
    font-family: "Georgia", serif;
    font-size: 8rem;
    color: #fff5f0;
    position: absolute;
    top: 10px;
    left: 30px;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h6 {
    font-size: 1rem;
    color: var(--dark-brown);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--primary-color);
}

.testimonial-stars {
    color: #ffb800;
    margin-top: 10px;
}

/* Map */
.map-section {
    height: 400px;
    filter: grayscale(20%);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.lang-switch a.active,
.lang-switch a:hover {
    background-color: #ff8c00;
    color: white !important;
}

.navbar.scrolled .nav-item a {
    color: #2c3e50;
}

.lang-switch a {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

@media (max-width: 991px) {
    .flip-card {
        background-color: transparent;
        width: 100%;
        height: 225px;
        perspective: 1000px;
        margin-bottom: 20px;
    }
}

/* ─── Top Info Bar ─────────────────────────────────── */
.info-bar {
    background: #f2f2f2;
    border-bottom: 1px solid #e0e0e0;
    padding: 22px 0;
}

.info-bar .info-block {
    padding: 0 30px;
}

.info-bar .info-block:not(:last-child) {
    border-right: 1px solid #d5d5d5;
}

.info-label {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    color: #999;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
    font-weight: 400;
}

.info-value {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #444;
    font-weight: 700;
    display: block;
}

/* Carousel */
.room-carousel {
    position: relative;
}

.room-carousel img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

/* Title */
.room-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    margin: 2.5rem 0 0.5rem;
}

.title-divider {
    width: 50px;
    border-top: 2px solid #333;
    margin: 0.5rem auto 2.5rem;
}

/* Features */
.section-label {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.feature-item svg {
    width: 20px;
    height: 20px;
    stroke: #555;
    fill: none;
    flex-shrink: 0;
}

/* Description */
.desc-label {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 1rem;
}

.desc-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.children-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 1rem;
}

.children-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.children-list li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.6;
}

.children-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #888;
    font-size: 0.75rem;
    top: 2px;
}

.children-list li strong {
    color: #333;
}

/* Button */
.btn-book {
    background-color: #f88c05;
    color: #fff;
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    transition: background 0.3s;
    border-radius: 0;
}

.btn-book:hover {
    background-color: #a08c60;
    color: #fff;
}

.divider-vertical {
    border-left: 1px solid #e0e0e0;
}

.features-col {
    padding-right: 2.5rem;
}

.desc-col {
    padding-left: 2.5rem;
}

@media (max-width: 767px) {
    .divider-vertical {
        border-left: none;
        border-top: 1px solid #e0e0e0;
        padding-top: 1.5rem;
    }

    .features-col {
        padding-right: 1rem;
    }

    .desc-col {
        padding-left: 1rem;
    }
}

/* ─── Social Icons ─────────────────────────────────── */
.follow-label {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    letter-spacing: 2.5px;
    color: #999;
    text-transform: uppercase;
    font-weight: 400;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #c5c5c5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-icon:hover {
    background: #1d2a5a;
    border-color: #1d2a5a;
    color: #fff;
    transform: translateY(-2px);
}

/* ─── Newsletter Section ───────────────────────────── */
.newsletter-section {
    background: #f2f2f2;
    padding: 50px 0 40px;
}

.newsletter-heading {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    color: #555;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: 22px;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border: 1.5px solid #c8c8c8;
    background: #fff;
}

.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #888;
    background: transparent;
    letter-spacing: 0.5px;
}

.newsletter-form input::placeholder {
    color: #b0b0b0;
}

.newsletter-form button {
    background: #1d2a5a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    letter-spacing: 2.5px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease;
}

.newsletter-form button:hover {
    background: #111d42;
}

/* ─── Brand / Logo ─────────────────────────────────── */
.brand-section {
    padding: 32px 0 40px;
    text-align: center;
    background-color: #f2f2f2;
}

.brand-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 4px;
}

.brand-rule-line {
    width: 60px;
    height: 1px;
    background: #aaa;
}

.brand-the {
    font-family: 'Lato', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: #888;
    text-transform: uppercase;
    font-weight: 400;
}

.brand-name {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 12px;
    color: #2a2a2a;
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.brand-sub {
    font-family: 'Lato', sans-serif;
    font-size: 9px;
    letter-spacing: 5px;
    color: #999;
    text-transform: uppercase;
    font-weight: 400;
}

/* ─── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
    .info-bar .info-block {
        border-right: none !important;
        border-bottom: 1px solid #e0e0e0;
        padding: 14px 16px;
        text-align: center;
    }

    .social-follow-wrap {
        justify-content: center;
        padding: 16px 0;
    }

    .brand-name {
        font-size: 36px;
        letter-spacing: 8px;
    }
}

/* ─── Outer wrapper: fills viewport ───────────────── */
.hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* ─── Single full-bleed background image ──────────── */
.bg-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(40%) saturate(1.2) brightness(0.75);
}

/* dark overlay + vignette */
.bg-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 90% at 50% 50%,
        rgba(5, 3, 1, 0.10) 0%,
        rgba(5, 3, 1, 0.55) 100%),
        linear-gradient(180deg,
        rgba(8, 5, 1, 0.25) 0%,
        rgba(8, 5, 1, 0.35) 100%);
}

/* ─── Contact card: centred over bg ───────────────── */
.contact-card {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 4rem 1rem;
}

.card-inner {
    width: 100%;
    max-width: 400px;
    padding: 3rem 2.6rem;
    background: linear-gradient(175deg, rgba(140, 108, 45, 0.42) 0%, rgb(248 140 5 / 47%) 55%, rgba(80, 55, 10, 0.48) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(201, 168, 76, 0.28);
    box-shadow:
        0 0 60px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(201, 168, 76, 0.15);
}

/* top rule */
.card-rule {
    width: 36px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 2rem;
    opacity: 0.85;
}

/* ─── Info rows ───────────────────────────────────── */
.info-row {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    margin-bottom: 0.55rem;
}




/* ─── Divider ─────────────────────────────────────── */
.info-divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(201, 168, 76, 0.28);
    margin: 1.6rem 0;
}

/* ─── Form fields ─────────────────────────────────── */
.field {
    margin-bottom: 0.8rem;
}

.field input,
.field textarea {
    width: 100%;
    background: transparent;
    border: 1.5px solid rgba(201, 168, 76, 0.50);
    border-radius: 0;
    padding: 0.70rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.60rem;
    font-weight: 600;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    color: #fff;
    outline: none;
    resize: none;
    transition: border-color 0.3s, background 0.3s;
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.50);
    letter-spacing: 0.18em;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.07);
}

.field textarea {
    height: 108px;
}

/* ─── Submit button ───────────────────────────────── */
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    padding: 0.72rem 2.2rem;
    background: rgba(255, 255, 255, 0.88);
    color: var(--dark);
    border: none;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s, color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background: var(--gold);
    color: #fff;
    transform: translateY(-2px);
}

.btn-submit i {
    font-size: 0.78rem;
}

/* ─── Responsive ──────────────────────────────────── */
@media (max-width: 640px) {
    .card-inner {
        padding: 2.4rem 1.6rem;
    }
}
