/* How It Works Page Styles */

:root {
    --primary-color: #ff6b35;
    --secondary-color: #004e89;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --success-color: #28a745;
    --text-color: #333;
    --border-color: #ddd;
}

/* Hero Section */
.how-it-works-hero {
    position: relative;
    height: 360px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.how-it-works-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="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,128C1248,117,1344,107,1392,101.3L1440,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>') bottom center no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Common Section Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
}

section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Overview */
.process-overview {
    background: var(--light-color);
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.overview-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

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

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

/* Process Steps Timeline */
.process-steps {
    background: var(--white);
}

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

.step-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 100px;
}

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

.step-item::before {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    bottom: -60px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.step-item:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.step-content {
    background: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateX(10px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-info h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.step-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.step-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.feature i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.step-btn {
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.step-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.step-note {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: 500;
}

.step-note i {
    font-size: 1.2rem;
}

.transport-options {
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.transport-type {
    padding: 10px 0;
    color: #666;
}

.transport-type:first-child {
    border-bottom: 1px solid var(--border-color);
}

.transport-type strong {
    color: var(--dark-color);
}

/* Timeline Expectations */
.timeline-expectations {
    background: var(--light-color);
}

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

.timeline-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.timeline-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.timeline-duration {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.timeline-card p {
    color: #666;
    margin-bottom: 20px;
}

.timeline-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.timeline-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.timeline-card li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.timeline-note {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid var(--primary-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.timeline-note i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.timeline-note p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Preparation Checklist */
.preparation-checklist {
    background: var(--white);
}

.checklist-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    margin-top: 2rem;
}

.checklist-section {
    background: var(--light-color);
    padding: 30px;
    border-radius: 15px;
}

.checklist-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.checklist-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.checklist-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.checklist-categories {
    display: grid;
    gap: 24px;
}

.checklist-category h4 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-category h4 i {
    color: var(--primary-color);
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-items li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-color);
}

.checklist-items li:last-child {
    border-bottom: none;
}

.checklist-items input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--success-color);
}

.checklist-items label {
    color: #666;
    cursor: pointer;
    flex: 1;
}

.checklist-items input[type="checkbox"]:checked + label {
    color: var(--success-color);
    text-decoration: line-through;
}

/* Checklist Tips */
.checklist-tips {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-tips h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist-tips h3 i {
    color: var(--primary-color);
}

.tip-card {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    border-left: 4px solid var(--primary-color);
}

.tip-card i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.tip-card strong {
    color: var(--dark-color);
    display: block;
    margin-bottom: 8px;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQs Section */
.faqs-section {
    background: var(--light-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

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

.faq-question h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin: 0;
}

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

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
}

.faq-cta p {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-btn {
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.primary-cta-btn,
.secondary-cta-btn {
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-cta-btn {
    background: var(--white);
    color: var(--primary-color);
}

.primary-cta-btn:hover {
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.secondary-cta-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.secondary-cta-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .checklist-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .overview-cards,
    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        padding-left: 0;
        padding-top: 100px;
    }
    
    .step-item::before {
        left: 50%;
        transform: translateX(-50%);
        top: 80px;
    }
    
    .step-number {
        left: 50%;
        transform: translateX(-50%);
        top: 0;
    }
    
    .step-content:hover {
        transform: translateY(-5px);
    }
    
    .step-features {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
    }
}


/* ====================================
   HOW IT WORKS PAGE - Light Mode Styles
   ==================================== */
body[data-theme="light"] .how-hero,
body[data-theme="light"] .how-it-works-hero {
  background: linear-gradient(135deg, #ff6347 0%, #ff8c00 100%) !important;
}

body[data-theme="light"] .steps-section,
body[data-theme="light"] .process-section {
  background: #f8f9fa !important;
}

body[data-theme="light"] .step-card,
body[data-theme="light"] .process-card {
  background: #ffffff !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
}

body[data-theme="light"] .step-card h3,
body[data-theme="light"] .process-card h3 {
  color: #1a1a1a !important;
}

body[data-theme="light"] .step-card p,
body[data-theme="light"] .process-card p {
  color: #555 !important;
}

body[data-theme="light"] .step-number {
  background: linear-gradient(135deg, #ff6347, #ff4500) !important;
  color: #ffffff !important;
}

body[data-theme="light"] .timeline-section {
  background: #ffffff !important;
}

body[data-theme="light"] .timeline-item {
  background: #f8f9fa !important;
}

body[data-theme="light"] .timeline-item h3 {
  color: #1a1a1a !important;
}

body[data-theme="light"] .timeline-item p {
  color: #555 !important;
}

body[data-theme="light"] .section-title {
  color: #1a1a1a !important;
}

body[data-theme="light"] .section-subtitle {
  color: #555 !important;
}
