/* Supporting Pages Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.page-hero .breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.page-hero .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.page-hero .breadcrumb a:hover {
    opacity: 0.7;
}

.page-hero .breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.page-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Detailed */
.process-detailed {
    padding: 80px 0;
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.process-step-detailed {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.process-step-detailed:last-child {
    margin-bottom: 0;
}

.process-step-detailed .step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.process-step-detailed .step-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.process-step-detailed .step-content:hover {
    transform: translateY(-5px);
}

.process-step-detailed h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.process-step-detailed p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.process-step-detailed ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.process-step-detailed li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    line-height: 1.6;
}

.process-step-detailed li:last-child {
    border-bottom: none;
}

.process-step-detailed strong {
    color: #333;
    font-weight: 600;
}

.step-highlight {
    background: #f8f9fa;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.step-highlight i {
    color: #27ae60;
    font-size: 1.2rem;
}

.step-highlight span {
    color: #333;
    font-weight: 500;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

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

.faq-question h4 {
    color: #333;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-question i {
    color: #27ae60;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background: white;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.payment-item {
    text-align: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.payment-item i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.payment-item h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.payment-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    font-weight: 500;
}

.badge i {
    color: #27ae60;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/about/about.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-text h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.values-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.value-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.value-item h3 {
    color: #333;
    margin-bottom: 1rem;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* About Us Section Specific Styles */
.about-us {
    padding: 80px 0;
    background: white;
}

.about-us .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.about-us .about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-us .about-text h3 {
    color: #27ae60;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-us .about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-us .about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.about-us .about-text li {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    line-height: 1.7;
}

.about-us .about-text li:last-child {
    border-bottom: none;
}

.about-us .about-text li strong {
    color: #27ae60;
    font-weight: 600;
}

/* Responsive styles for about section */
@media (max-width: 768px) {
    .about-us .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-us .about-image {
        order: -1;
    }
    
    .about-us .about-text p {
        text-align: left;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
    text-align: center;
}

.contact-main {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-detail:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-detail i {
    font-size: 2rem;
    color: #27ae60;
    width: 50px;
    text-align: center;
}

.contact-detail div h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-detail div p {
    color: #666;
    margin: 0;
}

.contact-detail.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
}

.contact-detail.whatsapp i,
.contact-detail.whatsapp h4,
.contact-detail.whatsapp p {
    color: white;
}

.contact-form-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-section h3 {
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Contact Methods Section */
.contact-methods-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-method-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.contact-method-card i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.contact-method-card h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-method-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-detail small {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.25rem;
}

.contact-detail.whatsapp small {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.btn-whatsapp:hover {
    background: white;
    color: #25d366;
}

/* Active Navigation Link */
.nav-link.active {
    color: #27ae60;
    font-weight: 600;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
        margin-top: 70px;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step-detailed {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 3rem;
    }

    .process-step-detailed .step-content {
        width: 100%;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-badges {
        flex-direction: column;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .process-step-detailed .step-content {
        padding: 2rem;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cta-section,
    .footer {
        display: none;
    }
    
    .page-hero {
        background: none;
        color: #333;
        margin-top: 0;
    }
    
    .process-step-detailed .step-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}