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

:root {
    --primary: #FF758C; /* Pink Utama */
    --secondary: #2d3436;
    --accent: #FF758C; /* Pink khusus wanita */
    --success: #27ae60;
    --danger: #eb5757;
    --bg-light: #fdf2f4; /* Background agak kemerahan pink tipis banget */
    --text-main: #1a1d1e;
    --text-muted: #718096;
    --white: #ffffff;
    --shadow: 0 20px 40px rgba(255, 117, 140, 0.1); /* Shadow pink halus */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body.auth-body {
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    padding: 3.5rem;
    border-radius: 40px;
    box-shadow: var(--shadow);
    text-align: center;
}

.back-link {
    display: inline-block;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.back-link i {
    font-size: 0.7rem;
    margin-right: 5px;
}

.back-link:hover {
    color: var(--accent);
    transform: translateX(-5px);
}

.auth-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--text-main);
    margin-bottom: 0.8rem;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    border: 1px solid rgba(255, 117, 140, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 3rem;
    background: white;
}

.role-badge i {
    color: var(--accent);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.input-custom {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    background: #fafafa;
}

.input-custom:focus {
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 117, 140, 0.1);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.btn-primary:hover {
    background: #ff5e78;
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(255, 117, 140, 0.2);
}

.auth-footer {
    margin-top: 2.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    box-shadow: inset 0 -2px 0 var(--accent);
    transition: var(--transition);
}

.auth-footer a:hover {
    color: var(--accent);
    box-shadow: inset 0 -3px 0 var(--accent);
}

/* Layout & Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Navigasi */
nav {
    background: var(--white);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(255, 117, 140, 0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 10px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 10px 22px;
    border-radius: 50px;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
    background: #fff0f3;
}

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

.user-profile {
    width: 40px;
    height: 40px;
    background: #fff0f3;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 0.95rem;
    border: 2px solid var(--white);
    box-shadow: 0 5px 15px rgba(255, 117, 140, 0.1);
}

.logout-btn {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(255, 117, 140, 0.2);
}

.logout-btn:hover {
    background: #ff5e78;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff0f3 0%, #ffffff 100%);
    padding: 10rem 5% 12rem 5%;
    color: var(--text-main);
    text-align: left; /* Rata kiri sesuai desain */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 117, 140, 0.05);
    border-radius: 50%;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    color: #2d3436;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    max-width: 750px;
    line-height: 1.8;
}

.search-container {
    display: flex;
    max-width: 650px;
    background: var(--white);
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 117, 140, 0.1);
    border: 1px solid rgba(255, 117, 140, 0.1);
    margin: 0; /* Hapus auto margin biar rata kiri */
}

.search-container input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: var(--text-main);
    outline: none;
    font-size: 1.1rem;
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 35px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--primary);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 2px solid #000000;
    text-align: left;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #ffb8c6;
    margin-bottom: 1.2rem;
    letter-spacing: 2px;
}

.stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

/* Room Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.room-card:hover {
    transform: translateY(-15px);
}

.room-image-area {
    height: 250px;
    background: #f0f0f0;
    position: relative;
    overflow: hidden;
}

.room-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.room-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 117, 140, 0.3);
}

.room-details {
    padding: 2.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.room-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.room-price-row {
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.room-price-row span {
    font-weight: 400;
    font-size: 1rem;
    color: var(--text-muted);
}

.room-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.facility-tag {
    background: #fff0f3;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    border: 1px solid rgba(255, 117, 140, 0.1);
}

.room-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #fff0f3;
    padding-top: 2rem;
    margin-top: auto;
}

.status-label {
    font-size: 0.85rem;
    font-weight: 800;
    color: #2ecc71;
    letter-spacing: 1px;
}

.btn-detail {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 117, 140, 0.2);
}

.btn-detail:hover {
    background: #ff5e78;
    transform: scale(1.05);
}

footer {
    padding: 5rem 5%;
    text-align: center;
    background: #fafafa;
    margin-top: 8rem;
}
/* Informasi Kamar Page Header */
.page-header {
    background: linear-gradient(135deg, #fff0f3 0%, #ffffff 100%);
    padding: 6rem 5% 8rem 5%;
    color: var(--text-main);
    text-align: left;
    border-bottom: 1px solid rgba(255, 117, 140, 0.1);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    color: #2d3436;
}

.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Filter Bar Styles */
.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 0;
    flex-wrap: wrap;
    gap: 20px;
}

.category-filters {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-main);
    margin-right: 5px;
}

.filter-pill {
    padding: 12px 28px;
    background: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 50px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.filter-pill.active, .filter-pill:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(255, 117, 140, 0.2);
}

.dropdown-filters {
    display: flex;
    gap: 15px;
}

.select-custom {
    appearance: none;
    padding-right: 3.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%231a1d1e' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
}

.select-custom:focus {
    outline: none;
    border-color: var(--primary);
}

.status-label.terisi {
    color: var(--danger);
}

/* Detail Kamar Styles */
.breadcrumb-row {
    padding: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.breadcrumb-row a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-row a:hover {
    color: var(--primary);
}

.breadcrumb-row .sep {
    margin: 0 10px;
    opacity: 0.3;
}

.breadcrumb-row .current {
    color: var(--text-main);
    font-weight: 600;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

/* Gallery Styles */
.gallery-column .main-image {
    width: 100%;
    height: 500px;
    background: #f0f0f0;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.gallery-column .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-column .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #bbb;
}

.gallery-column .image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.thumb-item {
    height: 120px;
    background: #f0f0f0;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #bbb;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Info Column Styles */
.status-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.badge {
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
}

.badge-gray {
    background: #f0f0f0;
    color: #718096;
}

.badge-green {
    background: #e6fffa;
    color: #2ecc71;
}

.room-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.room-detail-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2rem;
}

.room-detail-price span {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.section-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 2rem 0;
}

.section-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #cccccc;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 2.5rem;
}

.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.facility-item i {
    color: #2ecc71;
    font-size: 0.8rem;
}

.facility-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 2.5rem;
}

.facility-pills .pill {
    padding: 8px 20px;
    background: #f8f8f8;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.rules-section {
    background: #fffcfd;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #fff0f3;
    margin-bottom: 3rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-order {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(255, 117, 140, 0.2);
}

.btn-order:hover {
    background: #ff5e78;
    transform: translateY(-3px);
}

.btn-contact {
    background: transparent;
    color: var(--text-muted);
    text-decoration: none;
    padding: 1.2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid #eeeeee;
    transition: var(--transition);
}

.btn-contact:hover {
    background: #fafafa;
    color: var(--text-main);
}

.simple-footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Booking Page Styles */
.booking-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 4rem;
    align-items: start;
}

.card-custom {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--text-main);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-top: 3rem;
}

.btn-cancel {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-cancel:hover {
    color: var(--danger);
}

/* Summary Sidebar */
.summary-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.summary-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.summary-item label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #cccccc;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.summary-item p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2.5rem 0;
    padding: 0 1rem;
}

.summary-total-row span:first-child {
    font-size: 1.2rem;
    font-weight: 800;
}

.summary-total-row span:last-child {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-main);
}

.summary-note {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.summary-note input {
    margin-top: 3px;
}

/* Payment Page Styles */
.bank-instruction-box {
    background: #fcfcfc;
    border: 1px solid #f2f2f2;
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.section-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #e0e0e0;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
}

.bank-details p {
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 12px;
}

.bank-details p strong {
    display: inline-block;
    width: 120px;
}

.total-banner-dark {
    background: #1a1d1e;
    color: var(--white);
    padding: 2.5rem 3rem;
    border-radius: 15px;
    margin-bottom: 3.5rem;
}

.banner-top {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888888;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.banner-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-big {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.deadline-text {
    font-size: 1rem;
    font-weight: 700;
    color: #888888;
}

.dropzone-area {
    width: 100%;
    padding: 5rem 3rem;
    border: 2px dashed #f0f0f0;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #ffffff;
    margin-top: 15px;
}

.dropzone-area:hover {
    border-color: var(--primary);
    background: #fffcfd;
}

.dropzone-area i {
    font-size: 2.4rem;
    color: #dddddd;
    margin-bottom: 1.5rem;
}

.dropzone-area p {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.dropzone-area span {
    font-size: 0.85rem;
    color: #cccccc;
}

/* Status Page Styles */
.status-timeline {
    position: relative;
    padding-left: 50px;
}

.status-timeline::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #f0f0f0;
}

.timeline-item {
    position: relative;
    padding-bottom: 4rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #cccccc;
    z-index: 2;
}

.timeline-item.completed .timeline-icon {
    background: #111111;
    border-color: #111111;
    color: var(--white);
}

.timeline-item.current .timeline-icon {
    background: #ffffff;
    border-color: #111111;
    color: #111111;
}

.timeline-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
}

.timeline-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Status Badges in Summary */
.status-pill-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.status-pill-badge.pending, 
.status-pill-badge.menunggu, 
.status-pill-badge.menunggu_verifikasi {
    background: #fff8e6;
    color: #f39c12;
}

.status-pill-badge.disetujui, 
.status-pill-badge.lunas, 
.status-pill-badge.diverifikasi {
    background: #e6fffa;
    color: #2ecc71;
}

.status-pill-badge.ditolak {
    background: #fff5f5;
    color: #e53e3e;
}

/* History Page Styles */
.history-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 2rem;
}

.history-card {
    background: var(--white);
    padding: 2rem 3rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f8f8f8;
    transition: var(--transition);
}

.history-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #fff0f3;
}

.history-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.history-icon {
    width: 60px;
    height: 60px;
    background: #fff0f3;
    color: var(--primary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.history-meta h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-main);
}

.history-meta p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.history-meta .price {
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 5px;
}

.history-status-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-history-action {
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid #eeeeee;
    color: var(--text-main);
}

.btn-history-action:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.empty-state {
    text-align: center;
    padding: 8rem 0;
}

.empty-state i {
    font-size: 4rem;
    color: #f0f0f0;
    margin-bottom: 2rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

/* Contact Page Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mini-contact-card {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f8f8f8;
}

.mini-icon {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-main);
    font-size: 1.1rem;
}

.mini-text label {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    color: #cccccc;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.mini-text p {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.map-section-premium {
    background: #f0f0f0;
    height: 250px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-placeholder {
    text-align: center;
    color: #bbbbbb;
}

.map-placeholder i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.map-placeholder p {
    font-size: 0.9rem;
    font-weight: 600;
}

.map-placeholder span {
    font-family: monospace;
    opacity: 0.6;
}
