/* 
   SoFlo Stays - Premium Hotel & Travel Guide CSS Styling
   Design Aesthetics: Tropical Ocean & Warm Sand (Deep ocean teals, coastal sky blues, warm sand highlights, glassmorphic headers)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --bg-main: #f0f5f5;
    --bg-card: #ffffff;
    --bg-header: rgba(240, 245, 245, 0.85);
    --border-color: #dce6e5;
    --border-hover: rgba(13, 148, 136, 0.35);
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    --accent-primary: #0d9488;       /* Deep Ocean Reef Teal */
    --accent-secondary: #0284c7;     /* Coastal Sky Blue */
    --accent-gradient: linear-gradient(135deg, #0d9488 0%, #0284c7 100%);
    --accent-gradient-hover: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
    
    --star-color: #f59e0b;           /* Amber Gold */
    --price-color: #047857;          /* Emerald Green */
    
    /* Layout & Shadow constants */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius-lg: 20px;
    --border-radius-md: 12px;
    --border-radius-sm: 8px;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 4px 20px rgba(13, 148, 136, 0.12);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global resets & scrollbar */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
    border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Upper Monetization / Sponsor Banner */
.monetization-header-banner {
    background-color: #022c22;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--bg-header);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-smooth);
}

.nav-link a:hover::after,
.nav-link.active a::after {
    width: 100%;
}

.nav-link a:hover,
.nav-link.active a {
    color: var(--text-primary);
}

.suggest-btn-nav {
    background: var(--accent-gradient);
    border: none;
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.suggest-btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    background: var(--accent-gradient-hover);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 2rem;
    background: linear-gradient(180deg, rgba(2, 132, 199, 0.05) 0%, rgba(240, 245, 245, 0.1) 100%),
                url('soflo_stay_hero.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-title span {
    background: linear-gradient(135deg, #2dd4bf 0%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: #e2e8f0;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 2rem;
}

#hero-submit-btn {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    transition: var(--transition-smooth);
}

#hero-submit-btn:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Main Container Layout */
.main-layout {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
}

/* Sidebar / Filters */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: sticky;
    top: 90px;
    height: calc(100vh - 120px);
    overflow-y: auto;
    padding-right: 0.5rem;
}

.sidebar::-webkit-scrollbar {
    width: 6px;
}
.sidebar::-webkit-scrollbar-track {
    background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 6px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--accent-primary);
}

.filter-section {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.filter-section-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.filter-section-title span {
    color: var(--accent-primary);
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 12px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.25rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background-color: #fafbfc;
    transition: var(--transition-smooth);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-item-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.6rem 0.8rem;
    background: none;
    border: 1px solid transparent;
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-smooth);
}

.filter-item-btn:hover {
    background-color: #f1f5f9;
    color: var(--text-primary);
}

.filter-item-btn.active {
    background: rgba(13, 148, 136, 0.08);
    color: var(--accent-primary);
    border-color: rgba(13, 148, 136, 0.15);
    font-weight: 600;
}

/* Results Content */
.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.reset-filters-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.reset-filters-btn:hover {
    background-color: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

.results-stats {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.results-stats span {
    font-weight: 700;
    color: var(--text-primary);
}

/* Active filter badges */
.active-filters-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.active-filter-badge {
    background: rgba(13, 148, 136, 0.1);
    color: var(--accent-primary);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.active-filter-badge button {
    background: none;
    border: none;
    color: var(--accent-primary);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

/* Hotel Grid */
.hotel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Hotel Card */
.hotel-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.hotel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.08), var(--shadow-glow);
    border-color: var(--border-hover);
}

.card-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    background-color: #e2e8f0;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.hotel-card:hover .card-img {
    transform: scale(1.06);
}

.card-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.65);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: background-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    z-index: 10;
    opacity: 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.card-img-container:hover .card-slider-arrow {
    opacity: 1;
}

.card-slider-arrow:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.card-slider-left {
    left: 12px;
}

.card-slider-right {
    right: 12px;
}

.card-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.5);
    padding: 4px 8px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.card-slider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.card-slider-dot.active {
    background: white;
    transform: scale(1.2);
}


.card-location-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(4, 120, 87, 0.85);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

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

.card-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.star-rating {
    color: var(--star-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tripadvisor-score {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
    background: #f1f5f9;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.25;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
}

.card-tag {
    background-color: #f1f5f9;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--border-radius-sm);
}

.card-description {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.perk-box {
    background-color: #fafbfc;
    border-left: 3px solid var(--accent-primary);
    padding: 0.6rem 0.8rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin-bottom: 1.25rem;
}

.perk-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-primary);
    margin-bottom: 0.2rem;
}

.perk-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-actions {
    margin-top: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background-color: #f1f5f9;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
    color: var(--text-primary);
    border-color: #cbd5e1;
}

.btn-outline {
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
}

.btn-outline:hover {
    background: rgba(13, 148, 136, 0.05);
    transform: translateY(-1px);
}

/* AdSense Inline Card */
.adsense-card {
    background-color: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.adsense-placeholder-inner {
    max-width: 280px;
}

.adsense-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.adsense-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Suggest Section */
.suggest-section {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.03) 0%, rgba(2, 132, 199, 0.03) 100%), var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 5rem 2rem;
}

.suggest-container {
    max-width: 760px;
    margin: 0 auto;
}

.suggest-header {
    text-align: center;
    margin-bottom: 3rem;
}

.suggest-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.suggest-title span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.suggest-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

.suggest-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input, .form-select, .form-textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-primary);
    background-color: #fafbfc;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

/* Detail View Layout */
.detail-page-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

.detail-page-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-back-nav {
    margin-bottom: 0.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.back-link:hover {
    color: var(--accent-primary);
}

.detail-header-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.detail-image-box {
    position: relative;
    height: 380px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background-color: #e2e8f0;
    box-shadow: var(--shadow-soft);
}

.detail-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Gallery Slider Rules */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    user-select: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-arrow:hover {
    background: rgba(15, 23, 42, 0.8);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.slider-dot.active {
    background: white;
    width: 20px;
    border-radius: 4px;
}

.detail-location-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.detail-price-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: rgba(4, 120, 87, 0.9);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.detail-title-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.15;
}

.detail-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.detail-tag {
    background-color: #f1f5f9;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.detail-long-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.detail-features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.feature-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.feature-indicator.active {
    background-color: rgba(13, 148, 136, 0.06);
    border-color: rgba(13, 148, 136, 0.15);
    color: var(--accent-primary);
}

/* Detail Columns Grid */
.detail-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
}

.detail-section-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-color);
}

.detail-dish-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
}

.detail-dish-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    opacity: 0.4;
    line-height: 1;
}

.detail-dish-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.detail-dish-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.detail-dish-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.detail-book-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--accent-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: all 0.2s ease;
    margin-top: 0.5rem;
}

.detail-book-btn:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    opacity: 0.95;
}


.detail-contact-box, .detail-hours-box, .detail-actions-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.detail-box-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.detail-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.detail-contact-item svg {
    color: var(--accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-phone-link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
}

.detail-phone-link:hover {
    color: var(--accent-primary);
    text-decoration: underline;
}

.detail-map-btn-wrapper {
    margin-top: 1.25rem;
}

.detail-map-btn {
    width: 100%;
}

.detail-hours-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.detail-hours-day {
    font-weight: 600;
}

.detail-hours-time {
    text-align: right;
}

.detail-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-action-btn {
    width: 100%;
    font-size: 0.95rem;
    padding: 0.8rem;
    text-align: center;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.detail-action-btn.active-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    cursor: pointer;
}

.detail-action-btn.active-btn:hover {
    background: var(--accent-gradient-hover);
    box-shadow: var(--shadow-glow);
}

.detail-action-btn.disabled {
    background-color: #f1f5f9;
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    cursor: not-allowed;
}

.detail-related-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.detail-related-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.detail-related-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.detail-related-btn {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.detail-related-btn:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background-color: rgba(13, 148, 136, 0.02);
}

/* About Page Elements */
.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.about-back-nav {
    margin-bottom: 1.5rem;
}

.about-hero-card {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.85) 0%, rgba(2, 132, 199, 0.85) 100%),
                url('soflo_stay_hero.jpg') no-repeat center center;
    background-size: cover;
    border-radius: var(--border-radius-lg);
    padding: 4rem 3rem;
    color: white;
    box-shadow: var(--shadow-soft);
    margin-bottom: 2.5rem;
}

.about-hero-content {
    max-width: 700px;
}

.about-tagline {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #99f6e4;
    margin-bottom: 0.75rem;
    display: block;
}

.about-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    color: #e2e8f0;
    line-height: 1.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 2.5rem;
}

.about-section {
    margin-bottom: 2.5rem;
}

.about-section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-section p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.about-process-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.about-process-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-process-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.1rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-sidebar-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.about-sidebar-card.mission-card {
    border-left: 4px solid var(--accent-primary);
}

.sidebar-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.coverage-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.city-chip {
    background-color: #f1f5f9;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

/* Privacy & Terms View */
.privacy-terms-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.privacy-terms-back-nav {
    margin-bottom: 1.5rem;
}

.privacy-terms-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
}

.privacy-terms-toc {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.toc-box {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
}

.toc-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.toc-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toc-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.toc-link:hover {
    color: var(--accent-primary);
}

.privacy-terms-content {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.doc-section {
    margin-bottom: 3rem;
}

.doc-section:last-child {
    margin-bottom: 0;
}

.doc-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.doc-section p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Best Of View */
.best-of-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.best-of-back-nav {
    margin-bottom: 1.5rem;
}

.best-of-header {
    text-align: center;
    margin-bottom: 3rem;
}

.best-of-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-primary);
    display: block;
    margin-bottom: 0.5rem;
}

.best-of-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.best-of-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 650px;
    margin: 0 auto;
}

.best-of-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.best-of-category-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.best-of-category-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05), var(--shadow-glow);
    border-color: var(--border-hover);
}

.best-of-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.best-of-header-left {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.best-of-cat-icon {
    font-size: 2.25rem;
    background-color: #fafbfc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

.best-of-cat-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.best-of-cat-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.best-of-arrow {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Best Of List Detail View */
.best-of-list-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.best-of-detail-header {
    margin-bottom: 2.5rem;
}

.best-of-detail-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.best-of-detail-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.best-of-item-row {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 320px 1fr;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.best-of-item-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.best-of-item-img-container {
    position: relative;
    height: 100%;
    min-height: 240px;
}

.best-of-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.best-of-item-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.best-of-item-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.best-of-item-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
}

.best-of-item-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.best-of-item-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.best-of-item-actions {
    margin-top: auto;
    display: flex;
    gap: 1rem;
}

/* Dynamic Option Selector Popup / Modal */
.options-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.options-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.options-modal-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    width: 90%;
    max-width: 440px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.options-modal-overlay.active .options-modal-card {
    transform: translateY(0);
}

.options-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.options-modal-close:hover {
    color: var(--text-primary);
}

.options-modal-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.options-modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.options-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.option-btn-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.25rem;
    background-color: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.option-btn-link:hover {
    background-color: var(--bg-main);
    border-color: var(--accent-primary);
    transform: translateX(4px);
}

.option-btn-icon {
    font-size: 1.2rem;
}

/* Footer Section */
footer {
    background-color: #0b131e;
    color: #94a3b8;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 4rem 2rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-logo .logo-text {
    color: white;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-title {
    font-family: var(--font-heading);
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-copy {
    font-weight: 500;
}

.footer-affiliate-disclaimer {
    color: #64748b;
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        position: static;
        height: auto;
        padding-right: 0;
    }
    
    .detail-header-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .detail-image-box {
        height: 280px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-terms-layout {
        grid-template-columns: 1fr;
    }
    
    .privacy-terms-toc {
        position: static;
        display: none; /* Hide TOC on mobile/tablet for simplicity */
    }
    
    .best-of-item-row {
        grid-template-columns: 1fr;
    }
    
    .best-of-item-img-container {
        height: 200px;
        min-height: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        position: static;
        padding: 0.75rem 1rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .suggest-btn-nav {
        width: 100%;
    }
    
    .hero {
        padding: 4rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .main-layout {
        padding: 1.5rem 1rem;
    }
    
    .adsense-card {
        padding: 1.5rem 1rem;
        min-height: 300px;
    }
    
    .suggest-container {
        padding: 1.5rem 1rem;
    }
    
    .detail-page-container {
        padding: 1.5rem 1rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-terms-content {
        padding: 1.5rem;
    }
}

/* Bottom AdSense Banner styles */
.bottom-ad-container {
    max-width: 1280px;
    margin: 2rem auto;
    padding: 0 2rem;
    text-align: center;
}

.bottom-ad-wrapper {
    background-color: var(--bg-card);
    border: 1px dashed var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.bottom-ad-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bottom-ad-wrapper .adsbygoogle {
    display: inline-block;
    width: 728px;
    height: 90px;
    max-width: 100%;
}

@media (max-width: 768px) {
    .bottom-ad-container {
        padding: 0 1rem;
    }
    .bottom-ad-wrapper {
        min-height: 90px;
        padding: 0.75rem;
    }
    .bottom-ad-wrapper .adsbygoogle {
        width: 320px !important;
        height: 50px !important;
    }
}

