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

body {
    font-family: 'Poppins', sans-serif;
    background: #0a0a2a;
    color: #1a1a2e;
    overflow-x: hidden;
}

/* Premium Background with Orbs */
.premium-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0066cc, #0099ff);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #00cc99, #0099ff);
    bottom: -300px;
    right: -200px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6600cc, #0066cc);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ff6600, #ff0066);
    bottom: 20%;
    left: 10%;
    animation-delay: 15s;
}

@keyframes floatOrb {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-50px) translateX(30px); }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    animation: pulse 1.5s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Premium Header */
.premium-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 100;
    padding: 15px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.logo-area {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.text-logo i {
    font-size: 28px;
    color: #0066cc;
    margin-right: 10px;
}

.text-logo h1 {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #1a2a3a, #0066cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-logo span {
    font-weight: 500;
    color: #0066cc;
    -webkit-text-fill-color: #0066cc;
}

.text-logo small {
    font-size: 12px;
    color: #ff6600;
    display: block;
}

.premium-nav {
    display: flex;
    gap: 35px;
}

.premium-nav a {
    text-decoration: none;
    color: #1a2a3a;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

.premium-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #0099ff);
    transition: 0.3s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.4);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Premium Hero */
.premium-hero {
    padding: 100px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.premium-badge {
    display: inline-block;
    background: rgba(0,102,204,0.1);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.badge-text {
    color: #0066cc;
    font-weight: 600;
    font-size: 14px;
}

.premium-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a2a3a;
}

.gradient-text {
    background: linear-gradient(135deg, #0066cc, #00cc99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

.stat-label {
    font-size: 14px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,102,204,0.4);
}

.btn-premium-secondary {
    background: transparent;
    border: 2px solid #0066cc;
    color: #0066cc;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-premium-secondary:hover {
    background: #0066cc;
    color: white;
}

/* Floating Elements */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-elements {
    position: relative;
    height: 100%;
}

.float-card {
    position: absolute;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    animation: floatCard 6s infinite ease-in-out;
}

.float-card i {
    font-size: 28px;
    color: #0066cc;
}

.card-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.card-4 {
    top: 30%;
    right: 20%;
    animation-delay: 3s;
}

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

/* Services Section */
.premium-services {
    padding: 80px 0;
    background: white;
}

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

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc20, #0099ff20);
    color: #0066cc;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #0099ff);
    margin: 15px auto;
    border-radius: 2px;
}

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

.premium-service-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,102,204,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.premium-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,102,204,0.15);
    border-color: rgba(0,102,204,0.3);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(circle at 30% 30%, rgba(0,102,204,0.05), transparent);
    opacity: 0;
    transition: 0.4s;
}

.premium-service-card:hover .card-glow {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066cc10, #0099ff10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 40px;
    color: #0066cc;
}

.premium-service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a2a3a;
}

.premium-service-card ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
}

.premium-service-card ul li {
    padding: 8px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-service-card ul li i {
    color: #0066cc;
    font-size: 14px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s;
}

.service-cta:hover {
    gap: 15px;
}

/* Order Section */
.premium-order {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff, #eef2ff);
}

.order-container {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.order-header {
    background: linear-gradient(135deg, #1a2a3a, #2a3a4a);
    padding: 40px;
    text-align: center;
    color: white;
}

.order-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.order-flex {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px;
}

.order-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 32px;
    color: #0066cc;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.premium-form {
    background: #f8f9ff;
    padding: 30px;
    border-radius: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a2a3a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e4ec;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.submit-premium {
    width: 100%;
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
}

.submit-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

/* Testimonials */
.premium-testimonials {
    padding: 80px 0;
    background: white;
}

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

.testimonial-premium {
    background: linear-gradient(135deg, #f8f9ff, #ffffff);
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0,102,204,0.1);
    transition: 0.3s;
}

.testimonial-premium:hover {
    transform: translateY(-5px);
    border-color: rgba(0,102,204,0.3);
}

.testimonial-premium i {
    font-size: 40px;
    color: #0066cc;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-premium p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.stars {
    color: #ffc107;
}

/* Footer */
.premium-footer {
    background: #0a0a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo i {
    font-size: 28px;
    color: #0066cc;
}

.footer-logo h3 {
    font-size: 20px;
}

.footer-logo span {
    color: #0066cc;
}

.footer-logo small {
    font-size: 10px;
    color: #ff6600;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: #0066cc;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #0066cc;
    transform: translateX(5px);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
}

.footer-contact i {
    width: 30px;
    color: #0066cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .premium-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .order-flex {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .premium-title {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .premium-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}