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

:root {
    /* Renkler header'dan dinamik gelir (tema sistemi) */
    --sand: #F5E6D3;
    --sand-light: #FDF8F3;
    --white: #FFFFFF;
    --dark: #1A2B2E;
    --text: #3D4F52;
    --text-light: #6B7D80;
    --text-muted: #99A7AA;
    --border: #E5EAEB;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text);
    background: var(--white);
    font-size: 15px;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--ocean);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}
.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}
.logo-text span { color: var(--mint); }

.nav {
    display: flex;
    gap: 6px;
    background: var(--sand-light);
    padding: 5px;
    border-radius: 12px;
}
.nav-link {
    padding: 10px 20px;
    font-weight: 600;
    color: var(--text);
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-link:hover { background: var(--white); }
.nav-link.active { background: var(--ocean); color: var(--white); }

.header-right { display: flex; align-items: center; gap: 12px; }
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}
.header-phone i {
    width: 38px;
    height: 38px;
    background: var(--mint-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mint);
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.25s;
}
.btn-ocean { background: var(--ocean); color: var(--white); }
.btn-ocean:hover { background: var(--ocean-light); transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: #D67560; }
.btn-white { background: var(--white); color: var(--ocean); }
.btn-ghost { background: transparent; border: 2px solid rgba(255,255,255,0.3); color: var(--white); }
.btn-ghost:hover { background: var(--white); color: var(--ocean); }
.btn-mint { background: var(--mint); color: var(--white); }
.btn-mint:hover { background: var(--mint-light); }

/* HERO */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--white) 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.hero-tag i { color: var(--coral); }
.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-title span { color: var(--mint); }
.hero-desc {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-stats { display: flex; gap: 40px; }
.hero-stat-value { font-size: 32px; font-weight: 800; color: var(--ocean); }
.hero-stat-label { font-size: 14px; color: var(--text-muted); }

.hero-images { position: relative; }
.hero-img-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.hero-img-main img { width: 100%; height: 440px; object-fit: cover; }
.hero-img-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 5px solid var(--white);
}
.hero-img-float img { width: 100%; height: 150px; object-fit: cover; }
.hero-badge-float {
    position: absolute;
    top: 20px;
    right: -20px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-badge-float i { color: var(--coral); font-size: 24px; }
.hero-badge-float strong { font-size: 24px; color: var(--dark); }
.hero-badge-float span { font-size: 13px; color: var(--text-muted); display: block; }

/* SEARCH */
.search-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}
.search-box {
    background: var(--white);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    display: flex;
    gap: 8px;
}
.search-field {
    flex: 1;
    padding: 16px 20px;
    background: var(--sand-light);
    border-radius: 14px;
    border: 2px solid transparent;
    transition: all 0.25s;
    cursor: pointer;
}
.search-field:hover { background: var(--sand); }
.search-field:focus-within { background: var(--white); border-color: var(--ocean); }
.search-field-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.search-field-row { display: flex; align-items: center; gap: 10px; }
.search-field-row i { color: var(--ocean); font-size: 18px; }
.search-field input, .search-field select {
    flex: 1;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    outline: none;
}
.search-btn {
    padding: 20px 40px;
    background: var(--coral);
    color: var(--white);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
}
.search-btn:hover { background: #D67560; transform: scale(1.02); }

/* SECTIONS */
.section { padding: 80px 0; }
.section-sand { background: var(--sand-light); }
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}
.section-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--mint);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.section-title { font-size: 36px; font-weight: 800; color: var(--dark); }
.section-desc { font-size: 16px; color: var(--text-light); margin-top: 10px; }
.section-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--ocean);
}
.section-link:hover { gap: 12px; }

/* VILLA CARDS */
.villa-list { display: flex; flex-direction: column; gap: 24px; }
.villa-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.villa-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.villa-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border-color: transparent;
}
.villa-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}
.villa-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.villa-card:hover .villa-card-image img { transform: scale(1.05); }
.villa-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
}
.v-badge {
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.v-badge-ocean { background: var(--ocean); color: var(--white); }
.v-badge-mint { background: var(--mint); color: var(--white); }
.v-badge-coral { background: var(--coral); color: var(--white); }
.villa-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.25s;
}
.villa-fav:hover { color: var(--coral); transform: scale(1.1); }
.villa-fav.active { background: var(--coral); color: var(--white); }
.villa-card-body { padding: 24px; }
.villa-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--mint);
    margin-bottom: 8px;
}
.villa-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.villa-card:hover .villa-title { color: var(--ocean); }
.villa-desc {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}
.villa-specs {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 16px;
}
.villa-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 14px;
}
.villa-spec i {
    width: 32px;
    height: 32px;
    background: var(--sand-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean);
    font-size: 14px;
}
.villa-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.villa-rating { display: flex; align-items: center; gap: 8px; }
.villa-rating-score {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--sand);
    border-radius: 8px;
    font-weight: 700;
    color: var(--dark);
}
.villa-rating-score i { color: var(--coral); }
.villa-rating-count { font-size: 13px; color: var(--text-muted); }
.villa-price-old {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.villa-price { font-size: 26px; font-weight: 800; color: var(--ocean); }
.villa-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }

/* REGIONS */
.regions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
}
.region-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
}
.region-card:first-child { grid-column: span 2; grid-row: span 2; }
.region-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.region-card:hover img { transform: scale(1.08); }
.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,43,46,0.85) 0%, transparent 60%);
    transition: all 0.3s;
}
.region-card:hover .region-overlay {
    background: linear-gradient(to top, rgba(27,77,92,0.9) 0%, rgba(27,77,92,0.3) 60%);
}
.region-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    color: var(--white);
}
.region-title { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.region-card:not(:first-child) .region-title { font-size: 20px; }
.region-count { font-size: 14px; opacity: 0.9; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
    background: var(--white);
    border-radius: 18px;
    padding: 32px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--ocean);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--sand-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--ocean);
    margin-bottom: 20px;
    transition: all 0.3s;
}
.feature-card:hover .feature-icon { background: var(--ocean); color: var(--white); }
.feature-title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--white);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid var(--border);
}
.testimonial-rating { display: flex; gap: 4px; color: var(--coral); margin-bottom: 16px; }
.testimonial-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}
.testimonial-name { font-weight: 700; color: var(--dark); }
.testimonial-meta { font-size: 13px; color: var(--text-muted); }

/* CTA */
.cta {
    padding: 100px 0;
    background: var(--ocean);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(62,180,137,0.2);
    border-radius: 50%;
}
.cta-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.cta-text { max-width: 550px; color: var(--white); }
.cta-title { font-size: 40px; font-weight: 800; margin-bottom: 16px; }
.cta-desc { font-size: 17px; opacity: 0.9; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; }

/* FOOTER */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--ocean-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.footer-logo-text { font-size: 22px; font-weight: 800; color: var(--white); }
.footer-logo-text span { color: var(--mint); }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.footer-social a:hover { background: var(--mint); color: var(--white); }
.footer-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--white); }
.footer-links i { margin-right: 10px; color: var(--mint); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--white); }

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    padding: 20px 0;
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--ocean); }
.breadcrumb i { font-size: 10px; color: var(--text-muted); }

/* PAGINATION */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s;
}
.pagination a { background: var(--white); border: 1px solid var(--border); color: var(--text); }
.pagination a:hover { border-color: var(--ocean); color: var(--ocean); }
.pagination .active { background: var(--ocean); color: var(--white); border-color: var(--ocean); }

/* FORMS */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.2s;
}
.form-input:focus { border-color: var(--ocean); outline: none; }
.form-textarea { min-height: 120px; resize: vertical; }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-images { max-width: 600px; margin: 0 auto; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .villa-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .nav { display: none; }
    .regions-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .region-card:first-child { grid-column: span 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-content { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero-title { font-size: 36px; }
    .section-title { font-size: 28px; }
    .search-box { flex-direction: column; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .villa-grid { grid-template-columns: 1fr; }
    .regions-grid { grid-template-columns: 1fr; }
    .region-card:first-child { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* V2 ADDITIONS */

/* TRUST BADGES */
.trust-badges {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 20px 0;
    background: var(--sand-light);
    border-bottom: 1px solid var(--border);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
}
.trust-item i { color: var(--mint); }

/* QUICK FILTERS */
.quick-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    flex-wrap: wrap;
}
.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--ocean); color: var(--ocean); }
.filter-btn.active { background: var(--ocean); color: var(--white); border-color: var(--ocean); }
.filter-btn i { font-size: 16px; }

/* HOW IT WORKS */
.how-section {
    padding: 80px 0;
    background: var(--ocean);
    color: var(--white);
}
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.how-step {
    text-align: center;
    position: relative;
}
.how-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.2);
}
.how-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    transition: all 0.3s;
}
.how-step:hover .how-icon {
    background: var(--white);
    color: var(--ocean);
    transform: scale(1.1);
}
.how-number {
    width: 28px;
    height: 28px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 12px;
}
.how-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.how-desc { font-size: 14px; opacity: 0.8; line-height: 1.6; }

/* REQUEST FORM */
.request-section { padding: 80px 0; background: var(--sand-light); }
.request-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.request-content h2 { font-size: 36px; font-weight: 800; color: var(--dark); margin-bottom: 20px; }
.request-content p { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.request-benefits { list-style: none; }
.request-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 12px;
}
.request-benefits li i {
    width: 28px;
    height: 28px;
    background: #D1FAE5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10B981;
    font-size: 12px;
}
.request-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.request-form-title { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.request-form-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--coral);
    color: var(--white);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s;
}
.form-submit:hover { background: #D67560; }

/* VILLA DETAIL PAGE */
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 12px;
    border-radius: 20px;
    overflow: hidden;
}
.gallery-main { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item { position: relative; cursor: pointer; overflow: hidden; }
.gallery-item img { transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-more {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
}

.detail-content { display: grid; grid-template-columns: 1fr 400px; gap: 40px; padding: 40px 0; }
.detail-main { }
.detail-sidebar { position: sticky; top: 100px; }

.detail-header { margin-bottom: 24px; }
.detail-badges { display: flex; gap: 8px; margin-bottom: 12px; }
.detail-title { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.detail-location { display: flex; align-items: center; gap: 8px; color: var(--text-light); }
.detail-location i { color: var(--mint); }

.detail-quick-info {
    display: flex;
    gap: 32px;
    padding: 24px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}
.quick-info-item { display: flex; align-items: center; gap: 12px; }
.quick-info-item i {
    width: 48px;
    height: 48px;
    background: var(--sand-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean);
    font-size: 20px;
}
.quick-info-item strong { font-size: 18px; color: var(--dark); }
.quick-info-item span { font-size: 13px; color: var(--text-muted); display: block; }

.detail-section { margin-bottom: 40px; }
.detail-section-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.detail-section-title i { margin-right: 10px; color: var(--ocean); }

.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--sand-light);
    border-radius: 12px;
}
.amenity-item i { color: var(--mint); font-size: 18px; width: 24px; }
.amenity-item span { font-weight: 600; }

/* BOOKING CARD */
.booking-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.booking-price { margin-bottom: 24px; }
.booking-price-value { font-size: 32px; font-weight: 800; color: var(--ocean); }
.booking-price-unit { font-size: 16px; color: var(--text-muted); }
.booking-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}
.booking-date {
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s;
}
.booking-date:first-child { border-right: 2px solid var(--border); }
.booking-date:hover { background: var(--sand-light); }
.booking-date-label { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }
.booking-date-value { font-size: 15px; font-weight: 600; color: var(--dark); }
.booking-guests {
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 12px;
    margin-bottom: 20px;
    cursor: pointer;
}
.booking-btn {
    width: 100%;
    padding: 18px;
    background: var(--coral);
    color: var(--white);
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    transition: all 0.25s;
}
.booking-btn:hover { background: #D67560; transform: translateY(-2px); }
.booking-total {
    display: flex;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-weight: 700;
}
.booking-total-value { font-size: 20px; color: var(--dark); }

/* CALENDAR */
.availability-calendar {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    padding: 24px;
}
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.calendar-nav {
    display: flex;
    gap: 8px;
}
.calendar-nav button {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--sand-light);
    color: var(--text);
    transition: all 0.2s;
}
.calendar-nav button:hover { background: var(--ocean); color: var(--white); }
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.calendar-day-name {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    padding: 8px;
}
.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.calendar-day:hover { background: var(--ocean); color: var(--white); }
.calendar-day.disabled { color: var(--text-muted); cursor: not-allowed; }
.calendar-day.booked { background: #FEE2E2; color: #EF4444; cursor: not-allowed; }
.calendar-day.available { background: #D1FAE5; color: #10B981; }
.calendar-day.selected { background: var(--ocean); color: var(--white); }

/* REVIEWS */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.reviews-score {
    display: flex;
    align-items: center;
    gap: 16px;
}
.reviews-score-value { font-size: 48px; font-weight: 800; color: var(--dark); }
.reviews-score-stars { color: var(--coral); font-size: 20px; }
.reviews-score-count { font-size: 14px; color: var(--text-muted); }
.review-card {
    padding: 24px;
    background: var(--sand-light);
    border-radius: 16px;
    margin-bottom: 16px;
}
.review-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--ocean);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}
.review-name { font-weight: 700; color: var(--dark); }
.review-date { font-size: 13px; color: var(--text-muted); }
.review-rating { color: var(--coral); }
.review-text { font-size: 15px; line-height: 1.7; color: var(--text); }

/* RESPONSIVE V2 */
@media (max-width: 992px) {
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .how-step:nth-child(2)::after { display: none; }
    .request-grid { grid-template-columns: 1fr; }
    .detail-content { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
    .gallery-main { grid-row: span 2; }
    .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .how-grid { grid-template-columns: 1fr; }
    .how-step::after { display: none; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 180px); }
    .gallery-main { grid-row: span 1; }
    .detail-quick-info { flex-wrap: wrap; gap: 16px; }
    .amenities-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}
