.navbar-brand img{
    width: 60%;
}
.custom-hero-bg{
    background-image: url("../img/hero-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Shared Hosting */
.pricing-plans-section {
    background: #f8fafc;
    padding: 80px 0;
}
.annual-price-highlight-launch{
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #ff6a00;
    font-weight: 700;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
    margin-top: 12px;
}

.annual-price-highlight-grow{
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 700;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
    margin-top: 12px;
}

.annual-price-highlight-prime{
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.05));
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    color: #f59e0b;
    font-weight: 700;
    border: 2px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;
    margin-top: 12px;
}

/* Enhanced Discount Badge */
.discount-badge {
    background: #10b981;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    margin-left: 4px;
    animation: pulse-shared 2s infinite;
}

@keyframes pulse-shared {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Updated Annual Note Container */
.annual-note {
    margin-top: 12px;
}
.section-subtitle {
    color: #3b82f6;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-heading h2 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-heading p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    padding: 6px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #1f2937;
}
.toggle-switch {
    position: relative;
}

.toggle-input {
    display: none;
}

.toggle-slider {
    width: 40px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-input:checked + .toggle-slider {
    background: #3b82f6;
}

.toggle-input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

/* Pricing Cards */
.pricing-plan-card {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.pricing-plan-card.popular {
    border: 2px solid #3b82f6;
}

.popular-badge {
    position: absolute;
    top: -8px;
    right: 20px;
    background: #3b82f6;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    color: white;
}

.launch-plan .plan-icon {
    background: linear-gradient(135deg, #ff6a00, #a855f7);
}

.grow-plan .plan-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.prime-plan .plan-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 4px;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
    color: #374151;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 2px;
}

.period {
    font-size: 0.9rem;
    color: #6b7280;
}

.annual-note {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Features */
.plan-features {
    margin-bottom: 20px;
}

.feature-row {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
    font-size: 0.85rem;
}

.feature-row i {
    color: #10b981;
    width: 16px;
    text-align: center;
}

.feature-row span {
    color: #374151;
    font-weight: 500;
}

.feature-list {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #374151;
}

.feature-item i {
    color: #10b981;
    margin-right: 6px;
    font-size: 18px;
}

/* Buttons */
.plan-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
}

.btn-launch {
    background: linear-gradient(135deg, #ff6a00, #a855f7);
}

.btn-launch:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.btn-grow {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.btn-grow:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.btn-prime {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.btn-prime:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
}

/* Responsive */
@media (max-width: 991px) {
    .col-md-8, .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .pricing-plans-section {
        padding: 60px 0;
    }
    
    .col-lg-4, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .section-heading h2 {
        font-size: 1.75rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        grid-template-columns: auto 1fr;
        gap: 8px;
    }
}





/* Turbo Pricing Section - White Theme */
.turbo-pricing-plans-section {
    padding: 80px 0;
}

.section-subtitle-turbo {
    color: #ea580c;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.turbo-pricing-plans-section h2 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.turbo-pricing-plans-section p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Turbo Pricing Toggle */
.pricing-toggle-turbo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    padding: 6px;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.15);
    border: 1px solid rgba(234, 88, 12, 0.1);
}

.toggle-label-turbo {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.toggle-label-turbo.active {
    color: #1f2937;
}

.discount-badge-turbo {
    background: #ea580c;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    margin-left: 4px;
    animation: pulse-turbo 2s infinite;
}

@keyframes pulse-turbo {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(234, 88, 12, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(234, 88, 12, 0);
    }
}

.toggle-switch-turbo {
    position: relative;
}

.toggle-input-turbo {
    display: none;
}

.toggle-slider-turbo {
    width: 40px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-slider-turbo::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-input-turbo:checked + .toggle-slider-turbo {
    background: #ea580c;
}

.toggle-input-turbo:checked + .toggle-slider-turbo::before {
    transform: translateX(20px);
}

/* Turbo Pricing Cards */
.pricing-plan-card-turbo {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 16px;
    padding: 24px 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(234, 88, 12, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan-card-turbo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(234, 88, 12, 0.2);
    border-color: rgba(234, 88, 12, 0.3);
}

.pricing-plan-card-turbo.popular {
    border: 2px solid #ea580c;
    background: linear-gradient(135deg, #fef3e2 0%, white 100%);
}

.popular-badge-turbo {
    position: absolute;
    top: -8px;
    right: 20px;
    background: #ea580c;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-icon-turbo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 20px;
    color: white;
}

.turbo-launch-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.turbo-grow-icon {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.turbo-prime-icon {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.pricing-plan-card-turbo .plan-name {
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-plan-card-turbo .currency,
.pricing-plan-card-turbo .price,
.pricing-plan-card-turbo .period {
    color: #1f2937;
}

.annual-note-turbo {
    font-size: 1.1rem;
    color: #ea580c;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.15), rgba(234, 88, 12, 0.05));
    padding: 10px 16px;
    border-radius: 12px;
    margin-top: 12px;
    border: 2px solid rgba(234, 88, 12, 0.3);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-plan-card-turbo .feature-row {
    color: #374151;
}

.pricing-plan-card-turbo .feature-row i {
    color: #ea580c;
}

.pricing-plan-card-turbo .feature-item {
    color: #374151;
}

.pricing-plan-card-turbo .feature-item i {
    color: #ea580c;
}

/* Turbo Buttons */
.plan-btn-turbo {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
}

.btn-turbo-launch {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.btn-turbo-launch:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-turbo-grow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.btn-turbo-grow:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.btn-turbo-prime {
    background: linear-gradient(135deg, #ff8100, #ff4700);
}

.btn-turbo-prime:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

/* Responsive */
@media (max-width: 991px) {
    .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .turbo-pricing-plans-section {
        padding: 60px 0;
    }
    
    .col-lg-4, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .turbo-pricing-plans-section h2 {
        font-size: 1.75rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
    
    .feature-row {
        grid-template-columns: auto 1fr;
        gap: 8px;
    }
}




/* Cloud Hosting Section */
.cloud-hosting-section {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 60px 0;
}

.section-subtitle-cloud {
    color: #2563eb;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.cloud-hosting-section h2 {
    color: #1f2937;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cloud-hosting-section p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

/* Cloud Pricing Toggle */
.pricing-toggle-cloud {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    padding: 4px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.toggle-label-cloud {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.toggle-label-cloud.active {
    color: #1f2937;
}

.discount-badge-cloud {
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 8px;
    font-weight: 700;
    margin-left: 4px;
}

.toggle-switch-cloud {
    position: relative;
}

.toggle-input-cloud {
    display: none;
}

.toggle-slider-cloud {
    width: 35px;
    height: 18px;
    background: #e5e7eb;
    border-radius: 18px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-slider-cloud::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-input-cloud:checked + .toggle-slider-cloud {
    background: #2563eb;
}

.toggle-input-cloud:checked + .toggle-slider-cloud::before {
    transform: translateX(17px);
}

/* Cloud Pricing Table */
.cloud-pricing-table {
    margin-top: 30px;
}

.cloud-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.cloud-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.cloud-comparison-table th,
.cloud-comparison-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

.features-header-cell {
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
    padding: 16px 12px;
    text-align: left;
}

.features-header-cell h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.features-header-cell p {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
}

.expert-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.expert-link:hover {
    text-decoration: underline;
}

.plan-header-cell {
    background: white;
    border-right: 1px solid #e5e7eb;
    padding: 16px 12px;
    position: relative;
}

.plan-header-cell:last-child {
    border-right: none;
}

.popular-header {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    border-left: 2px solid #2563eb;
    border-right: 2px solid #2563eb;
}

.popular-badge-cloud {
    position: absolute;
    top: 0;
    right: 0;
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 0 0 12px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
    z-index: 10;
}

.plan-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.plan-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 12px;
}

.plan-price-cloud {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
}

.price-period {
    font-size: 0.8rem;
    color: #6b7280;
    margin-left: 2px;
}

.annual-savings-cloud {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
    color: #2563eb;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    text-align: center;
    font-size: 0.75rem;
}

.cloud-plan-btn {
    display: inline-block;
    width: 80%;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.8rem;
}

.btn-cloud-launch {
    background: linear-gradient(135deg, #ff6a00, #a855f7);
}

.btn-cloud-launch:hover {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.btn-cloud-grow {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn-cloud-grow:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
}

.btn-cloud-prime {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-cloud-prime:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
}

.feature-label {
    background: #f8fafc;
    border-right: 1px solid #e5e7eb;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    padding: 10px 12px;
}

.feature-value {
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    padding: 10px 12px;
    border-right: 1px solid #e5e7eb;
}

.feature-value:last-child {
    border-right: none;
}

.cloud-check {
    color: #10b981;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cloud-table-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-column {
        display: none;
    }
    
    .cloud-plan-column {
        border-right: none;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .popular-cloud {
        border: 2px solid #2563eb;
    }
}

@media (max-width: 767px) {
    .cloud-hosting-section {
        padding: 60px 0;
    }
    
    .cloud-hosting-section h2 {
        font-size: 1.75rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
}




/* VPS Hosting Section - Purple/Indigo Theme */
.vps-hosting-section {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    padding: 80px 0;
}

.section-subtitle-vps {
    color: #7c3aed;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.vps-hosting-section h2 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.vps-hosting-section p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* VPS Pricing Toggle */
.pricing-toggle-vps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    padding: 6px;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.toggle-label-vps {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.toggle-label-vps.active {
    color: #1f2937;
}

.discount-badge-vps {
    background: #7c3aed;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    margin-left: 4px;
    animation: pulse-vps 2s infinite;
}

@keyframes pulse-vps {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(124, 58, 237, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}

.toggle-switch-vps {
    position: relative;
}

.toggle-input-vps {
    display: none;
}

.toggle-slider-vps {
    width: 40px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-slider-vps::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-input-vps:checked + .toggle-slider-vps {
    background: #7c3aed;
}

.toggle-input-vps:checked + .toggle-slider-vps::before {
    transform: translateX(20px);
}

/* VPS Plan Cards */
.vps-plan-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 20px;
    padding: 24px 20px;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vps-plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.vps-plan-card.popular {
    border: 3px solid #7c3aed;
    background: linear-gradient(135deg, #faf5ff 0%, white 100%);
    transform: scale(1.05);
}

.vps-plan-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge-vps {
    position: absolute;
    top: 0;
    right: 0;
    background: #7c3aed;
    color: white;
    padding: 8px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 20px 0 16px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
    z-index: 10;
}

.plan-header-vps {
    text-align: center;
    margin-bottom: 20px;
}

.plan-icon-vps {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
}

.vps-starter-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.vps-business-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.vps-professional-icon {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.vps-enterprise-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.plan-name-vps {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.plan-subtitle-vps {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.plan-price-vps {
    margin-bottom: 8px;
}

.currency-vps,
.price-vps,
.period-vps {
    color: #1f2937;
}

.price-vps {
    font-size: 2rem;
    font-weight: 800;
}

.currency-vps {
    font-size: 1.2rem;
    font-weight: 600;
}

.period-vps {
    font-size: 1rem;
    font-weight: 500;
}

.annual-savings-vps {
    font-size: 0.85rem;
    color: #7c3aed;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 8px;
    border: 2px solid rgba(124, 58, 237, 0.2);
    text-align: center;
}

.plan-specs-vps {
    margin-bottom: 20px;
}

.spec-item-vps {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.spec-item-vps:last-child {
    border-bottom: none;
}

.spec-icon-vps {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.spec-icon-vps i {
    color: #7c3aed;
    font-size: 16px;
}

.spec-details-vps {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.spec-value {
    font-size: 0.95rem;
    color: #1f2937;
    font-weight: 700;
}

.plan-features-vps {
    margin-bottom: 24px;
    flex-grow: 1;
}

.feature-item-vps {
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #374151;
}

.feature-item-vps i {
    color: #10b981;
    margin-right: 8px;
    font-size: 14px;
    width: 16px;
}

/* VPS Buttons */
.plan-btn-vps {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 1rem;
    margin-top: auto;
}

.btn-vps-starter {
    background: linear-gradient(135deg, #10b981, #059669);
}

.btn-vps-starter:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}

.btn-vps-business {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.btn-vps-business:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
}

.btn-vps-professional {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.btn-vps-professional:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
    transform: translateY(-2px);
}

.btn-vps-enterprise {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-vps-enterprise:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .vps-plan-card.popular {
        transform: none;
    }
    
    .vps-plan-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 991px) {
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .vps-hosting-section {
        padding: 60px 0;
    }
    
    .col-lg-3, .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .vps-hosting-section h2 {
        font-size: 1.75rem;
    }
    
    .price-vps {
        font-size: 1.75rem;
    }
    
    .plan-name-vps {
        font-size: 1.2rem;
    }
}





/* Why Choose BDIX Hosting Section CSS */
.promo-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e5e7eb 100%);
    padding: 100px 0 0;
    position: relative;
}

.promo-section .section-heading {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #7c3aed;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: block;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 2px;
}

.promo-section h2 {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1f2937, #374151);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-section p {
    color: #6b7280;
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.promo-content {
    margin-top: 40px;
}

.promo-content ul {
    gap: 20px;
    margin: 0;
    padding: 0;
}

.promo-content ul li {
    margin: 10px;
}

.promo-content ul li a {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: white !important;
    color: #374151 !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    min-width: 200px;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.promo-content ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(167, 85, 247, 0.05));
    transition: all 0.3s ease;
    z-index: 0;
}

.promo-content ul li a:hover::before {
    left: 0;
}

.promo-content ul li a:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
    color: #1f2937 !important;
}

.promo-content ul li a i {
    font-size: 24px;
    margin-right: 12px;
    color: #7c3aed;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.promo-content ul li a:hover i {
    transform: scale(1.1);
    color: #6d28d9;
}

.promo-content ul li a span {
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.promo-content ul li a:hover span {
    color: #1f2937;
    font-weight: 700;
}

/* Individual Icon Colors */
.promo-content ul li:nth-child(1) a i {
    color: #10b981; /* Green for speed */
}

.promo-content ul li:nth-child(1) a:hover i {
    color: #059669;
}

.promo-content ul li:nth-child(2) a i {
    color: #3b82f6; /* Blue for unlimited */
}

.promo-content ul li:nth-child(2) a:hover i {
    color: #2563eb;
}

.promo-content ul li:nth-child(3) a i {
    color: #f59e0b; /* Yellow for location */
}

.promo-content ul li:nth-child(3) a:hover i {
    color: #d97706;
}

.promo-content ul li:nth-child(4) a i {
    color: #10b981; /* Green for cost */
}

.promo-content ul li:nth-child(4) a:hover i {
    color: #059669;
}

.promo-content ul li:nth-child(5) a i {
    color: #dc2626; /* Red for SEO */
}

.promo-content ul li:nth-child(5) a:hover i {
    color: #b91c1c;
}

.promo-content ul li:nth-child(6) a i {
    color: #6b7280; /* Gray for infrastructure */
}

.promo-content ul li:nth-child(6) a:hover i {
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 991px) {
    .promo-section h2 {
        font-size: 2rem;
    }
    
    .promo-content ul {
        gap: 15px;
    }
    
    .promo-content ul li a {
        padding: 18px 20px;
        min-width: 180px;
    }
    
    .promo-content ul li a i {
        font-size: 20px;
        margin-right: 10px;
    }
    
    .promo-content ul li a span {
        font-size: 0.9rem;
    }
}

@media (max-width: 767px) {
    .promo-section {
        padding: 80px 0 0;
    }
    
    .promo-section h2 {
        font-size: 1.75rem;
    }
    
    .promo-section p {
        font-size: 1rem;
    }
    
    .promo-content ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .promo-content ul li {
        margin: 8px 0;
        width: 100%;
        max-width: 280px;
    }
    
    .promo-content ul li a {
        width: 100%;
        padding: 16px 20px;
        min-width: auto;
    }
    
    .promo-content ul li a i {
        font-size: 18px;
    }
    
    .promo-content ul li a span {
        font-size: 0.85rem;
    }
}

@media (max-width: 575px) {
    .promo-content ul li a {
        padding: 14px 16px;
    }
    
    .promo-content ul li a i {
        font-size: 16px;
        margin-right: 8px;
    }
    
    .promo-content ul li a span {
        font-size: 0.8rem;
    }
}



/* Dedicated Hosting Section - Compact White Theme */
.dedicated-hosting-section {
    padding: 80px 0;
}

.section-subtitle-dedicated {
    color: #f36a22;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.dedicated-hosting-section h2 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.dedicated-hosting-section p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Dedicated Pricing Toggle */
.pricing-toggle-dedicated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: white;
    padding: 6px;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(243, 106, 34, 0.15);
    border: 1px solid rgba(243, 106, 34, 0.1);
}

.toggle-label-dedicated {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.toggle-label-dedicated.active {
    color: #1f2937;
}

.discount-badge-dedicated {
    background: #f36a22;
    color: white;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 10px;
    font-weight: 700;
    margin-left: 4px;
    animation: pulse-dedicated 2s infinite;
}

@keyframes pulse-dedicated {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 106, 34, 0.7);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(243, 106, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 106, 34, 0);
    }
}

.toggle-switch-dedicated {
    position: relative;
}

.toggle-input-dedicated {
    display: none;
}

.toggle-slider-dedicated {
    width: 40px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.toggle-slider-dedicated::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.toggle-input-dedicated:checked + .toggle-slider-dedicated {
    background: #f36a22;
}

.toggle-input-dedicated:checked + .toggle-slider-dedicated::before {
    transform: translateX(20px);
}

/* Dedicated Plans Container - COMPACT */
.dedicated-plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.dedicated-server-plan {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(243, 106, 34, 0.08);
}

.dedicated-server-plan:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(243, 106, 34, 0.12);
    border-color: rgba(243, 106, 34, 0.3);
}

.popular-server {
    border: 2px solid #f36a22;
    background: linear-gradient(135deg, #fff7ed 0%, white 100%);
    transform: scale(1.03);
}

.popular-server:hover {
    transform: scale(1.03) translateY(-6px);
}

.popular-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: #f36a22;
    color: white;
    padding: 6px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0 16px 0 16px;
    box-shadow: 0 2px 8px rgba(243, 106, 34, 0.3);
}

/* Plan Header - COMPACT */
.plan-header-dedicated {
    text-align: center;
    margin-bottom: 18px;
}

.server-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.essential-badge {
    background: linear-gradient(135deg, #10b981, #059669);
}

.performance-badge {
    background: linear-gradient(135deg, #f36a22, #ea580c);
}

.enterprise-badge {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.server-name {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.server-description {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Server Specifications - COMPACT */
.server-specifications {
    margin-bottom: 18px;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.spec-item {
    background: #f8fafc;
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e5e7eb;
}

.spec-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.spec-icon i {
    color: #f36a22;
    font-size: 14px;
}

.spec-label {
    display: block;
    color: #6b7280;
    font-size: 0.7rem;
    font-weight: 500;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-value {
    color: #1f2937;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

/* Pricing Section - COMPACT */
.pricing-section-dedicated {
    text-align: center;
    margin-bottom: 18px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.price-display {
    margin-bottom: 6px;
}

.currency,
.price,
.period {
    color: #1f2937;
}

.price {
    font-size: 1.8rem;
    font-weight: 800;
}

.currency {
    font-size: 1.1rem;
    font-weight: 600;
}

.period {
    font-size: 0.9rem;
    font-weight: 500;
}

.annual-savings-dedicated {
    font-size: 0.75rem;
    color: #059669;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.15), rgba(5, 150, 105, 0.05));
    padding: 6px 10px;
    border-radius: 6px;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

/* Features List - COMPACT */
.features-list-dedicated {
    margin-bottom: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 0.8rem;
    color: #374151;
}

/* .feature-item i {
    color: #ffffff;
    margin-right: 8px;
    font-size: 18px;
    width: 14px;
} */

/* Dedicated Plan Buttons - COMPACT */
.dedicated-plan-btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-essential {
    background: linear-gradient(135deg, #10b981, #059669);
}

.btn-essential:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
}

.btn-performance {
    background: linear-gradient(135deg, #f36a22, #ea580c);
}

.btn-performance:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
}

.btn-enterprise {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-enterprise:hover {
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    transform: translateY(-2px);
}

/* Additional Features Section */
.additional-features-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

.features-section-title {
    text-align: center;
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.global-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.global-feature {
    text-align: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 16px rgba(243, 106, 34, 0.08);
}

.feature-icon-dedicated {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: white;
}

.global-feature h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.global-feature p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .popular-server {
        transform: none;
    }
    
    .popular-server:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 991px) {
    .dedicated-plans-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .dedicated-hosting-section {
        padding: 60px 0;
    }
    
    .dedicated-hosting-section h2 {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .server-name {
        font-size: 1.2rem;
    }
    
    .global-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}






/* Contact Us Section - Gradient Purple Theme */
.contact-us-section {
    padding: 80px 0;
}

.section-subtitle-contact {
    color: #ff6a00;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.contact-us-section h2 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-us-section p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    height: 100%;
}

.contact-info-header h3 {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-header p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Contact Methods */
.contact-methods {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f3f4f6;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 18px;
    color: white;
}

.phone-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.email-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.chat-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.location-icon {
    background: linear-gradient(135deg, #ff8100, #ff4700);
}

.contact-details h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    color: #374151;
    font-size: 0.9rem;
    margin-bottom: 4px;
    line-height: 1.4;
}

.availability {
    color: #ff6a00;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Social Links */
.social-links h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.facebook {
    background: #1877f2;
}

.twitter {
    background: #1da1f2;
}

.linkedin {
    background: #0077b5;
}

.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.contact-form-header h3 {
    color: #1f2937;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-form-header p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    color: #374151;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-control:focus {
    outline: none;
    border-color: #ff6a00;
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    color: #6b7280;
    font-size: 14px;
}

.textarea-icon {
    top: 40px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-top: 8px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
    font-size: 0.9rem;
    color: #374151;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
    width: 18px;
    background-color: #f3f4f6;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-item:hover .checkmark {
    border-color: #ff6a00;
}

.checkbox-item input:checked ~ .checkmark {
    background-color: #ff6a00;
    border-color: #ff6a00;
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-item input:checked ~ .checkmark::after {
    display: block;
}

.privacy-checkbox {
    margin-top: 16px;
}

.privacy-link {
    color: #ff6a00;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
    background: linear-gradient(135deg, #ff8100, #ff4700);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    width: 100%;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

/* Contact Stats Section */
.contact-stats-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid rgba(139, 92, 246, 0.1);
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.08);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8100, #ff4700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 20px;
    color: white;
}

.stat-content h4 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-content p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info-wrapper,
    .contact-form-wrapper {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact-us-section {
        padding: 60px 0;
    }
    
    .contact-us-section h2 {
        font-size: 1.75rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 12px;
    }
}






/* About Us Section - Orange Theme */
.about-us-section {
    padding: 80px 0;
}

.section-subtitle-about {
    color: #f36a22;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.about-us-section h2 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.about-us-section p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* About Content */
.about-content {
    padding-right: 20px;
}

.content-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.content-header h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0;
    margin-right: 20px;
}

.header-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 2px;
}

.lead-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 16px;
}

.about-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.achievement-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(243, 106, 34, 0.1);
    border: 1px solid rgba(243, 106, 34, 0.1);
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.15);
}

.achievement-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f36a22;
    margin-bottom: 4px;
}

.achievement-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* About Image Wrapper */
.about-image-wrapper {
    position: relative;
    height: 500px;
}

.about-image {
    width: 100%;
    height: 400px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(243, 106, 34, 0.1);
    border: 1px solid rgba(243, 106, 34, 0.1);
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #f36a22;
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.6;
}

.image-placeholder h4 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.image-placeholder p {
    color: #6b7280;
    font-size: 1rem;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    top: 50px;
    right: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 50px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.card-content h5 {
    color: #1f2937;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.card-content p {
    color: #6b7280;
    font-size: 0.8rem;
    margin: 0;
}

/* Values Section */
.values-section {
    margin: 60px 0;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.08);
    border: 1px solid rgba(243, 106, 34, 0.1);
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(243, 106, 34, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.value-card h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #374151;
}

.values-list i {
    color: #f36a22;
    margin-right: 8px;
    font-size: 14px;
}

/* Team Section */
.team-section {
    margin: 60px 0;
}

.section-header h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: #6b7280;
    font-size: 1rem;
}

.team-member {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.08);
    border: 1px solid rgba(243, 106, 34, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(243, 106, 34, 0.15);
}

.member-image {
    margin-bottom: 20px;
}

.team-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
}

.member-info h4 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.member-role {
    color: #f36a22;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-description {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.member-social a {
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.member-social a:hover {
    background: #f36a22;
    color: white;
}

/* Why Choose Section */
.why-choose-section {
    margin: 60px 0;
}

.why-choose-content {
    padding-right: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    /* margin-bottom: 30px; */
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 24px;
    color: white;
}

.feature-content h4 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Stats Card */
.why-choose-stats {
    padding-left: 30px;
}

.stats-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(243, 106, 34, 0.1);
    border: 1px solid rgba(243, 106, 34, 0.1);
}

.stat-item-large {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f3f4f6;
}

.stat-item-large .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #f36a22;
    margin-bottom: 8px;
}

.stat-item-large .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.stat-item-large .stat-description {
    font-size: 0.9rem;
    color: #6b7280;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.stats-row:last-child {
    margin-bottom: 0;
}

.stat-item-small {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.stat-item-small .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f36a22;
    margin-bottom: 4px;
}

.stat-item-small .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .why-choose-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .why-choose-stats {
        padding-left: 0;
    }
    
    .floating-card {
        position: static;
        margin: 20px 0;
        animation: none;
    }
    
    .about-image-wrapper {
        height: auto;
    }
}

@media (max-width: 767px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-us-section h2 {
        font-size: 1.75rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .content-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .content-header h3 {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-item-large .stat-number {
        font-size: 2.5rem;
    }
}







/* Partners Section - Orange Theme */
.partners-section {
    padding: 80px 0;
}

.section-subtitle-partners {
    color: #f36a22;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.partners-section h2 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.partners-section p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Partners Category */
.partners-category {
    margin-bottom: 60px;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.category-header p {
    color: #6b7280;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Partners Grid */
.partners-grid-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.payment-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Partner Card */
.partner-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.08);
    border: 1px solid rgba(243, 106, 34, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(243, 106, 34, 0.15);
    border-color: rgba(243, 106, 34, 0.2);
}

.partner-logo {
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    position: relative;
    overflow: hidden;
}

.logo-placeholder i {
    font-size: 2rem;
    margin-bottom: 4px;
}

.logo-placeholder span {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-info h4 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.partner-info p {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* Partnership Status */
.partnership-status {
    margin-top: 12px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.status-badge.certified {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.status-badge.standard {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

/* Logo Color Variations */
.premium-logo {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

.certified-logo {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.standard-logo {
    background: linear-gradient(135deg, #3b82f6, #2563eb) !important;
}

/* Bangladesh Payment Logos - Brand Colors */
.bkash-logo {
    background: linear-gradient(135deg, #e2136e, #c91265) !important;
}

.nagad-logo {
    background: linear-gradient(135deg, #ec1c24, #d71920) !important;
}

.rocket-logo {
    background: linear-gradient(135deg, #8e44ad, #7d3c98) !important;
}

.upay-logo {
    background: linear-gradient(135deg, #ff6b35, #e85a2b) !important;
}

.bank-logo {
    background: linear-gradient(135deg, #2c3e50, #34495e) !important;
}

.visa-logo {
    background: linear-gradient(135deg, #1a1f71, #3c4aa0) !important;
}

.mastercard-logo {
    background: linear-gradient(135deg, #eb001b, #ff5f00) !important;
}

.stripe-logo {
    background: linear-gradient(135deg, #635bff, #4f46e5) !important;
}

/* Partnership Benefits */
.partnership-benefits {
    margin: 60px 0;
}

.benefits-header h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.benefits-header p {
    color: #6b7280;
    font-size: 1rem;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.08);
    border: 1px solid rgba(243, 106, 34, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(243, 106, 34, 0.15);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.benefit-card h4 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Become Partner Section */
.become-partner-section {
    margin-top: 60px;
}

.partner-cta-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(243, 106, 34, 0.12);
    border: 1px solid rgba(243, 106, 34, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
}

.cta-content h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.partner-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 0.9rem;
}

.benefit-item i {
    color: #f36a22;
    margin-right: 8px;
    font-size: 14px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.partner-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 100%;
    max-width: 240px;
}

.partner-cta-btn.primary {
    background: linear-gradient(135deg, #f36a22, #ea580c);
    color: white;
}

.partner-cta-btn.primary:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.3);
}

.partner-cta-btn.secondary {
    background: transparent;
    color: #f36a22;
    border: 2px solid #f36a22;
}

.partner-cta-btn.secondary:hover {
    background: #f36a22;
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-card {
    animation: fadeInUp 0.6s ease-out;
}

.partner-card:nth-child(2) {
    animation-delay: 0.1s;
}

.partner-card:nth-child(3) {
    animation-delay: 0.2s;
}

.partner-card:nth-child(4) {
    animation-delay: 0.3s;
}

.partner-card:nth-child(5) {
    animation-delay: 0.4s;
}

.partner-card:nth-child(6) {
    animation-delay: 0.5s;
}

/* Responsive Design */
@media (max-width: 991px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .partner-benefits-list {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-section h2 {
        font-size: 1.75rem;
    }
    
    .partners-grid,
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .logo-placeholder {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .logo-placeholder span {
        font-size: 0.6rem;
    }
    
    .partner-cta-card {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .partner-cta-btn {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
}


/* Network Section - Orange Theme */
.network-section {
    padding: 80px 0;
}

.section-subtitle-network {
    color: #f36a22;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.network-section h2 {
    color: #1f2937;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.network-section p {
    color: #6b7280;
    font-size: 1rem;
    margin: 0;
}

/* Network Stats */
.network-stats-wrapper {
    margin-bottom: 40px;
}

.network-stat-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.08);
    border: 1px solid rgba(243, 106, 34, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.network-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(243, 106, 34, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f36a22;
    display: inline-block;
}

.stat-unit {
    font-size: 1.2rem;
    font-weight: 600;
    color: #f36a22;
    margin-left: 4px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 8px 0 4px;
}

.stat-description {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Data Center Map */
.datacenter-map-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(243, 106, 34, 0.1);
    border: 1px solid rgba(243, 106, 34, 0.1);
    margin-bottom: 40px;
}

.map-header h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.world-map-container {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.world-map {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    position: relative;
    border: 2px solid #e5e7eb;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    background-image: url('../img/map-dark.svg');
    background-size: cover;
    background-position: center;
}

.datacenter-point {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}

.datacenter-point[data-location="New York"] { top: 25%; left: 20%; }
.datacenter-point[data-location="California"] { top: 35%; left: 10%; }
.datacenter-point[data-location="London"] { top: 20%; left: 48%; }
.datacenter-point[data-location="Frankfurt"] { top: 22%; left: 52%; }
.datacenter-point[data-location="Singapore"] { top: 60%; left: 75%; }
.datacenter-point[data-location="Tokyo"] { top: 30%; left: 85%; }
.datacenter-point[data-location="Mumbai"] { top: 45%; left: 68%; }
.datacenter-point[data-location="Dhaka"] { top: 40%; left: 72%; }

.point-pulse {
    width: 20px;
    height: 20px;
    background: #f36a22;
    border-radius: 50%;
    position: relative;
    animation: pulse-network 2s infinite;
}

.primary-dc .point-pulse {
    background: #dc2626;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
}

@keyframes pulse-network {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 106, 34, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(243, 106, 34, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(243, 106, 34, 0);
    }
}

/* Updated data center labels - always visible */
.datacenter-label {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #1f2937;
    padding: 8px 12px;
    border-radius: 8px;
    white-space: nowrap;
    border: 1px solid rgba(243, 106, 34, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 80px;
}

.datacenter-label.primary {
    background: rgb(1 120 10 / 95%);
    color: white;
    border-color: rgba(220, 38, 38, 0.3);
}

.location-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.location-country {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.primary-badge {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 2px;
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

/* Network Features */
.network-features-section {
    margin: 60px 0;
}

.features-header h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.network-feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.08);
    border: 1px solid rgba(243, 106, 34, 0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.network-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(243, 106, 34, 0.15);
    border-color: rgba(243, 106, 34, 0.2);
}

.network-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
}

.network-feature-card h4 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.network-feature-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: auto;
}

.spec-item {
    background: linear-gradient(135deg, rgba(243, 106, 34, 0.1), rgba(243, 106, 34, 0.05));
    color: #f36a22;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(243, 106, 34, 0.2);
}

/* Performance Metrics */
.performance-metrics-section {
    margin: 60px 0;
}

.metrics-header h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.performance-chart-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.08);
    border: 1px solid rgba(243, 106, 34, 0.1);
    margin-bottom: 30px;
    height: 300px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h4 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.status-indicator {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-indicator.online {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.chart-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.latency-bars {
    display: flex;
    align-items: end;
    gap: 20px;
    height: 150px;
    width: 100%;
    justify-content: center;
}

.bar {
    width: 60px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 8px 8px 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    transition: all 0.3s ease;
}

.bar.primary {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.bar:hover {
    transform: scale(1.05);
}

.bar-label {
    position: absolute;
    bottom: -25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
}

.bar-value {
    position: absolute;
    top: -25px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1f2937;
}

.bandwidth-meter {
    width: 100%;
}

.meter-container {
    position: relative;
    height: 40px;
    background: #f3f4f6;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 20px;
    transition: width 2s ease;
    position: relative;
}

.meter-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-20px); }
    100% { transform: translateX(20px); }
}

.meter-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.utilization-stats {
    display: flex;
    justify-content: space-between;
}

.utilization-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.utilization-stats .label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 4px;
}

.utilization-stats .value {
    font-size: 1rem;
    font-weight: 600;
    color: #f36a22;
}

/* Network Providers */
.network-providers-section {
    margin: 60px 0;
}

.providers-header h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.provider-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(243, 106, 34, 0.08);
    border: 1px solid rgba(243, 106, 34, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(243, 106, 34, 0.12);
}

.provider-logo {
    margin-bottom: 16px;
}

.provider-logo .logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 1.5rem;
}

.provider-logo .logo-placeholder span {
    font-size: 0.6rem;
    font-weight: 600;
    margin-top: 2px;
}

.tier1 { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.aws { background: linear-gradient(135deg, #ff9900, #ec7211); }
.cloudflare { background: linear-gradient(135deg, #f38020, #f6821f); }
.google { background: linear-gradient(135deg, #4285f4, #34a853); }
.azure { background: linear-gradient(135deg, #0078d4, #106ebe); }
.digitalocean { background: linear-gradient(135deg, #0080ff, #0066cc); }
.akamai { background: linear-gradient(135deg, #ee7203, #d65a00); }
.local { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.submarine { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.lumen { background: linear-gradient(135deg, #00a651, #008542); }

.provider-card h5 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.provider-card p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
    flex-grow: 1;
}

/* Network SLA */
.network-sla-section {
    margin-top: 60px;
}

.sla-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 16px 48px rgba(243, 106, 34, 0.12);
    border: 1px solid rgba(243, 106, 34, 0.1);
    position: relative;
    overflow: hidden;
}

.sla-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
}

.sla-content h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.sla-content p {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.sla-guarantees {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    color: #374151;
    font-size: 0.9rem;
}

.guarantee-item i {
    color: #10b981;
    margin-right: 12px;
    font-size: 16px;
}

.sla-badge {
    text-align: center;
}

.badge-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    position: relative;
}

.badge-circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    background: white;
    border-radius: 50%;
    z-index: 1;
}

.uptime-percentage {
    font-size: 2rem;
    font-weight: 800;
    color: #f36a22;
    z-index: 2;
    position: relative;
}

.uptime-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    z-index: 2;
    position: relative;
}

.sla-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sla-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.sla-btn.primary {
    background: linear-gradient(135deg, #f36a22, #ea580c);
    color: white;
}

.sla-btn.primary:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
}

.sla-btn.secondary {
    background: transparent;
    color: #f36a22;
    border: 2px solid #f36a22;
}

.sla-btn.secondary:hover {
    background: #f36a22;
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .sla-guarantees {
        grid-template-columns: 1fr;
    }
    
    .providers-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    
    .sla-badge {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .network-section {
        padding: 60px 0;
    }
    
    .network-section h2 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .datacenter-map-section {
        padding: 30px 20px;
    }
    
    .world-map-container {
        height: 300px;
    }
    
    .datacenter-label {
        font-size: 0.7rem;
        padding: 6px 8px;
        min-width: 60px;
    }
    
    .location-name {
        font-size: 0.7rem;
    }
    
    .location-country {
        font-size: 0.6rem;
    }
    
    .latency-bars {
        gap: 15px;
    }
    
    .bar {
        width: 50px;
    }
    
    .providers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .badge-circle {
        width: 120px;
        height: 120px;
    }
    
    .uptime-percentage {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .providers-grid {
        grid-template-columns: 1fr;
    }
    
    .provider-card {
        padding: 20px;
    }
    
    .network-feature-card {
        padding: 24px;
    }
}



/* Terms and Conditions Section */
.terms-conditions-section {
    padding: 80px 0;
    min-height: 100vh;
}

.section-subtitle-terms {
    color: #f36a22;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.terms-header h1 {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.last-updated {
    color: #6b7280;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Terms Content */
.terms-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(243, 106, 34, 0.1);
    border: 1px solid rgba(243, 106, 34, 0.1);
    margin-top: 30px;
}

.terms-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.terms-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f36a22;
    display: inline-block;
}

.terms-section h3 {
    color: #374151;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.terms-section p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Terms Lists */
.terms-list {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.terms-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

.terms-list li::before {
    content: '•';
    color: #f36a22;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.prohibited-list li::before {
    content: '✗';
    color: #ef4444;
    font-weight: bold;
}

/* Notice Boxes */
.important-notice,
.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
}

.important-notice {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.warning-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.05));
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.important-notice i {
    color: #3b82f6;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.warning-box i {
    color: #ef4444;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.notice-content h4,
.warning-content h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.notice-content p,
.warning-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Contact Info Box */
.contact-info-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    border: 1px solid #e5e7eb;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Agreement Footer */
.agreement-footer {
    margin-top: 40px;
}

.acknowledgment-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(243, 106, 34, 0.1), rgba(243, 106, 34, 0.05));
    border: 2px solid rgba(243, 106, 34, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.acknowledgment-box i {
    color: #10b981;
    font-size: 32px;
    margin-top: 4px;
    flex-shrink: 0;
}

.acknowledgment-content h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.acknowledgment-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 767px) {
    .terms-conditions-section {
        padding: 60px 0;
    }
    
    .terms-header h1 {
        font-size: 2rem;
    }
    
    .terms-content {
        padding: 30px 20px;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-section h3 {
        font-size: 1.1rem;
    }
    
    .important-notice,
    .warning-box,
    .acknowledgment-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Print Styles */
@media print {
    .terms-conditions-section {
        background: white;
        padding: 20px 0;
    }
    
    .terms-content {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .important-notice,
    .warning-box {
        background: white;
        border: 1px solid #000;
    }
}




/* Privacy Policy Section */
.privacy-policy-section {
    padding: 80px 0;
    min-height: 100vh;
}

.section-subtitle-privacy {
    color: #f36a22;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.privacy-header h1 {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.last-updated {
    color: #6b7280;
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 0;
}

/* Privacy Content */
.privacy-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(243, 106, 34, 0.1);
    border: 1px solid rgba(243, 106, 34, 0.1);
    margin-top: 30px;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-section h2 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f36a22;
    display: inline-block;
}

.privacy-section h3 {
    color: #374151;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.privacy-section h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin: 16px 0 8px 0;
}

.privacy-section p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Privacy Lists */
.privacy-list {
    margin: 16px 0;
    padding-left: 0;
    list-style: none;
}

.privacy-list li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.5;
}

.privacy-list li::before {
    content: '•';
    color: #f36a22;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Notice Boxes */
.commitment-notice,
.important-note,
.rights-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
}

.commitment-notice {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.important-note {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.rights-notice {
    background: linear-gradient(135deg, rgba(243, 106, 34, 0.1), rgba(243, 106, 34, 0.05));
    border: 1px solid rgba(243, 106, 34, 0.2);
}

.commitment-notice i {
    color: #10b981;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.important-note i {
    color: #3b82f6;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.rights-notice i {
    color: #f36a22;
    font-size: 24px;
    margin-top: 4px;
    flex-shrink: 0;
}

.notice-content h4,
.note-content h4 {
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.notice-content p,
.note-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Legal Basis Grid */
.legal-basis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.basis-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.basis-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: white;
}

.basis-item h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.basis-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Security Features */
.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.security-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(243, 106, 34, 0.05);
}

.security-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: white;
}

.security-item h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.security-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Retention Table */
.retention-table {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    border: 1px solid #e5e7eb;
}

.retention-row {
    display: grid;
    grid-template-columns: 2fr 2fr 3fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e5e7eb;
    align-items: center;
}

.retention-row:last-child {
    border-bottom: none;
}

.retention-row:first-child {
    font-weight: 600;
    color: #1f2937;
    border-bottom: 2px solid #f36a22;
}

.data-type {
    font-weight: 600;
    color: #374151;
}

.retention-period {
    color: #f36a22;
    font-weight: 600;
}

.retention-reason {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.right-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(243, 106, 34, 0.05);
    transition: all 0.3s ease;
}

.right-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(243, 106, 34, 0.1);
}

.right-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    color: white;
}

.right-item h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.right-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Cookie Types */
.cookie-types {
    margin: 24px 0;
}

.cookie-type {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
}

.cookie-type h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-type i {
    color: #f36a22;
    font-size: 16px;
}

.cookie-type p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Third Party Services */
.third-party-list {
    margin: 24px 0;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(243, 106, 34, 0.05);
}

.service-item h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-item p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Contact Info Box */
.contact-info-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
    border: 1px solid #e5e7eb;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-method:last-child {
    margin-bottom: 0;
}

.contact-method i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f36a22, #ea580c);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-details h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    color: #6b7280;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Privacy Footer */
.privacy-footer {
    margin-top: 40px;
}

.commitment-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, rgba(243, 106, 34, 0.1), rgba(243, 106, 34, 0.05));
    border: 2px solid rgba(243, 106, 34, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.commitment-box i {
    color: #10b981;
    font-size: 32px;
    margin-top: 4px;
    flex-shrink: 0;
}

.commitment-content h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.commitment-content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .legal-basis-grid,
    .security-features,
    .rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .retention-row {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .privacy-policy-section {
        padding: 60px 0;
    }
    
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 30px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section h3 {
        font-size: 1.1rem;
    }
    
    .commitment-notice,
    .important-note,
    .rights-notice,
    .commitment-box {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .legal-basis-grid,
    .security-features,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Print Styles */
@media print {
    .privacy-policy-section {
        background: white;
        padding: 20px 0;
    }
    
    .privacy-content {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .commitment-notice,
    .important-note,
    .rights-notice {
        background: white;
        border: 1px solid #000;
    }
}