/*
 * Dreams & Designs - Express Services Page Styles
 * Version: 1.0.0
 */

/* Express-specific color variables */
:root {
    --color-express: #FF5722;           /* Orange/Red for urgency */
    --color-express-dark: #E64A19;
    --color-express-light: #FF7043;
    --color-success: #25D366;           /* WhatsApp green */
    --color-warning: #FFA726;
}

/* ==========================================================================
   Express Hero Section
   ========================================================================== */
.express-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-express) 0%, var(--color-primary) 100%);
    overflow: hidden;
    margin-top: 130px;
}

.express-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.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,144C960,149,1056,139,1152,122.7C1248,107,1344,85,1392,74.7L1440,64L1440,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 / cover no-repeat;
    opacity: 0.3;
}

.express-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.express-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 4rem 0;
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-white);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.express-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

.express-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.express-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-express {
    background: var(--color-white);
    color: var(--color-express);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-express:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    color: var(--color-express-dark);
}

.express-countdown-wrapper {
    margin-top: 3rem;
}

.countdown-label {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.express-countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    min-width: 100px;
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    font-family: var(--font-secondary);
}

.countdown-label-small {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.countdown-separator {
    font-size: 2.5rem;
    font-weight: 700;
    opacity: 0.7;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.pulse-animation {
    animation: pulse 2s infinite;
}

/* ==========================================================================
   Section Styling
   ========================================================================== */
.section-padding {
    padding: 6rem 0;
}

.bg-light {
    background: var(--color-bg-light);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-express), var(--color-primary));
    margin: 0 auto 1.5rem;
}

.text-center .section-divider {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
}

/* ==========================================================================
   Introduction Section
   ========================================================================== */
.express-intro {
    background: var(--color-white);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

.intro-lead {
    font-size: 1.3rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.express-promises {
    margin-bottom: 4rem;
}

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

.promise-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition-normal);
}

.promise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

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

.promise-item h4 {
    font-size: 1.1rem;
    color: var(--color-dark);
    margin: 0;
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.when-need-express {
    background: var(--color-bg-light);
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid var(--color-express);
}

.when-need-express h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-express);
}

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

.need-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-white);
    border-radius: 8px;
    font-weight: 500;
}

.need-item i {
    color: var(--color-express);
    font-size: 1.2rem;
}

/* ==========================================================================
   Express Services Cards
   ========================================================================== */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.express-service-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: var(--transition-normal);
    border-top: 5px solid var(--color-express);
}

.express-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card-icon {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.service-card-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.service-card-pricing {
    text-align: center;
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.price-from {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-express);
    font-family: var(--font-secondary);
    margin: 0.5rem 0;
}

.price-time {
    display: block;
    font-size: 1rem;
    color: var(--color-gray);
    font-weight: 600;
}

.service-card-description {
    text-align: center;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-card-includes h4,
.service-card-popular h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.service-card-includes ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-card-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.service-card-includes i {
    color: var(--color-express);
    margin-top: 3px;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.popular-tags span {
    background: var(--color-bg-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--color-gray);
    border: 1px solid #e0e0e0;
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
}

/* Express Add-ons */
.express-addons {
    margin-top: 5rem;
}

.addons-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
}

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

.addon-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.featured-addon {
    border: 3px solid var(--color-express);
}

.addon-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-express);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

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

.addon-card h4 {
    text-align: center;
    margin-bottom: 1rem;
}

.addon-meta {
    text-align: center;
    color: var(--color-express);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.addon-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.addon-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-express);
    font-weight: 700;
}

/* ==========================================================================
   Process Timeline
   ========================================================================== */
.express-process {
    background: var(--color-white);
}

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

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-express) 0%, var(--color-primary) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}


/* 1. Base rule */
.timeline-time {
    position: absolute;
    top: 20px;
    background: var(--color-express);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* 2. Odd positioning */
.timeline-item:nth-child(odd) .timeline-time {
    right: 50%;
    margin-right: -145px;
    left: auto;
    transform: none;
}

/* 3. Even positioning */
.timeline-item:nth-child(even) .timeline-time {
    left: 50%;
    margin-left: -145px;
    right: auto;
    transform: none;
}


.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border: 4px solid var(--color-express);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-express);
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 30px;
}


.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    margin-right: calc(50% + 50px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    margin-left: calc(50% + 50px);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.timeline-timing {
    color: var(--color-express);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-details {
    margin-top: 1.5rem;
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.timeline-details h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.timeline-details ul {
    list-style: none;
    padding: 0;
}

.timeline-details li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-express);
}

.timeline-final .timeline-icon {
    background: linear-gradient(135deg, var(--color-express), var(--color-primary));
    color: var(--color-white);
    border-color: var(--color-express);
}

.timeline-final .timeline-content {
    text-align: center;
    background: linear-gradient(135deg, var(--color-express), var(--color-primary));
    color: var(--color-white);
}

/* ==========================================================================
   Why Choose Section
   ========================================================================== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-choose-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition-normal);
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-express), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-white);
    font-size: 1.8rem;
}

.why-choose-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.why-choose-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   Pricing Tables
   ========================================================================== */
.pricing-tables {
    margin-bottom: 4rem;
}

.pricing-table-wrapper {
    margin-bottom: 3rem;
}

.pricing-table-title {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.pricing-table {
    overflow-x: auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
}

.pricing-table th,
.pricing-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.pricing-table thead th {
    background: linear-gradient(135deg, var(--color-express), var(--color-primary));
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
}

.pricing-table tbody tr:hover {
    background: var(--color-bg-light);
}

.highlight-col {
    background: rgba(255, 87, 34, 0.1);
    font-weight: 600;
}

.pricing-table thead .highlight-col {
    background: var(--color-express-dark);
}

.additional-charges {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--color-express);
}

.additional-charges h3 {
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.charges-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.charges-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.charges-list i {
    color: var(--color-express);
    font-size: 1.2rem;
}

.payment-note {
    background: var(--color-white);
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.05rem;
    margin: 0;
}

/* ==========================================================================
   Best For Section
   ========================================================================== */
.best-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.best-for-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.card-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ideal .card-header {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: var(--color-white);
}

.needs-time .card-header {
    background: linear-gradient(135deg, var(--color-warning), #FFB74D);
    color: var(--color-white);
}

.card-header i {
    font-size: 2rem;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.best-for-card ul {
    padding: 2rem;
    list-style: none;
}

.best-for-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid #e0e0e0;
}

.best-for-card li:last-child {
    border-bottom: none;
}

.ideal li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: 700;
    font-size: 1.2rem;
}

.needs-time li::before {
    content: '⚠';
    position: absolute;
    left: 0;
    color: var(--color-warning);
    font-size: 1.2rem;
}

.consultation-cta {
    text-align: center;
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.consultation-cta .lead {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: #FFC107;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.testimonial-author strong {
    color: var(--color-dark);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--color-gray);
    font-size: 0.9rem;
}

.testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-badge,
.timeline-badge {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-badge {
    background: rgba(233, 30, 99, 0.1);
    color: var(--color-primary);
}

.timeline-badge {
    background: rgba(255, 87, 34, 0.1);
    color: var(--color-express);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-bg-light);
}

.faq-question i {
    color: var(--color-express);
    transition: var(--transition-fast);
}

.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 1.5rem 1.5rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   Emergency Section
   ========================================================================== */
.emergency-box {
    background: linear-gradient(135deg, var(--color-express), var(--color-primary));
    color: var(--color-white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.emergency-header {
    text-align: center;
    margin-bottom: 1rem;
}

.emergency-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.emergency-header h2 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.emergency-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.emergency-steps {
    display: grid;
    gap: 2rem;
}

.emergency-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--color-white);
    color: var(--color-express);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-secondary);
}

.step-content h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p {
    margin: 0;
    opacity: 0.95;
}

.step-content a {
    color: var(--color-white);
    text-decoration: underline;
    font-weight: 600;
}

/* ==========================================================================
   Guarantee Section
   ========================================================================== */
.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.guarantee-item {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-express), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-white);
    font-size: 1.8rem;
}

.guarantee-item h4 {
    margin-bottom: 1rem;
}

.guarantee-item p {
    color: var(--color-gray);
    line-height: 1.7;
    margin: 0;
}

.deadline-promise {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.deadline-promise h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.deadline-promise ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.deadline-promise li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.deadline-promise i {
    color: var(--color-express);
    font-size: 1.2rem;
}

/* ==========================================================================
   Booking CTA Section
   ========================================================================== */
.express-booking-cta {
    background: linear-gradient(135deg, var(--color-dark), var(--color-dark-light));
    color: var(--color-white);
}

.booking-cta-box {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-cta-box h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.booking-cta-box > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-express);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.cta-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

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

.btn-success:hover {
    background: #1faa52;
    color: var(--color-white);
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-express);
    flex-shrink: 0;
}

.contact-item > div {
    text-align: left;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--color-white);
    font-size: 1.1rem;
}

.contact-item small {
    display: block;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.express-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
}

.express-hours h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.express-hours p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   Related Services
   ========================================================================== */
.related-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.related-service-card {
    background: var(--color-white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition-normal);
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.related-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-white);
    font-size: 1.8rem;
}

.related-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.related-service-card p {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

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

/* ==========================================================================
   Checklist Section
   ========================================================================== */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.checklist-card {
    background: var(--color-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.checklist-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ready .checklist-header {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: var(--color-white);
}

.better-regular .checklist-header {
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    color: var(--color-white);
}

.checklist-header i {
    font-size: 2rem;
}

.checklist-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.checklist {
    padding: 2rem;
    list-style: none;
}

.checklist li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

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

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

/* ==========================================================================
   Floating Buttons
   ========================================================================== */
.floating-whatsapp,
.floating-call {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition-normal);
}

.floating-whatsapp {
    right: 30px;
    background: var(--color-success);
}

.floating-call {
    right: 110px;
    background: var(--color-express);
}

.floating-whatsapp:hover,
.floating-call:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .express-hero-title {
        font-size: 3rem;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 100px;
    }
    
    .timeline-icon {
        left: 30px;
    }
    
    .timeline-time {
        left: 30px;
        transform: none;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .express-hero {
        min-height: 70vh;
        margin-top: 80px;
    }
    
    .express-hero-title {
        font-size: 2.5rem;
    }
    
    .express-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .express-countdown {
        flex-wrap: wrap;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 1rem 1.5rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .needs-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .best-for-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem;
    }
    
    .cta-buttons-grid {
        grid-template-columns: 1fr;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-whatsapp {
        right: 20px;
        bottom: 20px;
    }
    
    .floating-call {
        right: 90px;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .express-hero-title {
        font-size: 2rem;
    }
    
    .express-hero-subtitle {
        font-size: 1rem;
    }
    
    .emergency-badge,
    .urgent-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .express-service-card {
        padding: 1.5rem;
    }
    
    .service-card-title {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .emergency-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .express-hero,
    .floating-whatsapp,
    .floating-call,
    .express-hero-buttons,
    .cta-buttons-grid {
        display: none;
    }
    
    .section-padding {
        padding: 2rem 0;
    }
    
    .express-service-card,
    .testimonial-card,
    .why-choose-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}