:root {
    --primary: #4361ee;
    --secondary: #3a0ca3;
    --accent: #f72585;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #4cc9f0;
    --warning: #f9c74f;
    --danger: #f94144;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f5f7fb;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline {
    background: transparent;
    border: 1px solid white;
    color: white;
    margin-right: 10px;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #e51279;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(rgba(67, 97, 238, 0.05), rgba(58, 12, 163, 0.1)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23f5f7fb"/><path d="M0 50 L100 50 M50 0 L50 100" stroke="%23e9ecef" stroke-width="1"/></svg>');
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--gray);
}

/* Services Section */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

.services {
    padding: 4rem 0;
}

.platform-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    gap: 10px;
}

.platform-tab {
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.platform-tab i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.platform-tab.active {
    background: var(--primary);
    color: white;
}

.platform-tab:hover:not(.active) {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.service-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.service-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-body {
    padding: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-price {
    color: var(--primary);
    font-weight: 600;
}

/* Order Form */
.order-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(67, 97, 238, 0.03), rgba(58, 12, 163, 0.05));
}

.order-form {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.price-display {
    background: var(--light);
    padding: 1rem;
    border-radius: 4px;
    text-align: center;
    margin: 1.5rem 0;
    border-left: 4px solid var(--success);
}

.price-display h3 {
    font-size: 1.5rem;
    color: var(--success);
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.payment-method {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary);
    background: rgba(67, 97, 238, 0.05);
}

.payment-method.active {
    border-color: var(--primary);
    background: rgba(67, 97, 238, 0.1);
}

.payment-method i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--accent);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Additional styles for the complete website */

/* Auth Pages */
.auth-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(67, 97, 238, 0.03), rgba(58, 12, 163, 0.05));
    min-height: calc(100vh - 200px);
}

.auth-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.auth-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.auth-link {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-block {
    width: 100%;
    padding: 0.8rem;
}

/* Dashboard */
.dashboard-section {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.dashboard-sidebar {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.user-info {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.user-info h4 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.user-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.dashboard-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dashboard-menu li {
    margin-bottom: 0.5rem;
}

.dashboard-menu a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--dark);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.dashboard-menu a:hover {
    background: var(--light);
}

.dashboard-menu a.active {
    background: var(--primary);
    color: white;
}

.dashboard-menu i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.dashboard-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    border-left: 4px solid var(--primary);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.stat-icon.completed {
    background: rgba(76, 201, 240, 0.1);
    color: var(--success);
    border-left-color: var(--success);
}

.stat-icon.processing {
    background: rgba(249, 199, 79, 0.1);
    color: var(--warning);
    border-left-color: var(--warning);
}

.stat-icon.revenue {
    background: rgba(247, 37, 133, 0.1);
    color: var(--accent);
    border-left-color: var(--accent);
}

.stat-info h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--dark);
}

.stat-info p {
    margin: 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.recent-orders {
    margin-top: 2rem;
}

/* Form enhancements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

/* Table styles */
.table th {
    font-weight: 600;
    color: var(--dark);
    border-top: none;
}

/* Badge styles */
.badge {
    padding: 0.5rem 0.8rem;
    border-radius: 50px;
    font-weight: 500;
}

/* Alert styles */
.alert {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.5rem;
}

.alert-danger {
    background: rgba(249, 65, 68, 0.1);
    color: var(--danger);
}

.alert-success {
    background: rgba(76, 201, 240, 0.1);
    color: var(--success);
}

.alert-info {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin: 1rem 0;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .dashboard-sidebar {
        margin-bottom: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Order Form Styles */
.order-form-container {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.order-form-container h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

/* Payment Instructions */
.payment-instructions .card {
    border-left: 4px solid var(--primary);
}

.payment-instructions .card-header {
    background: var(--light);
    border-bottom: 1px solid var(--light-gray);
}

.payment-instructions .card-header h5 {
    margin: 0;
    color: var(--secondary);
}

/* Pending Payments */
.pending-payments .card {
    border-left: 4px solid var(--warning);
}

.pending-payments .card-header {
    background: rgba(249, 199, 79, 0.1);
    border-bottom: 1px solid var(--light-gray);
}

.pending-payments .card-header h5 {
    margin: 0;
    color: var(--warning);
}


/* Payment Success/Cancel Pages */
.success-icon, .cancel-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.success-icon {
    color: var(--success);
}

.cancel-icon {
    color: var(--danger);
}

.order-details {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: left;
}

.whats-next {
    background: rgba(76, 201, 240, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--success);
}


/* Payment method cards */
.payment-method {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.payment-method:hover {
    border-color: var(--primary);
    background: rgba(67, 97, 238, 0.05);
}

.payment-method.active {
    border-color: var(--primary);
    background: rgba(67, 97, 238, 0.1);
}

.payment-method i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Payment instruction cards */
.payment-instruction-card .card-header.bg-orange {
    background-color: #ff6600 !important;
}

/* Responsive payment methods */
@media (max-width: 768px) {
    .payment-methods {
        flex-direction: column;
    }
    
    .payment-method {
        margin-bottom: 10px;
    }
}

/* Platform Selection */
.platform-selection {
    margin-bottom: 2rem;
}

.platform-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 1rem;
}

.platform-tab {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    font-weight: 500;
}

.platform-tab:hover {
    border-color: #4361ee;
    color: #4361ee;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.platform-tab.active {
    background: #4361ee;
    border-color: #4361ee;
    color: white;
}

.platform-tab i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Service Selection */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.service-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    text-align: center;
}

.service-header i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-body {
    padding: 1.5rem;
}

.service-description {
    color: #6c757d;
    margin-bottom: 1rem;
    min-height: 60px;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4361ee;
    margin-bottom: 0.5rem;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.select-service {
    width: 100%;
}

/* Order Form */
.order-form-container {
    margin-top: 2rem;
}

.order-form-container .card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.order-form-container .card-header {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    border: none;
}

.order-form-container .card-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
}

.order-form-container .card-header i {
    margin-right: 10px;
    font-size: 1.5rem;
}

/* Price Display */
.price-display {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.5rem 0;
    border-left: 4px solid #4cc9f0;
}

.price-display h3 {
    font-size: 2rem;
    color: #4cc9f0;
    margin: 0;
}

/* Stats Sidebar */
.stats-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.stats-sidebar h5 {
    color: #3a0ca3;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.stat-label {
    color: #6c757d;
}

.stat-value {
    font-weight: 600;
    color: #4361ee;
}

/* Form enhancements */
.form-text {
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-tabs {
        flex-direction: column;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-tab {
        justify-content: center;
        text-align: center;
    }
    
    .order-form-container .card-header h4 {
        font-size: 1.2rem;
    }
}


/* Platform Cards */
.platform-cards {
    margin-bottom: 2rem;
}

.platform-card {
    display: block;
    text-decoration: none;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    color: #495057;
    height: 100%;
}

.platform-card:hover {
    border-color: #4361ee;
    color: #495057;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    text-decoration: none;
}

.platform-card.active {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    border-color: #4361ee;
    color: white;
}

.platform-card.active .platform-icon {
    color: white;
}

.platform-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #4361ee;
    transition: color 0.3s ease;
}

.platform-name {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Statistics Sidebar */
.stats-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 1.5rem;
}

.stats-sidebar h5 {
    color: #3a0ca3;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #6c757d;
    font-size: 0.9rem;
}

.stat-value {
    font-weight: 600;
    color: #4361ee;
}

/* Order Form Improvements */
.order-form-container .card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.order-form-container .card-header {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    border: none;
    border-radius: 12px 12px 0 0 !important;
    padding: 1.5rem;
}

.order-form-container .card-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
}

.order-form-container .card-header i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.order-form-container .card-body {
    padding: 2rem;
}

/* Form enhancements */
.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.25);
}

/* Price Display */
.price-display {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 2rem 0;
    border-left: 4px solid #4cc9f0;
}

.price-display h3 {
    font-size: 2.2rem;
    color: #4cc9f0;
    margin: 0;
    font-weight: 700;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.payment-method {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #4361ee;
    background: rgba(67, 97, 238, 0.05);
}

.payment-method.active {
    border-color: #4361ee;
    background: rgba(67, 97, 238, 0.1);
}

.payment-method i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: #4361ee;
}

.payment-method span {
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-cards .row {
        margin: 0 -5px;
    }
    
    .platform-cards .col-md-4 {
        padding: 0 5px;
    }
    
    .platform-card {
        padding: 1rem;
    }
    
    .platform-icon {
        font-size: 2rem;
    }
    
    .payment-methods {
        flex-direction: column;
    }
    
    .order-form-container .card-body {
        padding: 1.5rem;
    }
}
/* Compact Platform Cards */
.platform-cards-compact {
    margin-bottom: 1.5rem;
}

.platform-cards-compact h4 {
    margin-bottom: 1rem;
    color: #3a0ca3;
    font-size: 1.3rem;
}

.platform-card-compact {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.platform-card-compact:hover {
    border-color: #4361ee;
    color: #4361ee;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-decoration: none;
}

.platform-card-compact.active {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    border-color: #4361ee;
    color: white;
}

.platform-card-compact i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

/* Order Form Improvements for Better Visibility */
.order-form-container {
    margin-top: 1rem;
}

.order-form-container .card {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.order-form-container .card-header {
    background: linear-gradient(135deg, #4361ee, #3a0ca3);
    color: white;
    border: none;
    border-radius: 12px 12px 0 0 !important;
    padding: 1.2rem 1.5rem;
}

.order-form-container .card-header h4 {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.order-form-container .card-header i {
    margin-right: 10px;
    font-size: 1.6rem;
}

.order-form-container .card-body {
    padding: 1.8rem;
}

/* Form enhancements */
.form-group {
    margin-bottom: 1.3rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 0.2rem rgba(67, 97, 238, 0.25);
}

.form-text {
    font-size: 0.85rem;
    color: #6c757d !important;
}

/* Price Display */
.price-display {
    background: #f8f9fa;
    padding: 1.3rem;
    border-radius: 8px;
    text-align: center;
    margin: 1.8rem 0;
    border-left: 4px solid #4cc9f0;
}

.price-display h3 {
    font-size: 2rem;
    color: #4cc9f0;
    margin: 0;
    font-weight: 700;
}

.price-display p {
    margin: 0.3rem 0 0 0;
    font-size: 0.95rem;
}

/* Payment Methods - More Compact */
.payment-methods {
    display: flex;
    gap: 0.8rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.payment-method {
    flex: 1;
    min-width: 110px;
    text-align: center;
    padding: 0.9rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: #4361ee;
    background: rgba(67, 97, 238, 0.05);
}

.payment-method.active {
    border-color: #4361ee;
    background: rgba(67, 97, 238, 0.1);
}

.payment-method i {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    display: block;
    color: #4361ee;
}

.payment-method span {
    font-weight: 500;
    font-size: 0.9rem;
}

/* Statistics Sidebar */
.stats-sidebar {
    background: white;
    padding: 1.3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-top: 1.3rem;
}

.stats-sidebar h5 {
    color: #3a0ca3;
    margin-bottom: 1rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
    font-size: 1.1rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.7rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    color: #6c757d;
    font-size: 0.85rem;
}

.stat-value {
    font-weight: 600;
    color: #4361ee;
    font-size: 0.9rem;
}

/* Recent Orders */
.recent-orders {
    margin-top: 2rem;
}

.recent-orders h4 {
    color: #3a0ca3;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-card-compact {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
        margin-right: 0.3rem;
        margin-bottom: 0.3rem;
    }
    
    .platform-card-compact i {
        font-size: 1rem;
        margin-right: 0.3rem;
    }
    
    .order-form-container .card-body {
        padding: 1.3rem;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .payment-method {
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .platform-cards-compact .d-flex {
        justify-content: center;
    }
    
    .platform-card-compact {
        flex: 0 0 calc(33.333% - 0.5rem);
        text-align: center;
        flex-direction: column;
        padding: 0.5rem;
    }
    
    .platform-card-compact i {
        margin-right: 0;
        margin-bottom: 0.3rem;
    }
    
    .platform-card-compact span {
        font-size: 0.7rem;
    }
}
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  background: #fff;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Hero Styles */
.hero .carousel-item {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero .carousel-caption {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  padding: 0 15px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all .3s ease;
}

.hero .btn:hover {
  transform: scale(1.05);
}

/* Hero Styles */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;  /* full viewport height */
  overflow: hidden;
}

.hero .carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero .carousel-caption {
  position: relative;
  z-index: 10;
  color: #fff;
  text-align: center;
  padding: 0 15px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero .btn {
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.hero .btn:hover {
  transform: scale(1.05);
}

.hero-slide {
    width: 100%;
    height: 100vh; /* full viewport height */
    background-size: cover; /* cover entire container */
    background-position: center; /* center the image */
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100vh; /* full viewport height */
    background-size: cover; /* cover entire container */
    background-position: center; /* center the image */
    position: relative;
}