/* ========================================
   MODERN HOME PAGE STYLES - FLYEX.AZ
   ======================================== */

/* Reset conflicting styles from old layout */
.hero-section,
.slider-section,
.tracking-section,
.calc-exchange-section,
.how-it-works-section,
.advantages-section,
.shops-section,
.news-section {
    padding: 80px 0 !important;
    background-color: transparent !important;
}

.hero-section {
    padding: 80px 0 60px !important;
}

.slider-section {
    padding: 0 0 0 !important;
    margin-top: 0 !important;
}

.calc-exchange-section {
    padding: 60px 0 !important;
}

/* Override section default styles */
section.hero-section,
section.slider-section,
section.tracking-section,
section.calc-exchange-section,
section.how-it-works-section,
section.advantages-section,
section.shops-section,
section.news-section {
    margin: 0 !important;
    width: 100% !important;
    overflow: visible !important;
}

:root {
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --secondary-color: #764ba2;
    --accent-color: #01e9b9;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --border-radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    margin-bottom: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.hero-feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

/* ========================================
   CALCULATOR & EXCHANGE SECTION
   ======================================== */

.calc-exchange-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.modern-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-header-modern {
    margin-bottom: 30px;
}

.card-header-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-header-modern p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

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

.form-group-modern label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-control-modern {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.btn-calculate {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-calculate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.calc-result {
    margin-top: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
    text-align: center;
}

.calc-result-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.calc-result-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Exchange Rate Card */
.exchange-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
    border: none !important;
}

.exchange-card .card-header-modern h3,
.exchange-card .card-header-modern p,
.exchange-card .form-group-modern label {
    color: white !important;
}

.exchange-display {
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-top: 20px;
}

.exchange-amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin-top: 10px;
}

/* ========================================
   TRACKING COMPACT (Next to Slider)
   ======================================== */

.tracking-card-compact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.tracking-header {
    margin-bottom: 25px;
}

.tracking-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white !important;
}

.tracking-header p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    color: white !important;
}

.tracking-input-compact {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transition: var(--transition);
    margin-bottom: 15px;
}

.tracking-input-compact::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.tracking-input-compact:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.25);
}

.btn-tracking-compact {
    width: 100%;
    padding: 15px 30px;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-tracking-compact:hover {
    background: #00d4a5;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 233, 185, 0.4);
}

.tracking-features {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.tracking-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
}

.tracking-feature-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.tracking-feature-item span {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ========================================
   EXCHANGE RATE SECTION (Standalone)
   ======================================== */

.exchange-section {
    background: var(--bg-light);
    padding: 60px 0;
}

/* ========================================
   TRACKING SECTION
   ======================================== */

.tracking-section {
    background: white;
    padding: 0 !important;
}

.tracking-card-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 50px;
}

.tracking-left {
    flex: 1;
    color: white !important;
}

.tracking-left h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white !important;
}

.tracking-left p {
    font-size: 1.05rem;
    opacity: 0.95;
    line-height: 1.7;
    color: white !important;
}

.tracking-left i {
    color: white !important;
}

.tracking-left span {
    color: white !important;
}

.tracking-right {
    flex: 1;
    max-width: 500px;
}

.tracking-input-modern {
    width: 100%;
    padding: 20px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-tracking {
    width: 100%;
    padding: 20px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-tracking:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    background: var(--bg-light);
    padding: 80px 0;
}

/* Hero Features Inline */
.hero-features-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.hero-feature-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hero-feature-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    min-width: 50px;
}

.hero-feature-box h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.hero-feature-box p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================
   ADVANTAGES SECTION
   ======================================== */

.advantages-section {
    background: white;
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.advantage-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.advantage-card:hover img {
    transform: scale(1.05);
}

/* ========================================
   SHOPS SECTION
   ======================================== */

.shops-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.shop-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 120px;
}

.shop-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.shop-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.shop-item:hover img {
    filter: grayscale(0%);
}

.btn-all-shops {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-all-shops:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white;
}

/* ========================================
   NEWS SECTION
   ======================================== */

.news-section {
    background: white;
    padding: 80px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.news-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date i {
    color: var(--primary-color);
}

.news-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.4;
    flex: 1;
}

.news-title:hover {
    color: var(--primary-color);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.news-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ========================================
   SLIDER SECTION
   ======================================== */

.slider-section {
    background: var(--bg-light);
    padding: 20px 0 40px!important;
}

.slider-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.slider-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Home Slider Specific Styles */
.home-slider {
    border-radius: 16px;
    overflow: hidden;
}

.home-slider .slider-item {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 16px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-slider .slider-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Owl Carousel Navigation for Home Slider */
.home-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    margin-top: 0 !important;
}

.home-slider .owl-nav button {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.95) !important;
    color: var(--primary-color) !important;
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    font-size: 22px !important;
    border: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    line-height: 1 !important;
    padding: 0 !important;
}

.home-slider .owl-nav button i {
    line-height: 1;
}

.home-slider .owl-nav button:hover {
    background: white !important;
    transform: scale(1.15);
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
}

.home-slider .owl-nav button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Owl Carousel Dots for Home Slider */
.home-slider .owl-dots {
    text-align: center;
    margin-top: 20px !important;
    position: relative;
}

.home-slider .owl-dot {
    display: inline-block;
    margin: 0 6px;
}

.home-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ccc !important;
    border-radius: 50%;
    display: block;
    transition: all 0.3s ease;
}

.home-slider .owl-dot.active span {
    background: var(--primary-color) !important;
    width: 32px;
    border-radius: 6px;
}

.home-slider .owl-dot:hover span {
    background: var(--primary-color) !important;
    opacity: 0.7;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .tracking-card-modern {
        flex-direction: column;
        padding: 40px 30px;
    }

    .tracking-right {
        max-width: 100%;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .modern-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .calc-exchange-section,
    .tracking-section,
    .how-it-works-section,
    .advantages-section,
    .shops-section,
    .news-section {
        padding: 50px 0;
    }

    .shops-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .shop-item {
        height: 100px;
        padding: 15px;
    }

    .news-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 50px 0 40px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .modern-card {
        padding: 25px 15px;
    }

    .tracking-card-modern {
        padding: 30px 20px;
    }

    .btn-calculate,
    .btn-tracking {
        padding: 16px;
        font-size: 1rem;
    }
}

/* ========================================
   UTILITIES
   ======================================== */

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* ========================================
   OVERRIDE OLD LAYOUT STYLES
   ======================================== */

/* Reset old card styles */
.modern-card.card,
.advantage-card.card,
.news-card.card,
.shop-item.card {
    border: none !important;
    margin-bottom: 0 !important;
}

/* Reset old section backgrounds */
section.background-grey {
    background-color: var(--bg-light) !important;
}

/* Override old button styles */
.btn-calculate,
.btn-tracking,
.btn-all-shops {
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Fix container issues */
.hero-section .container,
.slider-section .container,
.tracking-section .container,
.calc-exchange-section .container,
.how-it-works-section .container,
.advantages-section .container,
.shops-section .container,
.news-section .container {
    max-width: 1200px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

/* Override old form styles */
.form-control-modern {
    height: auto !important;
    line-height: normal !important;
}

/* Fix image styles */
.news-image img,
.advantage-card img,
.shop-item img {
    max-width: 100% !important;
    height: auto !important;
}

/* Override old link styles */
.news-link,
.news-title {
    text-decoration: none !important;
}

.news-link:hover,
.news-title:hover {
    text-decoration: none !important;
}

/* Fix row and col spacing */
.hero-section .row,
.slider-section .row,
.tracking-section .row,
.calc-exchange-section .row,
.how-it-works-section .row,
.advantages-section .row,
.shops-section .row,
.news-section .row {
    margin-left: -15px !important;
    margin-right: -15px !important;
}

/* Ensure proper z-index */
.hero-section {
    position: relative !important;
    z-index: 1 !important;
}

/* Fix owl carousel conflicts - Updated */
.slider-container .owl-stage-outer {
    border-radius: 16px;
    overflow: hidden;
}

.slider-container .owl-item {
    border-radius: 16px;
}

/* Ensure carousel is visible */
.owl-carousel {
    display: block !important;
}

.owl-carousel .owl-stage-outer {
    position: relative;
}

.owl-carousel .owl-item {
    backface-visibility: hidden;
}

.owl-carousel .owl-item img {
    height: 450px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .owl-carousel .owl-item img {
        height: 250px !important;
    }
}

/* Mobile fixes */
@media (max-width: 768px) {
    .hero-section,
    .tracking-section,
    .calc-exchange-section,
    .how-it-works-section,
    .advantages-section,
    .shops-section,
    .news-section {
        padding: 50px 0 !important;
    }

    .hero-section {
        padding: 50px 0 40px !important;
    }

    .hero-features-inline {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-feature-box {
        padding: 20px;
    }

    .hero-feature-box i {
        font-size: 2rem;
    }

    .home-slider .slider-item {
        height: 250px;
    }

    .tracking-card-compact {
        padding: 25px;
        margin-top: 20px;
    }

    .tracking-header h3 {
        font-size: 1.5rem;
    }

    .tracking-features {
        flex-wrap: wrap;
        gap: 15px;
    }
}
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.step-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

