/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* VIP Color Palette */
    --gold-primary: #D4AF37;
    --gold-light: #F4E4C1;
    --gold-dark: #B8941E;
    --purple-primary: #6B46C1;
    --purple-light: #9F7AEA;
    --purple-dark: #553C9A;
    --dark-bg: #0A0A0F;
    --dark-card: #1A1A2E;
    --dark-hover: #252541;
    --white: #FFFFFF;
    --gray-light: #E5E5E5;
    --gray-medium: #9CA3AF;
    --success: #10B981;
    --danger: #EF4444;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4C1 100%);
    --gradient-purple: linear-gradient(135deg, #6B46C1 0%, #9F7AEA 100%);
    --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #0A0A0F 100%);
    --gradient-luxury: linear-gradient(135deg, #D4AF37 0%, #6B46C1 50%, #D4AF37 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(212, 175, 55, 0.1);
    --shadow-md: 0 4px 16px rgba(212, 175, 55, 0.2);
    --shadow-lg: 0 8px 32px rgba(212, 175, 55, 0.3);
    --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BACKGROUND ANIMATION ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out;
    opacity: 0.3;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-gold);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-purple);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--gradient-luxury);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
}

.nav-logo i {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.admin-link {
    padding: 8px 20px;
    background: var(--gradient-purple);
    border-radius: 25px;
    color: var(--white) !important;
}

.admin-link:hover {
    box-shadow: var(--shadow-glow);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 150px 0 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.crown-badge {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-luxury);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--dark-bg);
    box-shadow: var(--shadow-glow);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: var(--shadow-glow); }
    50% { transform: scale(1.05); box-shadow: 0 0 60px rgba(212, 175, 55, 0.6); }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

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

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.feature-badge i {
    color: var(--gold-primary);
    font-size: 20px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 0;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-medium);
}

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

.service-card {
    position: relative;
    background: var(--gradient-dark);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-luxury);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.service-card:hover::before {
    opacity: 0.1;
}

.service-card.premium {
    border-color: var(--gold-primary);
}

.service-card.best-value {
    border-color: var(--purple-primary);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-badge.best {
    background: var(--gradient-purple);
    color: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--dark-bg);
}

.service-name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold-primary);
}

.service-description {
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 60px;
}

.service-price {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
}

.service-price .currency {
    font-size: 20px;
    color: var(--gold-light);
}

.service-price .amount {
    font-size: 42px;
    font-weight: 700;
    color: var(--gold-primary);
    margin: 0 5px;
}

.service-price .duration {
    font-size: 16px;
    color: var(--gray-medium);
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--gold-primary);
    font-size: 16px;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-select-service:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
    padding: 80px 0;
    background: rgba(26, 26, 46, 0.5);
}

.payment-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.payment-form-container {
    background: var(--gradient-dark);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header i {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray-medium);
}

.selected-service {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold-primary);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.service-summary h4 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 18px;
}

.service-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-name-display {
    font-size: 20px;
    font-weight: 600;
}

.service-price-display {
    font-size: 24px;
    font-weight: 700;
    color: var(--gold-primary);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-light);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--gold-primary);
}

.form-group input[type="text"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 15px;
    background: rgba(26, 26, 46, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-method-option {
    cursor: pointer;
}

.payment-method-option input[type="radio"] {
    display: none;
}

.method-card {
    padding: 20px;
    background: rgba(26, 26, 46, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.method-card i {
    font-size: 32px;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.method-card span {
    display: block;
    font-weight: 600;
}

.payment-method-option input:checked + .method-card {
    background: var(--gradient-gold);
    border-color: var(--gold-primary);
    color: var(--dark-bg);
}

.payment-method-option input:checked + .method-card i {
    color: var(--dark-bg);
}

.payment-account-info {
    margin: 25px 0;
}

.account-card {
    background: rgba(107, 70, 193, 0.2);
    border: 2px solid var(--purple-primary);
    border-radius: 15px;
    padding: 25px;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.account-header i {
    color: var(--purple-light);
    font-size: 24px;
}

.account-header h4 {
    color: var(--purple-light);
    font-size: 18px;
}

.account-details {
    background: rgba(10, 10, 15, 0.5);
    border-radius: 10px;
    padding: 20px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: var(--gray-medium);
    font-size: 14px;
}

.detail-row .value {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
}

.amount-highlight {
    color: var(--gold-primary) !important;
    font-size: 20px !important;
}

.btn-copy {
    padding: 5px 12px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 5px;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-copy:hover {
    transform: scale(1.1);
}

.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-display {
    padding: 40px;
    background: rgba(26, 26, 46, 0.6);
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.file-upload-display i {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.file-upload-display span {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
}

.file-upload-display small {
    color: var(--gray-medium);
}

.file-upload-wrapper:hover .file-upload-display {
    border-color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
}

.image-preview {
    margin-top: 15px;
    text-align: center;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    border: 2px solid var(--gold-primary);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-message i {
    font-size: 80px;
    color: var(--success);
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 28px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.success-message p {
    color: var(--gray-light);
    margin-bottom: 30px;
}

.btn-new-order {
    padding: 15px 40px;
    background: var(--gradient-purple);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-new-order:hover {
    transform: scale(1.05);
}

/* ===== PAYMENT INFO SIDEBAR ===== */
.payment-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--gradient-dark);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.info-header i {
    font-size: 28px;
    color: var(--gold-primary);
}

.info-header h3 {
    font-size: 18px;
    color: var(--gold-primary);
}

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

.payment-accounts {
    background: var(--gradient-dark);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 25px;
}

.payment-accounts h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 18px;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(26, 26, 46, 0.6);
    border-radius: 10px;
    margin-bottom: 15px;
}

.account-item:last-child {
    margin-bottom: 0;
}

.account-item i {
    font-size: 32px;
}

.account-item i.jazzcash {
    color: #ED1B24;
}

.account-item i.easypaisa {
    color: #5DB846;
}

.account-item strong {
    display: block;
    color: var(--gold-light);
    margin-bottom: 5px;
}

.account-item p {
    color: var(--gray-medium);
    font-size: 14px;
    margin: 0;
}

.account-num {
    color: var(--white) !important;
    font-weight: 600 !important;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-card);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 40px 0;
    margin-top: 80px;
}

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

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
}

.footer p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-primary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    .payment-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

/* -- WhatsApp Follow Button -- */
.whatsapp-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    animation: waPulse 2.5s infinite;
}

.whatsapp-follow-btn i {
    font-size: 1.1rem;
}

.whatsapp-follow-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
    background: linear-gradient(135deg, #2eea74, #25D366);
}

.whatsapp-follow-btn:active {
    transform: scale(0.97);
}

/* Soft pulse animation */
@keyframes waPulse {
    0%   { box-shadow: 0 4px 15px rgba(37,211,102,0.35); }
    50%  { box-shadow: 0 4px 25px rgba(37,211,102,0.65); }
    100% { box-shadow: 0 4px 15px rgba(37,211,102,0.35); }
}

/* Mobile responsive */
@media (max-width: 600px) {
    .whatsapp-follow-btn span {
        display: none;   /* Mobile par sirf icon dikhega */
    }
    .whatsapp-follow-btn {
        padding: 8px 12px;
    }
}
