
/* Rezervasyon Modülü */
.hotel-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 80px;
}

.hero-left {
    flex: 1;
    padding-right: 40px;
}

.hero-heading-wrapper {
    margin-bottom: 60px;
    font-family: 'Marcellus', serif;
    font-weight: 400;
    line-height: 1.1;
    color: #fff;
}

.heading-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
}

.heading-text {
    font-size: 85px;
    text-transform: uppercase;
    white-space: nowrap;
}

.img-pill-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 160px;
    height: 75px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    padding: 0;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
}

.img-pill-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
}

.pill-badge {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.pill-badge .material-symbols-outlined {
    color: #c17d54;
    font-size: 24px;
}

.video-info-box {
    background-color: rgba(42, 34, 30, 0.9);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 580px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.video-thumbnail-box {
    position: relative;
    width: 170px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-thumbnail-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.play-trigger:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-trigger .material-symbols-outlined {
    color: #c17d54;
    font-size: 28px;
}

.video-details h3 {
    font-family: 'Marcellus', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #fff;
}

.video-details p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    margin: 0;
}

.hero-right {
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 30px;
}

.feature-nav-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
    margin-right: 20px; 
}

.feature-icon-group {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px; 
}

.f-circle-icon {
    width: 55px;
    height: 55px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    position: relative;
    margin: 0 -8px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

.f-circle-icon .material-symbols-outlined {
    color: #333;
    font-size: 24px;
}

.f-circle-icon.center-icon {
    width: 75px;
    height: 75px;
    background-color: #c17d54; 
    z-index: 10;
    margin: 0 -8px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.f-circle-icon.center-icon .material-symbols-outlined {
    color: #fff;
    font-size: 32px;
}

.feature-nav-text {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.booking-widget-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 20px;
    width: 75%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    margin-right: 70px;
    margin-bottom: 15px;
}

.widget-title {
    font-family: 'Marcellus', serif;
    font-size: 32px;
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-weight: 400;
}

.form-grid-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-col {
    flex: 1;
}

.form-col label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #000;
    letter-spacing: 0.5px;
}

.field-wrap {
    position: relative;
    background-color: #f3f3f3;
    border-radius: 30px;
}

.field-wrap input,
.field-wrap select {
    width: 100%;
    background: transparent;
    border: none;
    padding: 14px 40px 14px 20px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    color: #555;
    outline: none;
    appearance: none;
    cursor: pointer;
}

.field-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
    pointer-events: none;
}

.hero-submit-btn {
    width: 100%;
    background-color: #c17d54;
    color: #fff;
    border: none;
    padding: 8px 8px 8px 30px;
    border-radius: 50px;
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
    transition: background 0.3s;
}

.hero-submit-btn:hover {
    background-color: #a6633d;
}

.btn-icon-circle {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-circle .material-symbols-outlined {
    color: #c17d54;
    font-weight: bold;
    font-size: 20px;
}

.hero-scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 50%;
    transform: translateY(50%) rotate(90deg);
    transform-origin: right center;
    color: #fff;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 20;
}

@media (max-width: 1200px) {
    .heading-text {
        font-size: 60px;
    }
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 100px;
        gap: 50px;
    }

    .hero-left {
        width: 100%;
        padding-right: 0;
    }

    .hero-right {
        width: 100%;
        align-items: center;
    }

    .feature-nav-wrapper {
        margin-right: 0;
    }

    .video-info-box {
        width: 100%;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 600px) {
    .heading-text {
        font-size: 40px;
    }
    
    .img-pill-container {
        width: 100px;
        height: 50px;
    }
    
    .pill-badge {
        width: 30px;
        height: 30px;
        right: -5px;
    }
    
    .pill-badge .material-symbols-outlined {
        font-size: 16px;
    }

    .video-info-box {
        flex-direction: column;
        text-align: center;
    }

    .video-thumbnail-box {
        width: 100%;
        height: 180px;
    }

    .booking-widget-card {
        padding: 25px;
    }

    .form-grid-row {
        flex-direction: row;
        gap: 15px;
    }
    .booking-widget-card {
    width: 85%;
    margin-right: 0px;
    margin-bottom: 25px;
}
}
/* Home About Module */
.about-section {
    padding: 100px 0;
    background-color: #fff;
    overflow: hidden;
}

/* Boxed Container: Yanlardan boşluk bırakır */
.container-boxed {
    max-width: 1140px; /* Standarttan daha dar, görseldeki gibi */
    margin: 0 auto;
    padding: 0 15px;
}

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

.section-header {
    margin-bottom: 70px;
}

.section-subtitle {
    font-family: 'Jost', sans-serif;
    color: #c17d54;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: 'Marcellus', serif;
    font-size: 48px;
    color: #333;
    line-height: 1.25;
    font-weight: 400;
}

/* Grid Yapısı */
.about-grid {
    display: grid;
    grid-template-columns: 320px 1fr 320px; /* Resimler sabit, orta esnek */
    gap: 50px;
    align-items: center; /* Dikeyde ortala */
}

/* Resim Çerçeveleri */
.about-col-image {
    position: relative;
}

.image-frame {
    width: 100%;
    height: 420px; /* İki resim için de sabit eşit yükseklik */
    border-radius: 20px;
    overflow: hidden;
}

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

/* Orta İçerik */
.about-col-content {
    padding: 0 10px;
}

.about-desc {
    font-family: 'Jost', sans-serif;
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: 'Jost', sans-serif;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

.check-icon {
    color: #c17d54;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.about-divider {
    width: 100%;
    height: 1px;
    background-color: #eaeaea;
    margin: 35px 0;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Marcellus', serif;
    font-size: 42px;
    color: #222;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    color: #777;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-separator {
    width: 1px;
    height: 50px;
    background-color: #eaeaea;
}

/* Sağ Sütun Özel (Badge için) */
.right-image-col {
    position: relative;
}

.rotating-badge {
    position: absolute;
    bottom: -35px;
    left: -45px;
    width: 130px;
    height: 130px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.badge-content {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotateText 20s linear infinite;
}

.badge-content svg {
    width: 100%;
    height: 100%;
}

.badge-content text {
    fill: #333;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.badge-star {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c17d54;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-star .material-symbols-outlined {
    font-size: 32px;
}

@keyframes rotateText {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive (Mobil & Tablet) */
@media (max-width: 1200px) {
    .container-boxed {
        max-width: 960px;
    }
    
    .about-grid {
        gap: 30px;
        grid-template-columns: 1fr 1.2fr 1fr;
    }
    
    .image-frame {
        height: 350px; /* Tablette biraz daha kısa */
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 40px;
    }

    /* Mobilde Sıralama: 1.Havuz -> 2.İçerik -> 3.Resepsiyonist */
    .about-col-image:first-child {
        order: 1;
    }

    .about-col-content {
        order: 2;
        padding: 0 20px;
    }

    .right-image-col {
        order: 3;
    }

    .image-frame {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .rotating-badge {
        width: 100px;
        height: 100px;
        left: 20px; 
        bottom: -20px;
    }
}
/* Home Why Module */
.why-safar-section {
    padding: 100px 0;
    background-color: #fcf9f4;
    font-family: 'Jost', sans-serif;
}

.container-boxed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.safar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 30px;
    align-items: start;
}

.title-area {
    grid-column: 1 / span 2;
    padding-right: 50px;
}

.section-subtitle {
    font-family: 'Jost', sans-serif;
    color: #c17d54;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.section-title {
    font-family: 'Marcellus', serif;
    font-size: 48px;
    color: #222;
    line-height: 1.2;
    font-weight: 400;
}

.card-white {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.card-white:hover {
    transform: translateY(-5px);
}

.card-brown {
    background: #c17d54;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 10px 30px rgba(193, 125, 84, 0.3);
    transition: transform 0.3s;
}

.card-brown:hover {
    transform: translateY(-5px);
}

.card-bg-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: 'Marcellus', serif;
    font-size: 60px;
    color: rgba(0,0,0,0.05);
    pointer-events: none;
}

.card-brown .card-bg-number {
    color: rgba(255,255,255,0.1);
}

.card-icon {
    margin-bottom: 25px;
}

.card-icon .material-symbols-outlined {
    font-size: 40px;
    color: #c17d54;
    font-weight: 200; 
}

.card-brown .card-icon .material-symbols-outlined {
    color: #fff;
}

.card-white h3, .card-brown h3 {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 400;
}

.card-white h3 { color: #222; }
.card-brown h3 { color: #fff; }

.card-white p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-brown p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
}

.card-white .read-more { color: #222; }
.card-brown .read-more { color: #fff; }

.read-more .material-symbols-outlined {
    font-size: 14px;
    font-weight: 600;
}

.explorer-area {
    padding-top: 20px;
}

.avatar-row {
    display: flex;
    margin-bottom: 20px;
}

.avatar-row img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fcf9f4;
    margin-right: -10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.explorer-text {
    font-family: 'Marcellus', serif;
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}

.image-circle {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-frame {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    max-width: 300px;
}

.circle-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashed-border {
    padding: 10px;
    border: 1px dashed #dcdcdc;
    background-clip: content-box; 
}

.card-01 { grid-column: 3; grid-row: 1; }
.explorer-area { grid-column: 1; grid-row: 2; align-self: center; }
.card-02 { grid-column: 2; grid-row: 2; }
.img-01 { grid-column: 3; grid-row: 2; }
.card-03 { grid-column: 1; grid-row: 3; }
.img-02 { grid-column: 2; grid-row: 3; }
.card-04 { grid-column: 3; grid-row: 3; }

@media (max-width: 1024px) {
    .safar-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .title-area { grid-column: 1 / -1; margin-bottom: 20px; }
    .card-01 { grid-column: 2; grid-row: 2; }
    .explorer-area { grid-column: 1; grid-row: 2; }
    .card-02 { grid-column: 1; grid-row: 3; }
    .img-01 { grid-column: 2; grid-row: 3; }
    .card-03 { grid-column: 1; grid-row: 4; }
    .img-02 { grid-column: 2; grid-row: 4; }
    .card-04 { grid-column: 1; grid-row: 5; }
}

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

    .title-area, .card-01, .explorer-area, .card-02, .img-01, .card-03, .img-02, .card-04 {
        grid-column: 1;
        grid-row: auto;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .image-circle {
        margin: 20px 0;
    }
}
/* Restourant Section  Module */
.restaurant-section {
    padding: 100px 0;
    background-color: #fff;
    font-family: 'Jost', sans-serif;
}

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

.restaurant-subtitle {
    display: block;
    font-size: 13px;
    color: #c77a53;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.restaurant-title {
    font-family: 'Marcellus', serif;
    font-size: 42px;
    font-weight: 400;
    color: #222;
    line-height: 1.3;
}

.restaurant-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

.collage-wrapper {
    flex: 1;
    min-width: 350px;
    max-width: 600px;
}

.main-image-container {
    position: relative;
    border-radius: 20px;
}

.main-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.floating-badges {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge {
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.badge .material-symbols-outlined {
    color: #c77a53;
    font-size: 20px;
}

.badge-text {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.info-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #fffafa;
    padding: 40px 30px;
    width: 280px;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    top: 150px;
}

.card-icon .material-symbols-outlined {
    font-size: 40px;
    color: #c77a53;
    margin-bottom: 20px;
}

.card-title {
    font-family: 'Marcellus', serif;
    font-size: 24px;
    font-weight: 400;
    color: #222;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-link {
    text-decoration: none;
    color: #222;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid transparent;
    width: fit-content;
    transition: 0.3s;
}

.card-link:hover {
    color: #c77a53;
}

.card-link i {
    font-size: 10px;
}

.sidebar-content {
    flex: 0.8;
    min-width: 300px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.waiter-image-container {
    margin-bottom: 40px;
    text-align: right;
}

.waiter-img {
    width: 100%;
    max-width: 380px;
    border-radius: 20px 20px 20px 20px;
    object-fit: cover;
    height: 280px;
}

.text-block {
    padding-left: 10px;
}

.text-title {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    font-weight: 400;
    color: #222;
    margin-bottom: 20px;
}

.text-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

.btn-menu {
    display: inline-flex;
    align-items: center;
    background-color: #c77a53;
    color: #fff;
    text-decoration: none;
    padding: 8px 25px 8px 8px;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-menu:hover {
    background-color: #a8623d;
}

.btn-icon {
    background: #fff;
    color: #c77a53;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.btn-text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 900px) {
    .restaurant-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .sidebar-content {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }
    
    .waiter-image-container {
        text-align: center;
    }
    
    .info-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: -50px;
        margin-left: 20px;
    }
}

/* Clients Feedback Module */
.feedback-section {
    position: relative;
    padding: 100px 0;
    background-color: #111;
    background-image: url('https://safar.devsvibe.co/wp-content/uploads/2025/11/hote-reservation-bars-2-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    font-family: 'Jost', sans-serif;
}

.feedback-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.feedback-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

.feedback-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.sub-title {
    display: block;
    font-size: 13px;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.main-title {
    font-family: 'Marcellus', serif;
    font-size: 48px;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
}

.slider-navigation {
    display: flex;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.nav-btn:hover {
    background: #fff;
    color: #111;
}

.nav-btn i {
    font-size: 18px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #f9f9f9;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.active-card {
    background: #c77a53;
    transform: translateY(-10px);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

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

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

.author-name {
    font-family: 'Marcellus', serif;
    font-size: 20px;
    color: #222;
    margin-bottom: 5px;
    font-weight: 400;
}

.active-card .author-name {
    color: #fff;
}

.author-role {
    font-size: 13px;
    color: #666;
}

.active-card .author-role {
    color: rgba(255, 255, 255, 0.8);
}

.quote-icon {
    font-size: 45px !important;
    color: #e5e5e5;
    transform: rotate(180deg);
}

.active-card .quote-icon {
    color: rgba(255, 255, 255, 0.2);
}

.card-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.active-card .card-body p {
    color: #fff;
}

.card-footer {
    margin-top: auto;
}

.stars {
    color: #c77a53;
    font-size: 14px;
    display: flex;
    gap: 4px;
}

.active-card .stars {
    color: #fff;
}

@media (max-width: 1200px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .mobile-hidden {
        display: none;
    }
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .main-title {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .feedback-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}
/* Home Book  CTA Module */
.hm-cta-section {
    background-color: #3b2a22;
    background-image: url("https://safar.devsvibe.co/wp-content/uploads/2025/11/hotel-reservation-cta-shade-1.svg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 90px;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
}

.hm-cta-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
    align-items: center;
}

.hm-cta-col {
    display: flex;
    flex-direction: column;
    position: relative;
}

.hm-col-left, .hm-col-right {
    width: 25%;
    align-items: center;
    justify-content: center;
}

.hm-col-center {
    width: 50%;
    align-items: center;
    text-align: center;
    z-index: 10;
}

.hm-visual-wrapper {
    position: relative;
    width: 250px;
    height: 250px;
}

.hm-main-image {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    width: 210px;
    height: 210px;
    object-fit: cover;
    margin: 20px;
}

.hm-star-element {
    position: absolute;
    z-index: 3;
    animation: hm-pulse 3s infinite ease-in-out;
}

.hm-star-1 {
    top: -14px;
    right: -20px;
    width: 63px;
}

.hm-star-2 {
    top: 29px;
    right: -30px;
    width: 39px;
    animation-delay: 1s;
}

.hm-star-3 {
    bottom: 20px;
    left: -20px;
    width: 73px;
    opacity: 0.5;
}

.hm-ring-element {
    position: absolute;
    z-index: 1;
    width: 222px;
    height: 222px;
    opacity: 0.6;
}

.hm-col-left .hm-ring-element {
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
}

.hm-col-right .hm-ring-element {
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}

.hm-cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.96px;
    margin-bottom: 20px;
    display: block;
}

.hm-cta-title {
    color: #ffffff;
    font-family: 'Marcellus', serif;
    font-size: 60px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hm-cta-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 26px;
    max-width: 525px;
    margin: 0 auto 40px auto;
}

.hm-button-wrap {
    text-align: center;
}

.hm-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    background-color: #c77a53;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    padding: 18px 30px 18px 70px;
    border-radius: 50px;
    transition: all 0.3s ease;
    overflow: hidden;
    line-height: 1;
}

.hm-button:hover {
    background-color: #ffffff;
    color: #111111;
}

.hm-button-icon {
    position: absolute;
    top: 50%;
    left: 6px;
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    color: #c77a53;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    transition: left 0.6s cubic-bezier(0, 0, 0.5, 1);
    z-index: 1;
}

.hm-button:hover .hm-button-icon {
    left: calc(100% - 50px);
    background-color: #c77a53;
    color: #ffffff;
    animation: hm-rotateForward 0.6s ease forwards;
}

.hm-button:not(:hover) .hm-button-icon {
    animation: hm-rotateBackward 0.6s ease forwards;
}

.hm-button-text {
    transition: transform 0.6s cubic-bezier(0, 0, 0.4, 1);
    transform: translateX(0);
}

.hm-button:hover .hm-button-text {
    transform: translateX(-40px);
}

@keyframes hm-rotateForward {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
}

@keyframes hm-rotateBackward {
    from { transform: translateY(-50%) rotate(360deg); }
    to { transform: translateY(-50%) rotate(0deg); }
}

@keyframes hm-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@media (max-width: 1200px) {
    .hm-cta-title { font-size: 48px; }
    .hm-col-left, .hm-col-right { display: none; }
    .hm-col-center { width: 100%; }
}

@media (max-width: 768px) {
    .hm-cta-title { font-size: 36px; }
    .hm-cta-section { padding-top: 60px; padding-bottom: 60px; }
}

/* Room Main Module */
.hotel-overlay-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    font-family: 'Jost', sans-serif;
    background-color: #f5f5f5;
}

.hotel-overlay-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
}

.hotel-overlay-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.hotel-media-wrap {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.hotel-media-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hotel-overlay-card:hover .hotel-media-wrap img {
    transform: scale(1.08);
}

.hotel-media-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    z-index: 1;
}

.hotel-floating-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.hotel-tag-new {
    background-color: #2a1b15;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hotel-like-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 3;
    transition: 0.3s;
}

.hotel-like-btn:hover {
    background: #fff;
    color: #ff4757;
}

.hotel-like-btn .material-symbols-outlined {
    font-size: 20px;
}

.hotel-floating-meta {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 4;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.hotel-meta-unit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #2a1b15;
    font-weight: 500;
}

.hotel-meta-unit .material-symbols-outlined {
    font-size: 18px;
    color: #c77a53;
}

.hotel-meta-sep {
    width: 1px;
    height: 15px;
    background-color: #ddd;
}

.hotel-body-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.hotel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.hotel-name {
    margin: 0;
    font-family: 'Marcellus', serif;
    font-size: 22px;
    line-height: 1.3;
}

.hotel-name a {
    text-decoration: none;
    color: #2a1b15;
    transition: 0.3s;
}

.hotel-name a:hover {
    color: #c77a53;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    background: #fff8e1;
    color: #f1c40f;
    padding: 4px 8px;
    border-radius: 4px;
}

.hotel-rating .material-symbols-outlined {
    font-size: 14px;
    font-variation-settings: 'FILL' 1;
}

.hotel-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.hotel-action-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #eee;
    padding-top: 20px;
    margin-top: auto;
}

.hotel-cost {
    display: flex;
    align-items: baseline;
    color: #2a1b15;
}

.hotel-currency {
    font-size: 16px;
    font-weight: 600;
    margin-right: 2px;
}

.hotel-val {
    font-family: 'Marcellus', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.hotel-dur {
    font-size: 13px;
    color: #999;
    margin-left: 4px;
}

.hotel-explore-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #c77a53;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.hotel-explore-link:hover {
    color: #2a1b15;
    gap: 12px;
}

@media (max-width: 1100px) {
    .hotel-overlay-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .hotel-overlay-grid-container {
        grid-template-columns: 1fr;
    }
    .hotel-media-wrap {
        height: 240px;
    }
    .hotel-floating-meta {
        width: 95%;
        padding: 8px;
    }
    .hotel-meta-unit {
        font-size: 11px;
    }
}