/* Service Page Styles */

/* Service Hero */
.service-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23FFD700" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    opacity: 0.5;
}

.service-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: #000;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 40px;
}

.service-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Service Overview */
.service-overview {
    padding: 80px 0;
    background: #FAFAFA;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.overview-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #D97706;
    margin-bottom: 25px;
    line-height: 1.7;
}

.overview-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.overview-content h3 {
    font-size: 1.8rem;
    margin: 35px 0 20px;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0;
    font-size: 1.05rem;
    line-height: 1.7;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-top: 3px;
}

.feature-list strong {
    color: #000;
}

/* Sidebar */
.quick-info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.quick-info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #F0F0F0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 3px;
}

.info-item strong {
    display: block;
    font-size: 1rem;
    color: #000;
    margin-bottom: 3px;
}

.info-item span {
    font-size: 0.95rem;
    color: #666;
}

.cta-box-sidebar {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-box-sidebar h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #000;
}

.cta-box-sidebar p {
    margin-bottom: 20px;
    color: #222;
}

/* Who Section */
.who-section {
    padding: 80px 0;
    background: white;
}

.section-title-center {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.who-card {
    background: #FAFAFA;
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.who-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.who-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.who-card p {
    color: #666;
    line-height: 1.6;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.results-section .section-title-center {
    color: white;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.15);
}

.result-icon {
    background: var(--gradient-gold);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-icon i {
    font-size: 2.5rem;
    color: #000;
}

.result-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.result-card p {
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.client-name {
    font-size: 0.95rem;
    opacity: 0.7;
    font-style: italic;
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: #F9F9F9;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.booking-info > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #555;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-option {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-option > i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-top: 5px;
}

.contact-option h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-option p {
    color: #666;
    margin-bottom: 15px;
}

/* Form Styles */
.service-booking-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.service-booking-form h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-note {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    margin-top: 15px;
}

/* Buttons */
.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp-large {
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-secondary-large {
    background: white;
    color: #000;
    padding: 18px 40px;
    border-radius: 35px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
}

.btn-secondary-large:hover {
    border-color: var(--primary-gold);
    background: #FFFBF0;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FAFAFA;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #F0F0F0;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #555;
    line-height: 1.7;
}

/* Final CTA */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.final-cta-box {
    text-align: center;
}

.final-cta-box h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #000;
}

.final-cta-box > p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #222;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-gold);
}

.footer-section p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .overview-grid,
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-booking-form {
        padding: 25px;
    }
    
    .final-cta-box h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
