:root {
    --primary: #667eea;
    --secondary: #764ba2;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --success: #4CAF50;
    --danger: #f44336;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background: var(--light);
}

/* Glass Navbar */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    background: linear-gradient(135deg, #667eea20 0%, #764ba220 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    border-radius: 20px;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: white;
}

/* Buttons */
.btn-primary {
    background: var(--gradient);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102,126,234,0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 30px;
}

.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: transparent;
}

/* Booking Form Styles */
.booking-section {
    padding-top: 100px;
    padding-bottom: 50px;
}

.booking-card {
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.conditional-fields {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Controls */
.form-control, .form-select {
    border-radius: 12px;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(102,126,234,0.25);
}

/* Upload Area */
.upload-area {
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: var(--primary);
    background: rgba(102,126,234,0.05);
}

.upload-area.drag-over {
    border-color: var(--primary);
    background: rgba(102,126,234,0.1);
}

.file-list {
    margin-top: 15px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 8px;
}

.file-item .remove-file {
    cursor: pointer;
    color: var(--danger);
}

/* Loading Spinner */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    animation: slideIn 0.3s ease;
    display: none;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Admin Panel Styles */
.admin-sidebar {
    background: var(--dark);
    color: white;
    min-height: 100vh;
}

.admin-table {
    background: white;
    border-radius: 20px;
    overflow-x: auto;
}

.payment-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.payment-paid {
    background: #d4edda;
    color: #155724;
}

.payment-pending {
    background: #fff3cd;
    color: #856404;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding-top: 60px;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .booking-card {
        margin: 20px;
    }
    
    .admin-sidebar {
        min-height: auto;
    }
    
    .admin-table {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .service-card, .testimonial-card {
        margin: 10px;
    }
    
    .row {
        margin: 0;
    }
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}
/* ============================================
   CREATIVE SOCIAL MEDIA ICONS - GRADIENT STYLE
   ============================================ */

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    background: #f0f0f0;
    color: #555;
    position: relative;
    overflow: hidden;
}

/* Individual Brand Gradients & Colors */
.social-icon.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #405de6);
    color: white;
    box-shadow: 0 4px 10px rgba(214, 41, 118, 0.3);
}

.social-icon.facebook {
    background: linear-gradient(135deg, #1877f2, #0c63d4);
    color: white;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #0a66c2, #0077b5);
    color: white;
    box-shadow: 0 4px 10px rgba(10, 102, 194, 0.3);
}

.social-icon.twitter {
    background: linear-gradient(135deg, #1da1f2, #0d8bf0);
    color: white;
    box-shadow: 0 4px 10px rgba(29, 161, 242, 0.3);
}

.social-icon.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

/* Hover Animation */
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    filter: brightness(1.05);
}

.social-icon:active {
    transform: translateY(0) scale(1);
}

/* Mobile Responsive - Icons Adjust */
@media (max-width: 991px) {
    .social-icons {
        margin: 10px 0;
        justify-content: center;
    }
    
    .social-icon {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .social-icon {
        width: 36px;
        height: 36px;
        font-size: 1.2rem;
    }
}

