/* Header Styles override or specific if needed, but general header is in style.css */
/* We will focus on page specific styles */

/* Hero Banner */
.service-hero { background: linear-gradient(135deg, #4F46E5 0%, #6366F1 100%); color: white; padding: 3rem 2rem; }
.hero-container { max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.hero-content h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.75rem; color: white;}
.hero-content p { font-size: 1.1rem; opacity: 0.95; }
.hero-stats { display: flex; gap: 2rem; margin-top: 1.5rem; }
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.75rem; font-weight: 800; }
.hero-stat .label { font-size: 0.85rem; opacity: 0.9; }

/* Main Layout */
.main-container { max-width: 1320px; margin: 0 auto; padding: 2rem; display: grid; grid-template-columns: 1fr 380px; gap: 3rem; }

/* Left Content */
.content-left { }

/* Section Styles */
.content-section { background: white; border-radius: 16px; padding: 2rem; margin-bottom: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.content-section h2 { font-size: 1.35rem; font-weight: 700; color: #111827; margin-bottom: 1.25rem; display: flex; align-items: center; gap: 0.5rem; }
.content-section h3 { font-size: 1.1rem; font-weight: 600; color: #111827; margin: 1.5rem 0 0.75rem; }
.content-section p { color: #4B5563; font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem;}

/* Service Highlights */
.highlights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.highlight-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: #F9FAFB; border-radius: 10px; }
.highlight-icon { width: 40px; height: 40px; background: linear-gradient(135deg, #10B981, #059669); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.25rem; flex-shrink: 0; }
.highlight-item h4 { font-size: 0.95rem; font-weight: 600; color: #111827; margin-bottom: 0.25rem; }
.highlight-item p { font-size: 0.85rem; color: #6B7280; margin: 0; }

/* Packages */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.package-card { border: 2px solid #E5E7EB; border-radius: 12px; padding: 1.5rem; text-align: center; transition: all 0.3s; cursor: pointer; }
.package-card:hover, .package-card.popular { border-color: #4F46E5; }
.package-card.popular { background: linear-gradient(135deg, #EEF2FF, #E0E7FF); }
.package-badge { background: #4F46E5; color: white; font-size: 0.7rem; padding: 0.25rem 0.75rem; border-radius: 50px; font-weight: 600; display: inline-block; margin-bottom: 0.75rem; }
.package-card h4 { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.package-price { font-size: 1.5rem; font-weight: 800; color: #4F46E5; }
.package-price span { font-size: 0.85rem; color: #6B7280; font-weight: 400; }
.package-features { margin-top: 1rem; text-align: left; }
.package-features li { font-size: 0.85rem; color: #4B5563; margin-bottom: 0.5rem; list-style: none; padding-left: 1.25rem; position: relative; }
.package-features li::before { content: "✓"; position: absolute; left: 0; color: #10B981; font-weight: 700; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; }
.gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.hidden { display: none; }

/* FAQ */
.faq-item { border-bottom: 1px solid #E5E7EB; padding: 1rem 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-weight: 600; color: #111827; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: "+"; font-size: 1.25rem; color: #4F46E5; }
.faq-item.active .faq-question::after { content: "−"; }
.faq-answer { color: #4B5563; font-size: 0.95rem; margin-top: 0.75rem; display: none; }
.faq-item.active .faq-answer { display: block; }

/* Providers List */
.providers-list { display: flex; flex-direction: column; gap: 1rem; }
.provider-card { display: flex; gap: 1rem; padding: 1rem; background: #F9FAFB; border-radius: 12px; }
.provider-img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; }
.provider-info { flex: 1; }
.provider-info h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.25rem; }
.provider-rating { color: #F59E0B; font-size: 0.9rem; }
.provider-meta { font-size: 0.85rem; color: #6B7280; }
.provider-tags { display: flex; gap: 0.5rem; margin-top: 0.5rem; flex-wrap: wrap; }
.provider-tag { background: #E5E7EB; padding: 0.2rem 0.6rem; border-radius: 50px; font-size: 0.75rem; color: #4B5563; }

/* Sticky Form */
.sticky-form-wrapper { position: sticky; top: 80px; }
.sticky-form { background: white; border-radius: 20px; box-shadow: 0 4px 25px rgba(0,0,0,0.1); overflow: hidden; }
.form-header { background: linear-gradient(135deg, #4F46E5, #6366F1); color: white; padding: 1.5rem; text-align: center; }
.form-header h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.form-header p { font-size: 0.9rem; opacity: 0.9; }

/* Multi-step Form */
.form-body { padding: 1.5rem; }
.step-indicator { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.step-dot { width: 10px; height: 10px; border-radius: 50%; background: #E5E7EB; transition: all 0.3s; }
.step-dot.active { background: #4F46E5; width: 24px; border-radius: 5px; }
.step-dot.completed { background: #10B981; }

.form-step { display: none; }
.form-step.active { display: block; }
.step-title { font-size: 1.1rem; font-weight: 700; color: #111827; margin-bottom: 1.25rem; text-align: center; }

.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: #374151; margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem; border: 2px solid #E5E7EB; border-radius: 8px; font-size: 0.95rem; transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: #4F46E5; }
.form-group textarea { min-height: 80px; resize: vertical; }
.iti { width: 100%; }

/* Option Buttons */
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.option-btn { padding: 0.75rem; border: 2px solid #E5E7EB; border-radius: 10px; text-align: center; cursor: pointer; transition: all 0.3s; font-size: 0.9rem; }
.option-btn:hover, .option-btn.selected { border-color: #4F46E5; background: #EEF2FF; color: #4F46E5; }
.option-btn .icon { font-size: 1.5rem; margin-bottom: 0.25rem; }

/* Date Picker Style */
.date-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1rem; }
.date-option { padding: 0.6rem; border: 2px solid #E5E7EB; border-radius: 8px; text-align: center; cursor: pointer; font-size: 0.85rem; transition: all 0.3s; }
.date-option:hover, .date-option.selected { border-color: #4F46E5; background: #EEF2FF; }
.date-option .day { font-weight: 700; color: #111827; }
.date-option .date { font-size: 0.75rem; color: #6B7280; }

.btn-primary { width: 100%; background: linear-gradient(135deg, #10B981, #059669); color: white; padding: 0.9rem; border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,185,129,0.3); }
.btn-secondary { width: 100%; background: #F3F4F6; color: #374151; padding: 0.75rem; border: none; border-radius: 10px; font-size: 0.95rem; font-weight: 600; cursor: pointer; margin-top: 0.75rem; }

.form-trust { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.8rem; color: #6B7280; }
.form-trust svg { color: #10B981; }

/* Form Benefits */
.form-benefits { background: #F9FAFB; padding: 1rem 1.5rem; border-top: 1px solid #E5E7EB; }
.benefit-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: #4B5563; margin-bottom: 0.5rem; }
.benefit-row:last-child { margin-bottom: 0; }
.benefit-row svg { color: #10B981; flex-shrink: 0; }

/* Reviews in sidebar */
.sidebar-reviews { background: white; border-radius: 16px; padding: 1.5rem; margin-top: 1.5rem; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.sidebar-reviews h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.mini-review { padding: 0.75rem 0; border-bottom: 1px solid #E5E7EB; }
.mini-review:last-child { border-bottom: none; }
.mini-review-header { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.mini-review-header img { width: 32px; height: 32px; border-radius: 50%; }
.mini-review-header span { font-weight: 600; font-size: 0.85rem; }
.mini-review-header .stars { color: #F59E0B; font-size: 0.8rem; margin-left: auto; }
.mini-review p { font-size: 0.85rem; color: #4B5563; }

@media (max-width: 1024px) {
    .main-container { grid-template-columns: 1fr; }
    .sticky-form-wrapper { position: relative; top: 0; order: -1; }
    .packages-grid { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.lightbox-next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}