/* Prefixed Consultation Styles for booking-consultation-overview.php */
:root {
    --bco-color-gold: #D4AF37;
    --bco-color-gold-light: #fdf5e6;
    --bco-color-dark-gray: #1a1a1a;
    --bco-color-light-gray: #f9f9f9;
    --bco-color-success: #28a745;
    --bco-font-heading: 'Playfair Display', serif;
    --bco-font-body: 'Outfit', sans-serif;
}

/* Utilities */
.bco-text-gold { color: var(--bco-color-gold); }
.bco-w-100 { width: 100% !important; }
.bco-bg-light { background-color: var(--bco-color-light-gray) !important; }
.bco-text-center { text-align: center !important; }

/* Hero Section */
.bco-consult-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../assets/images/gallery_4.png');
    background-size: cover;
    background-position: center;
    padding: 100px 1.5rem 3rem;
}

.bco-hero-content {
    max-width: 800px;
}

.bco-brand-label {
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    color: var(--bco-color-gold);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.bco-hero-content h1 {
    font-family: var(--bco-font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.bco-hero-content p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.bco-section-padding {
    padding: 6rem 0;
}

.bco-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.bco-section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.bco-section-title h2 {
    font-family: var(--bco-font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.bco-section-title p {
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.bco-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 1rem;
}

.bco-info-item {
    text-align: center;
}

.bco-info-icon {
    font-size: 2.5rem;
    color: var(--bco-color-gold);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.bco-info-item h3 {
    font-family: var(--bco-font-heading);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bco-info-item p {
    color: #666;
    line-height: 1.6;
}

/* Card Selection (Types) */
.bco-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 420px));
    gap: 2.5rem;
    margin: 3rem auto 0;
    max-width: 950px;
    justify-content: center;
}

.bco-type-card {
    background: white;
    border: 1px solid #eee;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bco-type-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--bco-color-gold);
    transform: translateY(-5px);
}

.bco-type-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bco-color-gold);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 20px;
}

.bco-type-card h3 {
    font-family: var(--bco-font-heading);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.bco-type-price {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.bco-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
    text-align: left;
}

.bco-type-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    display: flex;
    align-items: center;
}

.bco-type-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--bco-color-gold);
    margin-right: 1rem;
    font-size: 0.8rem;
}

.bco-hero-actions {
    margin-top: 3rem;
}

.bco-card-actions {
    margin-top: 2.5rem;
}

@media (max-width: 640px) {
    .bco-hero-actions { margin-top: 2rem; }
    .bco-card-actions { margin-top: 1.5rem; }
}

/* Buttons */
.bco-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-family: var(--bco-font-body);
    font-size: 1rem;
}

.bco-btn-gold {
    background: var(--bco-color-gold);
    color: white;
}

.bco-btn-gold:hover {
    background: #000;
}

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

.bco-btn-outline:hover {
    background: var(--bco-color-gold);
    color: white;
}

/* Mobile Adjustments */
.bco-who-item {
    text-align: left;
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
}

.bco-who-item:nth-child(1) { background: #fffcf5; }
.bco-who-item:nth-child(2) { background: #fdf5e6; }

@media (max-width: 1024px) {
    .bco-container { padding: 0 1.5rem; }
    .bco-section-padding { padding: 5rem 0; }
}

@media (max-width: 768px) {
    .bco-consult-hero { 
        min-height: 50vh; 
        padding: 120px 1rem 4rem;
    }
    .bco-hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .bco-hero-content p { font-size: 1.1rem; }
    
    .bco-section-padding { padding: 4rem 0; }
    .bco-section-title { margin-bottom: 3rem; }
    .bco-section-title h2 { font-size: 2.25rem; }
    
    .bco-info-grid { gap: 2rem; }
    .bco-type-grid { grid-template-columns: 1fr; gap: 2rem; }
    .bco-type-card { padding: 2.5rem 2rem; }

    .bco-who-item { padding: 2rem; }
}

@media (max-width: 640px) {
    .bco-consult-hero { 
        min-height: 400px;
        padding-top: 100px;
    }
    .bco-hero-content h1 { font-size: 2rem; }
    .bco-hero-content p { font-size: 1rem; }
    .bco-brand-label { font-size: 0.8rem; letter-spacing: 0.2em; margin-bottom: 1rem; }
    
    .bco-section-padding { padding: 3.5rem 0; }
    .bco-section-title h2 { font-size: 1.85rem; }
    .bco-section-title p { font-size: 0.95rem; }
    
    .bco-info-icon { font-size: 2.25rem; margin-bottom: 1rem; }
    .bco-info-item h3 { font-size: 1.35rem; }
    .bco-info-item p { font-size: 0.9rem; }
    
    .bco-type-card { padding: 2.25rem 1.5rem; }
    .bco-type-card h3 { font-size: 1.6rem; }
    .bco-type-price { font-size: 1.75rem; margin-bottom: 1.5rem; }
    .bco-type-features li { font-size: 0.9rem; padding: 0.75rem 0; }
    
    .bco-btn { width: 100%; text-align: center; }
    .bco-hero-content .bco-btn { padding: 1rem 2rem; }
}

@media (max-width: 480px) {
    .bco-consult-hero { height: auto; min-height: 400px; padding-bottom: 3rem; }
    .bco-hero-content h1 { font-size: 1.85rem; }
    .bco-section-title h2 { font-size: 1.65rem; }
    
    .bco-info-grid { gap: 2.5rem; }
    .bco-who-item { padding: 1.5rem; }
    
    .bco-type-card h3 { font-size: 1.45rem; }
    .bco-type-price { font-size: 1.5rem; }
}
