:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f9f9f9;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --accent: #d4af37;
    /* Very subtle gold */
    --border-light: #ececec;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
}

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

.logo img {
    height: 40px;
    width: auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.logo .logo-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 4px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1;
}

.logo .logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-top: 4px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.main-nav a:hover {
    color: var(--accent);
}

/* Language Dropdown Styling */
.main-nav .language-dropdown {
    position: relative;
    padding: 10px 0;
    /* Increase hover area so dropdown doesn't close easily */
}

.main-nav .dropdown-content {
    display: none;
    /* Hide by default */
    position: absolute;
    flex-direction: column;
    gap: 0;
    background-color: #fff;
    min-width: 80px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 0;
    border-radius: 6px;
    z-index: 1000;
}

.main-nav .language-dropdown:hover .dropdown-content {
    display: flex;
    /* Show on hover */
}

.main-nav .dropdown-content li {
    width: 100%;
}

.main-nav .dropdown-content a {
    padding: 10px 16px;
    display: block;
    text-align: center;
    font-size: 0.85rem;
}

.main-nav .dropdown-content a:hover {
    background-color: var(--bg-secondary);
    color: var(--accent);
}

.btn-primary {
    background-color: #d8c3a5;
    /* warm beige/gold */
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #c4ae8e;
}

/* Hero Split Layout */
.hero-split {
    display: flex;
    height: 100vh;
    padding-top: 80px;
    /* offset header */
}

.hero-panel {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-left,
.hero-right {
    flex: 1.2;
}

.hero-content {
    flex: 1.5;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 4rem;
    text-align: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.hero-img {
    position: relative;
    background: #f0f0f0;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    /* Slightly darken for text readability */
    transition: transform 10s ease;
}

/* Background Videos */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-video.active {
    opacity: 1;
    z-index: 2;
}

.hero-img:hover img {
    transform: scale(1.05);
    /* very subtle pan effect */
}

/* Typography styles within Hero Content */
.subtitle-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.subtitle-icon p {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    color: #1a1a1a;
}

.hero-content h1 span {
    display: block;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.hero-content .description {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

/* Icons Row */
.features-icons {
    display: flex;
    gap: 40px;
    margin-bottom: 4rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.icon-item svg {
    color: var(--text-secondary);
}

.icon-item span {
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.scroll-indicator {
    margin-top: auto;
    /* push to bottom */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--text-primary);
}

.circle-btn span {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.circle-btn:hover {
    border-color: var(--text-primary);
}

/* Homepage Search Bar Styles */
.home-search-bar {
    margin-top: 3rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.quick-booking-form {
    display: flex;
    align-items: flex-end; /* Align to labels/bottom */
    justify-content: space-between;
    gap: 10px;
}

.search-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 0 15px;
    border-right: 1px solid var(--border-light);
}

.search-group:nth-last-child(2) {
    border-right: none;
}

.search-group label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.search-group input,
.search-group select {
    border: 1px solid var(--border-light);
    background: #fff;
    padding: 0 15px;
    height: 48px;
    line-height: 48px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none; 
    box-sizing: border-box;
}

.search-group input[type="date"] {
    line-height: normal;
    display: flex;
    align-items: center;
}

.search-group input:hover,
.search-group select:hover {
    border-color: #bbb;
}

.search-group input:focus,
.search-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-search-go {
    background-color: var(--accent);
    color: #fff;
    border: none;
    width: 60px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
    margin-top: 2px; /* Dengeleme için */
}

.btn-search-go:hover {
    background-color: #c4ae8e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .home-search-bar {
        border-radius: 20px;
        padding: 20px;
    }

    .quick-booking-form {
        flex-direction: column;
        align-items: stretch;
    }

    .search-group {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 10px 0;
    }

    .btn-search-go {
        width: 100%;
        border-radius: 8px;
        margin-top: 10px;
    }
}

/* About Section */
.about-section {
    padding: 6rem 4%;
    background-color: var(--bg-primary);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-title {
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Rooms Section */
.rooms-section {
    padding: 6rem 4%;
    background-color: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.room-card {
    background: #fff;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* For absolutely positioning video */
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.room-card img,
.room-card video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-bottom: 1px solid var(--border-light);
    transition: opacity 0.5s ease;
}

.video-hover-card img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.video-hover-card video {
    position: relative;
    z-index: 1;
    opacity: 0;
}

.video-hover-card:hover img {
    opacity: 0;
}

.video-hover-card:hover video {
    opacity: 1;
}

.room-info {
    padding: 2rem;
    text-align: center;
}

.room-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.inline-link {
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid transparent;
}

.inline-link:hover {
    border-bottom-color: var(--accent);
}

/* Footer Element */
.site-footer {
    padding: 6rem 4%;
    background: linear-gradient(135deg, #0a9396 0%, #005f73 100%);
    color: #fff;
    border-top: 1px solid #10808a;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-family: var(--font-heading);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    color: #c9e4e6;
    font-size: 0.9rem;
}

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

.social-links a {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #10808a;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent);
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.footer-links {
    flex: 2;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item strong {
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.contact-item a,
.contact-item p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.85rem;
    color: #c9e4e6;
    padding-top: 2rem;
    border-top: 1px solid #10808a;
    text-align: center;
}

.footer-bottom {
    font-size: 0.85rem;
    color: #c9e4e6;
    padding-top: 2rem;
    border-top: 1px solid #10808a;
    text-align: center;
    width: 100%;
}

/* Responsive constraints */
@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        height: auto;
    }

    .hero-panel {
        flex: none;
    }

    .hero-content {
        padding: 4rem 2rem;
    }

    .hero-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
        /* simple hidden for mobile for now */
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------
   Activities & Why Sarkoy Sections 
------------------------------------- */

.activity-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.activity-card img {
    border-radius: 8px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 10px;
}

.activity-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-primary);
}

.activity-card p {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Why Sarkoy Section */
.why-sarkoy-section {
    padding: 6rem 4%;
    background-color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-col-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-title {
    font-family: var(--font-body);
    font-size: 2rem;
    font-weight: 300;
    color: #f1f2f6;
    /* Very light grey/white as in design for background effect, but will use dark for text */
    color: #e6e6e6;
}

.why-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    border-left: 2px solid #e0e0e0;
    padding-left: 1.5rem;
    font-weight: 500;
}

.btn-whatsapp {
    background-color: #25D366;
    /* WhatsApp Green */
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: fit-content;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.why-col-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.why-col-list {
    display: flex;
    flex-direction: column;
}

.why-list-item {
    border-bottom: 1px solid #eee;
    padding: 1.5rem 0;
}

.why-list-item:last-child {
    border-bottom: none;
}

.why-num {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: block;
}

.why-list-item h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-list-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .why-title {
        color: var(--text-primary);
        font-size: 2.5rem;
    }
}

/* -------------------------------------
   Gallery Section
------------------------------------- */

.gallery-section {
    padding: 6rem 4%;
    background-color: var(--bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    aspect-ratio: 4 / 3;
}

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

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

.gallery-pagination {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 8px;
    grid-column: 1 / -1;
}

.btn-page {
    padding: 8px 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.btn-page:hover:not(:disabled) {
    background: var(--bg-hover);
    border-color: #bbb;
}

.btn-page.active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-page:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* -------------------------------------
   Reservation Page Styles
------------------------------------- */

.reservation-page {
    background-color: var(--bg-primary);
}

/* Booking Widget */
.booking-widget-container {
    max-width: 900px;
    margin: 0 auto 4rem;
    background: #fbfbfb;
    border: 1px solid #eaeaea;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
}

.booking-widget-header {
    background: #f4f5f7;
    padding: 1.5rem;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #eaeaea;
}

.booking-widget-header h2 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
}

.language-currency {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: #d32f2f;
    font-weight: 600;
    padding: 5px 10px;
    background: rgba(211, 47, 47, 0.1);
    border-radius: 3px;
}

.booking-form {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    color: #555;
    font-weight: 500;
}

.form-group .sub-label {
    font-size: 0.7rem;
    color: #888;
    margin-top: -5px;
}

.input-wrapper input,
.guest-selectors select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #333;
    background: #fff;
}

.input-wrapper input:focus,
.guest-selectors select:focus {
    outline: none;
    border-color: #d32f2f;
}

.guest-selectors {
    display: flex;
    gap: 10px;
}

.full-width {
    width: 100%;
}

.add-room-link {
    font-size: 0.8rem;
    color: #d32f2f;
    font-weight: 600;
    margin-top: 5px;
    align-self: flex-start;
}

.add-room-link:hover {
    text-decoration: underline;
}

.action-row {
    flex-direction: column;
    gap: 1rem;
    border-top: 1px solid #eaeaea;
    padding-top: 1.5rem;
}

.promo-code {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #555;
}

.btn-check-availability {
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-check-availability:hover {
    background: #b71c1c;
}

/* SEO Text Section */
.seo-text-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.seo-heading-container {
    margin-bottom: 2rem;
}

.cursive-heading {
    font-family: 'Great Vibes', cursive;
    font-size: 3.5rem;
    color: #d32f2f;
    margin-bottom: 10px;
    font-weight: 400;
}

.underline-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.underline-decoration .line {
    height: 1px;
    width: 50px;
    background-color: #d32f2f;
}

.underline-decoration .dot {
    width: 6px;
    height: 6px;
    background-color: #d32f2f;
    border-radius: 50%;
}

.seo-subheading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 2rem;
}

.seo-content {
    text-align: left;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

.seo-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .guest-selectors {
        flex-direction: column;
    }

    .language-currency {
        position: static;
        transform: none;
        display: inline-flex;
        margin-bottom: 10px;
    }
}

/* -------------------------------------
   Room Search Results Styles
------------------------------------- */

.room-search-results {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 4%;
    animation: fadeIn 0.5s ease-out;
}

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

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

.results-header-area {
    text-align: center;
    margin-bottom: 2rem;
}

.results-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.red-line-container {
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    position: relative;
}

.red-line {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    background: #d32f2f;
}

/* Trust Banner */
.trust-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fbff;
    border: 1px solid #e0ebf9;
    padding: 1.5rem 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.trust-left {
    background: #eef5fc;
    padding: 10px 20px;
    border-radius: 20px;
}

.trust-heading {
    font-weight: 600;
    color: #4a6fa5;
    line-height: 1.2;
    font-size: 1.1rem;
}

.trust-middle {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #555;
}

.check-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background: #aaccff;
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
}

.trust-right {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.best-price-badge {
    background: #fce8e8;
    color: #d32f2f;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 2px;
    margin-bottom: 5px;
}

.best-price-value {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: #333;
}

/* Filters */
.results-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eaeaea;
}

.filter-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #d32f2f;
    border-radius: 20px;
    color: #d32f2f;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: #fffafa;
}

.dropdown-btn svg {
    margin-top: 2px;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-card {
    border: 1px solid #eaeaea;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.result-image-wrapper {
    position: relative;
    height: 220px;
}

.result-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-best-seller {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(80, 110, 160, 0.9);
    color: #fff;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-radius: 2px;
    z-index: 2;
}

.icons-top-right {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 8px;
    border-radius: 15px;
}

.icons-top-right span {
    font-size: 0.9rem;
    color: #555;
}

.slider-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.slider-dots span {
    width: 30px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
}

.slider-dots span.active {
    background: #fff;
}

.result-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.result-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.result-card-header .result-room-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #d32f2f;
    margin: 0;
}

.collapse-icon {
    background: none;
    border: 1px solid #d32f2f;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d32f2f;
    cursor: pointer;
}

.room-capacity-info {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.price-section {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: right;
    border: 1px solid #eaeaea;
    flex: 1;
    /* Pushes button to bottom */
}

.sold-out-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.sold-out-msg {
    color: #888;
    font-size: 1.1rem;
}

.member-price {
    font-size: 0.85rem;
    color: #4a6fa5;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.discount-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.discount-badge {
    background: #4a6fa5;
    color: #fff;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 2px;
}

.old-price {
    font-size: 0.9rem;
    color: #888;
}

.current-price {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #333;
    line-height: 1;
    margin-bottom: 5px;
}

.current-price span {
    font-size: 0.9rem;
    color: #666;
    font-family: var(--font-body);
}

.price-desc {
    font-size: 0.8rem;
    color: #777;
}

.btn-select-room {
    display: block;
    width: 100%;
    padding: 12px;
    background: #d32f2f;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    border-radius: 2px;
}

.btn-select-room:hover {
    background: #b71c1c;
}

.btn-available-dates {
    display: block;
    width: 100%;
    padding: 12px;
    background: #fce8e8;
    color: #d32f2f;
    border: none;
    text-align: center;
    font-weight: 500;
    cursor: pointer;
    border-radius: 2px;
}

@media (max-width: 992px) {
    .trust-banner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .trust-middle {
        flex-direction: column;
        gap: 10px;
    }

    .trust-right {
        text-align: center;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------
   Price Plan Selection Styles
------------------------------------- */

.price-plan-selection {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 4%;
    animation: fadeIn 0.4s ease-out;
}

.plan-header-area {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.back-to-rooms-btn {
    background: none;
    border: none;
    color: #d32f2f;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: absolute;
    left: 0;
    z-index: 10;
}

.plan-title-container {
    flex: 1;
    text-align: center;
    position: relative;
}

.plan-title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.5rem;
    color: #444;
}

.red-line-full {
    position: absolute;
    bottom: -1rem;
    left: 0;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
}

.red-line-full::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 30%;
    background: #d32f2f;
}

.selected-room-summary {
    background: #fff;
    border: 1px solid #eaeaea;
    margin-bottom: 2rem;
}

.summary-top {
    display: flex;
    padding: 1.5rem;
    gap: 2rem;
    border-bottom: 1px solid #eaeaea;
}

.selected-room-summary .img-container {
    width: 200px;
    height: 150px;
    position: relative;
    flex-shrink: 0;
}

.selected-room-summary .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-count {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.75rem;
    padding: 4px 8px;
}

.room-details-summary {
    flex: 1;
}

.room-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.room-header-row .room-name {
    font-family: var(--font-heading);
    color: #d32f2f;
    font-size: 1.6rem;
    margin: 0;
}

.btn-more-info {
    background: #fff;
    border: 1px solid #d32f2f;
    color: #d32f2f;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.room-details-summary .room-capacity {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.room-amenities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.room-amenities-tags .tag {
    background: #f4f5f7;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 0.85rem;
    color: #555;
    border: 1px solid #eaeaea;
}

.summary-bottom {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fdfdfd;
}

.bed-label {
    font-size: 0.9rem;
    color: #333;
}

.bed-option {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 0.85rem;
    color: #d32f2f;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bed-option.active {
    border-color: #d32f2f;
    background: #fffafa;
}

.bed-disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-left: auto;
}

/* Price Plans Loop */
.price-plans-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-plan-card {
    display: flex;
    border: 1px solid #eaeaea;
    background: #fff;
    overflow: hidden;
}

.plan-info {
    flex: 2;
    padding: 2rem;
    border-right: 1px dotted #ccc;
}

.plan-name {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: #d32f2f;
    margin-bottom: 1rem;
    font-weight: 500;
}

.plan-name .more-link {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
    margin-left: 10px;
    cursor: pointer;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.plan-features li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.included-features {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 3px;
}

.plan-action {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fcfcfc;
}

.plan-price-info {
    text-align: right;
    margin-bottom: 1.5rem;
}

.price-context {
    font-size: 0.9rem;
    color: #555;
    display: block;
    margin-bottom: 10px;
}

.plan-action .member-perk {
    font-size: 0.9rem;
    color: #4a6fa5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-bottom: 8px;
}

.plan-action .discount-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.plan-action .discount-badge {
    background: #4a6fa5;
    color: #fff;
    padding: 3px 8px;
    border-radius: 2px;
    font-size: 0.85rem;
}

.final-price {
    font-size: 1.4rem;
    color: #d32f2f;
    font-weight: 600;
}

.btn-select-plan {
    display: block;
    width: 100%;
    padding: 15px;
    background: #d32f2f;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: background 0.3s;
}

.btn-select-plan:hover {
    background: #b71c1c;
}

@media (max-width: 992px) {
    .price-plan-card {
        flex-direction: column;
    }

    .plan-info {
        border-right: none;
        border-bottom: 1px dotted #ccc;
    }
}

@media (max-width: 768px) {
    .summary-top {
        flex-direction: column;
    }

    .selected-room-summary .img-container {
        width: 100%;
        height: 200px;
    }

    .summary-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .bed-disclaimer {
        margin-left: 0;
        margin-top: 10px;
    }

    .plan-header-area {
        flex-direction: column;
        gap: 20px;
    }

    .back-to-rooms-btn {
        position: static;
    }
}

/* -------------------------------------
   Checkout Section Styles
------------------------------------- */

.checkout-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 4%;
    animation: fadeIn 0.4s ease-out;
}

.checkout-header-area {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.back-to-plans-btn {
    background: none;
    border: none;
    color: #d32f2f;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: absolute;
    left: 0;
    z-index: 10;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Left Column Cards */
.checkout-card {
    background: #fff;
    border: 1px solid #eaeaea;
    margin-bottom: 2rem;
}

.checkout-card .card-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: #333;
    padding: 1.5rem;
    margin: 0;
    font-weight: 400;
    border-bottom: 1px solid #eaeaea;
}

.checkout-card .card-content {
    padding: 1.5rem;
}

.booking-for-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.group-label {
    font-size: 0.95rem;
    color: #444;
}

.btn-group {
    display: flex;
    border: 1px solid #d32f2f;
    border-radius: 2px;
    overflow: hidden;
}

.btn-group .toggle-btn {
    background: #fff;
    color: #d32f2f;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-group .toggle-btn.active {
    background: #fce8e8;
}

.helper-text {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.checkout-card input[type="text"],
.checkout-card input[type="tel"],
.checkout-card input[type="email"],
.checkout-card .custom-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #333;
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.checkout-card input:focus,
.checkout-card textarea:focus,
.checkout-card .custom-select:focus {
    border-color: #d32f2f;
}

.checkout-card textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
    resize: vertical;
    font-family: var(--font-body);
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon svg {
    position: absolute;
    left: 10px;
}

.input-with-icon input {
    padding-left: 35px;
}

.country-select .flag {
    position: absolute;
    left: 10px;
    font-size: 1.2rem;
    pointer-events: none;
}

.country-select select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #ddd;
    border-radius: 2px;
    appearance: none;
    background: #fff url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23d32f2f" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l6 6 6-6"></path></svg>') no-repeat right 10px center;
    background-size: 12px;
    cursor: pointer;
}

.checkbox-group {
    margin-bottom: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #d32f2f;
    margin-top: 2px;
}

.checkbox-label a {
    color: #d32f2f;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.section-title {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.policy-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    margin-bottom: 15px;
}

.payment-guarantee-box {
    border: 1px solid #f4c2c2;
    background: #fffafa;
    padding: 15px;
    border-radius: 2px;
}

.payment-guarantee-box .box-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.payment-guarantee-box p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

.payment-guarantee-box a {
    color: #d32f2f;
    text-decoration: none;
}

/* Right Sidebar */
.sidebar-card {
    background: #fff;
    border: 1px solid #eaeaea;
    position: sticky;
    top: 20px;
}

.sidebar-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: #333;
    padding: 1.2rem;
    margin: 0;
    border-bottom: 1px solid #eaeaea;
}

.sidebar-section {
    padding: 1.2rem;
    border-bottom: 1px solid #eaeaea;
}

.date-section {
    background: #fdf5f5;
    padding: 1rem 1.2rem;
}

.nights-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.date-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.date-col {
    flex: 1;
}

.date-day {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.date-sub {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.3;
}

.date-separator {
    color: #888;
    font-weight: 300;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.room-section {
    background: #fdf5f5;
}

.room-section .label {
    font-size: 0.9rem;
    color: #333;
}

.sidebar-room-name {
    color: #d32f2f;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 2px;
}

.arr-up {
    font-size: 0.8rem;
    margin-left: 2px;
}

.sidebar-plan-name {
    font-size: 0.85rem;
}

.services-list-container strong {
    font-size: 0.9rem;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 5px;
}

.member-signup-prompt {
    text-align: right;
    margin-bottom: 10px;
}

.member-signup-prompt a {
    display: inline-block;
    background: #eef5fc;
    color: #4a6fa5;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 500;
}

.total-row {
    font-size: 1.1rem;
    color: #333;
}

.pay-now-row {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 5px;
}

.due-row {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-confirm-booking {
    display: block;
    width: 100%;
    padding: 14px;
    background: #d32f2f;
    color: #fff;
    text-align: center;
    border: none;
    font-size: 1.05rem;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-confirm-booking:hover {
    background: #b71c1c;
}

.sidebar-footer {
    padding: 15px;
    background: #fdf5f5;
    text-align: center;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-header-area {
        flex-direction: column;
        gap: 20px;
    }

    .back-to-plans-btn {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .booking-for-group {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

/* Booking Engine Widgets */
.reviews-widget-section {
    padding: 6rem 4%;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
}

.reviews-widget-container {
    max-width: 1200px;
    margin: 0 auto;
    transition: opacity 0.5s ease;
}

#be-reputation-widget {
    min-height: 80px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-reputation {
    margin-bottom: 2rem;
    max-width: 300px;
    opacity: 0.9;
}

.footer-reputation:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .reviews-widget-section {
        padding: 4rem 4%;
    }
    
    .footer-reputation {
        margin: 0 auto 2rem; /* Center on mobile */
    }
    
    #be-reputation-widget {
        display: flex;
        justify-content: center;
    }
}