/* Service Cards */
.service-card {
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--shadow-red);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-red);
    font-weight: 600;
}

.service-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Bundle Cards */
.bundle-card {
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-gray);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bundle-card.featured {
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-red);
    color: var(--text-light);
    padding: 5px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.bundle-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,0,0,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bundle-card:hover::after {
    opacity: 1;
}

.bundle-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px var(--shadow-red);
}

.bundle-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.bundle-header {
    text-align: center;
    margin-bottom: 25px;
}

.bundle-name {
    font-size: 1.8rem;
    color: var(--primary-red);
    margin-bottom: 10px;
    font-weight: 600;
}

.bundle-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
}

.bundle-features {
    list-style: none;
    margin: 25px 0;
}

.bundle-features li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.bundle-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: 700;
}

.select-bundle {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    color: var(--text-light);
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
}

.select-bundle:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(135deg, var(--medium-gray), var(--light-gray));
    border-radius: 20px;
    border: 2px solid var(--primary-red);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 20px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 20px;
}

.modal-header h2 {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-weight: 600;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-red);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-light);
}

.modal-body {
    padding: 0 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-gray);
    margin-top: 20px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-light);
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: var(--border-gray);
    color: var(--text-light);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

/* Cart Items */
.cart-item {
    padding: 15px;
    border-bottom: 1px solid var(--border-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary-red);
    font-weight: 600;
}

.remove-item {
    background: var(--primary-red);
    color: var(--text-light);
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.remove-item:hover {
    background: var(--dark-red);
}

.cart-total {
    padding: 20px 0;
    border-top: 2px solid var(--primary-red);
    margin-top: 20px;
    text-align: center;
}

.cart-total h3 {
    font-size: 1.5rem;
    color: var(--text-light);
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-gray);
}

/* New Bundle Styles */
.solutions-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

.bundle-tagline {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 10px;
    font-style: italic;
}

.bundle-delivery {
    color: var(--primary-red);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
}

/* Coming Soon Card Styles */
.bundle-card.coming-soon {
    background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
    border: 2px dashed var(--primary-red);
    opacity: 0.9;
    text-align: center;
}

.bundle-card.coming-soon:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.2);
}

.coming-soon-content {
    padding: 20px 0;
    margin: 20px 0;
}

.coming-soon-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.coming-soon-content p {
    color: var(--text-gray);
    margin: 8px 0;
    font-size: 1rem;
    position: relative;
    padding-left: 20px;
}

.coming-soon-content p::before {
    content: '⭐';
    position: absolute;
    left: 0;
    color: var(--primary-red);
}

.notify-button-container {
    margin-top: 25px;
}

.notify-button {
    background: linear-gradient(45deg, #333333, #555555);
    color: var(--text-light);
    padding: 12px 25px;
    border: 2px solid var(--primary-red);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 1rem;
    font-weight: 600;
}

.notify-button:hover {
    background: linear-gradient(45deg, var(--primary-red), var(--dark-red));
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}