/* 
 * RivieraBooth Booking - Feuille de style principale
 * Thème Premium Sombre & Or (Style Riviera)
 */

:root {
    --bg-primary: #070c16;
    --bg-secondary: #0d1527;
    --card-bg: rgba(20, 29, 48, 0.65);
    --card-border: rgba(212, 175, 55, 0.18);
    --card-border-active: rgba(212, 175, 55, 0.6);
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --accent-gold: #d4af37;
    --accent-gold-hover: #f3d070;
    --accent-gold-glow: rgba(212, 175, 55, 0.25);
    
    --error-red: #f43f5e;
    --error-bg: rgba(244, 63, 94, 0.12);
    --success-green: #10b981;
    --success-bg: rgba(16, 185, 129, 0.12);
    --info-blue: #3b82f6;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(21, 37, 69, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.margin-top-sm { margin-top: 10px; }
.margin-top-md { margin-top: 20px; }
.margin-top-lg { margin-top: 30px; }
.margin-top-xl { margin-top: 40px; }
.text-muted { color: var(--text-muted); }

/* Header */
.app-header {
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background-color: rgba(7, 12, 22, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo-accent {
    color: var(--accent-gold);
    font-style: italic;
    margin-right: 2px;
}

/* Footer */
.app-footer {
    margin-top: auto;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
    color: var(--text-muted);
}

/* Main Layout */
.app-main {
    padding: 40px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-wrapper {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Glassmorphism Cards */
.card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.02);
}

.card-header {
    margin-bottom: 30px;
}

.card-header h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 300;
}

/* Forms Elements */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="date"],
select {
    width: 100%;
    padding: 16px 20px;
    background-color: rgba(13, 21, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition-smooth);
}

input:focus, select:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(13, 21, 39, 0.9);
    box-shadow: 0 0 15px var(--accent-gold-glow);
}

input.input-error, select.input-error {
    border-color: var(--error-red);
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.15);
}

.error-msg {
    display: block;
    color: var(--error-red);
    font-size: 14px;
    margin-top: 6px;
    font-weight: 500;
}

.help-text {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: #070c16;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background-color: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background-color: rgba(212, 175, 55, 0.05);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-large {
    padding: 18px 36px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.form-actions.text-right {
    justify-content: flex-end;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
    position: relative;
}

.progress-track {
    position: absolute;
    top: 20px;
    left: 12%;
    right: 12%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-hover));
    box-shadow: 0 0 10px var(--accent-gold);
    width: 0;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 24%;
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.step-text {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    margin-top: 10px;
    text-align: center;
    transition: var(--transition-smooth);
}

.step-node.active .step-num {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.step-node.active .step-text {
    color: var(--accent-gold);
    font-weight: 700;
}

.step-node.completed .step-num {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #070c16;
}

/* Options Grid (Radio cards) */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 15px;
}

@media(min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.option-card {
    background-color: rgba(13, 21, 39, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-md);
    padding: 24px;
    cursor: pointer;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.option-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background-color: rgba(13, 21, 39, 0.7);
    transform: translateY(-3px);
}

.option-card.selected {
    border-color: var(--accent-gold);
    background-color: rgba(21, 37, 69, 0.5);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.1);
}

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

.option-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.option-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--accent-gold);
    letter-spacing: 0.5px;
}

.option-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

.option-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-top: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Live Price Panel */
.live-price-box {
    margin-top: 35px;
    padding: 20px;
    background-color: rgba(212, 175, 55, 0.06);
    border: 1px dashed rgba(212, 175, 55, 0.3);
    border-radius: var(--border-radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.live-price-label {
    font-size: 16px;
    color: var(--text-secondary);
}

.live-price-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Recap step */
.recap-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

@media(min-width: 768px) {
    .recap-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.recap-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.recap-section {
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.recap-section:last-child {
    border-bottom: none;
}

.recap-section h3 {
    font-size: 16px;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recap-section p {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.recap-section p strong {
    color: var(--text-primary);
}

.highlight {
    color: var(--accent-gold);
    font-weight: 700;
}

.recap-invoice {
    background-color: rgba(13, 21, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-md);
    padding: 24px;
}

.recap-invoice h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 10px;
}

.invoice-table {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-secondary);
}

.invoice-row span:last-child {
    color: var(--text-primary);
    font-weight: 600;
}

.invoice-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin: 10px 0;
}

.invoice-row.total-row {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-gold);
}

.invoice-row.total-row span:last-child {
    color: var(--accent-gold);
    font-size: 24px;
    font-weight: 800;
}

.payment-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.4;
}

/* Alert blocks */
.alert {
    padding: 15px 20px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
}

.alert-danger {
    background-color: var(--error-bg);
    border: 1px solid rgba(244, 63, 94, 0.3);
    color: #fda4af;
}

/* Confirmation Page */
.confirmation-card {
    padding: 50px 30px;
    max-width: 650px;
    margin: 0 auto;
}

.success-icon-wrapper {
    margin-bottom: 25px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.15);
    border: 3px solid var(--success-green);
    color: var(--success-green);
    font-size: 40px;
    line-height: 74px;
    display: inline-block;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.confirmation-details {
    background-color: rgba(13, 21, 39, 0.5);
    border-radius: var(--border-radius-sm);
    padding: 20px 25px;
}

.confirmation-details h3 {
    color: var(--accent-gold);
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.confirmation-details ul {
    list-style: none;
}

.confirmation-details li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.next-steps-info {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Admin Styling */
.card-admin-login {
    max-width: 450px;
    margin: 0 auto;
}

.admin-dashboard {
    width: 100%;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-card {
    padding: 0;
    overflow: hidden;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th {
    background-color: rgba(7, 12, 22, 0.5);
    color: var(--accent-gold);
    text-align: left;
    padding: 18px 20px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

.no-data {
    color: var(--text-muted);
    font-style: italic;
    padding: 40px !important;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-date {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-weight: 600;
}

.client-email {
    color: var(--text-secondary);
    font-size: 12px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.client-email:hover {
    color: var(--accent-gold);
}

.client-phone {
    color: var(--text-muted);
    font-size: 11px;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: 2px;
}

.client-phone:hover {
    color: var(--accent-gold);
}

.table-text-custom {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-price {
    font-weight: 700;
    color: var(--accent-gold);
}

.status-select {
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    cursor: pointer;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 28px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.status-select.select-pending {
    background-color: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
    color: #fcd34d;
}

.status-select.select-confirmed {
    background-color: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.status-select.select-cancelled {
    background-color: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

/* ---------------------------------------------------- */
/* HOMEPAGE STYLING                                     */
/* ---------------------------------------------------- */

.app-main.full-width {
    padding: 0;
    max-width: 100%;
}

.container-home {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold-text {
    background: linear-gradient(135deg, #f5d061 0%, #d4af37 60%, #a8831b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Home Disclaimer */
.home-disclaimer {
    background-color: rgba(212, 175, 55, 0.08);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: var(--text-primary);
}

.home-disclaimer p {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(212, 175, 55, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Hero Section */
.home-hero {
    padding: 60px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 24px;
    border-left: 3px solid var(--accent-gold);
    padding-left: 15px;
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Badge Card */
.hero-badge-card {
    text-align: center;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(20, 29, 48, 0.45);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.05);
}

.price-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.badge-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
}

.badge-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-primary);
}

.feat-svg {
    width: 18px;
    height: 18px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

/* Home Strip Banner */
.home-banner-strip {
    background-color: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
    text-align: center;
}

.home-banner-strip h2 {
    font-family: var(--font-heading);
    font-size: clamp(16px, 2.5vw, 22px);
    font-weight: 500;
    color: var(--accent-gold);
    letter-spacing: 0.5px;
}

/* Features Grid */
.home-features {
    padding: 80px 0;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-card {
    padding: 35px;
    text-align: left;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent-gold);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background-color: var(--accent-gold);
    color: #070c16;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Contact Home Section */
.home-contact {
    padding: 0 0 85px 0;
}

.contact-wrapper-home {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 45px;
    align-items: center;
    background-color: rgba(13, 21, 39, 0.45);
}

@media (min-width: 768px) {
    .contact-wrapper-home {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-lead {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.contact-label {
    font-weight: 600;
    color: var(--accent-gold);
    min-width: 110px;
}

.contact-value {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a.contact-value:hover {
    color: var(--accent-gold-hover);
    text-decoration: underline;
}

.contact-cta-box {
    background-color: rgba(7, 12, 22, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 30px;
    text-align: center;
}

.contact-cta-box h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.contact-cta-box p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

/* Footer Additions */
.footer-address {
    margin-top: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.footer-socials {
    margin-top: 12px;
}

.social-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.social-link:hover {
    color: var(--accent-gold-hover);
    text-decoration: underline;
}

.social-svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

.footer-admin {
    margin-top: 18px;
    font-size: 11px;
}

.admin-link-discrete {
    color: var(--text-muted);
    text-decoration: none;
    opacity: 0.4;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.admin-link-discrete:hover {
    color: var(--accent-gold);
    opacity: 1;
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--accent-gold);
}

@media (max-width: 480px) {
    .header-nav {
        gap: 12px;
    }
    .nav-link {
        font-size: 14px;
    }
    .logo {
        font-size: 22px;
    }
}

/* Responsive Admin Dashboard */
@media (max-width: 992px) {
    .admin-table thead {
        display: none; /* Hide standard headers on tablet/mobile */
    }

    .admin-table, 
    .admin-table tbody, 
    .admin-table tr, 
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table tr {
        margin-bottom: 25px;
        border: 1px solid var(--card-border);
        border-left: 4px solid var(--accent-gold);
        border-radius: var(--border-radius-sm);
        background-color: rgba(13, 21, 39, 0.45);
        padding: 16px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .admin-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 0;
        border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
        text-align: right;
        font-size: 14px;
    }

    .admin-table td:last-child {
        border-bottom: none;
        padding-bottom: 4px;
    }

    /* Inject labels from data-label */
    .admin-table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--accent-gold);
        text-transform: uppercase;
        font-size: 11px;
        letter-spacing: 1px;
        text-align: left;
        padding-right: 20px;
    }

    .admin-table td.table-text-custom {
        max-width: 100%;
        white-space: normal;
        overflow: visible;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .client-info {
        align-items: flex-end;
    }

    /* Optimize select input on mobile */
    .status-select {
        width: 130px;
        padding: 6px 10px;
        font-size: 12px;
    }
}

/* Improve Desktop Admin View */
.admin-table th {
    letter-spacing: 0.8px;
}

.admin-table td {
    transition: var(--transition-smooth);
}

.dashboard-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/* Input Icons Styles */
.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.input-icon-wrapper .input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-icon-wrapper input {
    padding-left: 52px !important;
}

.input-icon-wrapper input:focus + .input-icon {
    color: var(--accent-gold);
    filter: drop-shadow(0 0 4px var(--accent-gold-glow));
}

/* Admin Tabs Styling */
.admin-tabs .tab-btn {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-secondary);
    background-color: transparent;
    padding: 8px 20px;
    font-weight: 500;
}

.admin-tabs .tab-btn.active {
    background-color: var(--accent-gold);
    color: #070c16;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* Template Cards in booking form & admin panel */
.template-card-el {
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.template-card-el:hover {
    border-color: rgba(212, 175, 55, 0.4) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.template-card-el.selected-tmpl {
    border-color: var(--accent-gold) !important;
    background-color: rgba(212, 175, 55, 0.05) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15) !important;
}

.template-preview-box img {
    pointer-events: none;
}







