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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef9 100%);
    color: #1a2a3a;
    overflow-x: hidden;
}

/* 3D Background Shapes */
.shape {
    position: fixed;
    background: rgba(0, 102, 204, 0.05);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0,102,204,0.1), transparent);
    animation: float 20s infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -80px;
    background: radial-gradient(circle, rgba(0,153,255,0.08), transparent);
    animation: float 15s infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 80%;
    background: radial-gradient(circle, rgba(0,102,204,0.06), transparent);
    animation: float 18s infinite;
}

.shape-4 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 85%;
    background: radial-gradient(circle, rgba(0,153,255,0.07), transparent);
    animation: float 12s infinite reverse;
}

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

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.tooltip {
    position: absolute;
    right: 70px;
    background: #1a2a3a;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.3s;
    pointer-events: none;
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo h1 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2a3a;
}

.logo span {
    color: #0066cc;
    font-weight: 400;
}

nav {
    display: flex;
    gap: 30px;
}

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

nav a:hover {
    color: #0066cc;
}

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

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a2a3a;
}

.highlight {
    color: #0066cc;
}

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

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

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #0066cc;
    color: white;
    box-shadow: 0 4px 15px rgba(0,102,204,0.3);
}

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

.btn-secondary {
    background: white;
    color: #0066cc;
    border: 2px solid #0066cc;
}

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

.hero-3d {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-card {
    background: linear-gradient(135deg, #0066cc, #0099ff);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    gap: 20px;
    box-shadow: 20px 20px 40px rgba(0,0,0,0.1);
    animation: floatCard 6s infinite;
}

.floating-card i {
    font-size: 50px;
    color: white;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

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

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

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

.section-header h2 {
    font-size: 36px;
    color: #1a2a3a;
}

.underline {
    width: 80px;
    height: 4px;
    background: #0066cc;
    margin: 15px auto;
    border-radius: 2px;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
    text-align: center;
    border: 1px solid #eef2ff;
}

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

.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;
}

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

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

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-card ul li:before {
    content: "✓";
    color: #0066cc;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-order {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    margin-top: 10px;
}

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

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

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

.order-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.info-card i {
    font-size: 40px;
    color: #0066cc;
    margin-bottom: 10px;
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.form-group label i {
    margin-right: 8px;
    color: #0066cc;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e4ec;
    border-radius: 12px;
    font-size: 16px;
    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-btn {
    width: 100%;
    background: #0066cc;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

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

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

.testimonial-card {
    background: linear-gradient(135deg, #f0f4ff, #ffffff);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card i {
    font-size: 30px;
    color: #0066cc;
    opacity: 0.5;
    margin-bottom: 15px;
}

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

.stars {
    color: #ffc107;
    margin-top: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1a2a3a;
    color: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3, .map h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: #0066cc;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.whatsapp-link {
    color: #25D366;
    text-decoration: none;
}

.map-placeholder {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.map-placeholder i {
    font-size: 50px;
    margin-bottom: 15px;
    color: #0066cc;
}

/* Footer */
footer {
    background: #0f1a24;
    color: white;
    padding: 50px 0 20px;
}

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

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

.footer-logo h3 {
    margin: 10px 0;
}

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

.footer-links a:hover {
    color: #0066cc;
}

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

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    
    nav.active {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .order-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}