/* M&V Catering - Beautiful Modern Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Additional spacing fixes */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Ensure proper spacing for all content */
main {
    margin-top: 0;
    padding-top: 0;
}

/* Fix for any potential overlap */
.hero-slider .container {
    position: relative;
    z-index: 10;
    padding-top: 0;
    margin-top: 0;
}

.hero-slider .row {
    margin-top: 0;
    padding-top: 0;
}

.hero-slider .col-lg-8 {
    padding-top: 0;
    margin-top: 0;
}

/* Premium HD Color Palette - Harmonized Blue Theme */
:root {
    --primary-blue: #2563eb;
    --deep-blue: #1d4ed8;
    --royal-blue: #1e40af;
    --light-blue: #3b82f6;
    --sky-blue: #60a5fa;
    --emerald-green: #059669;
    --gold-accent: #f59e0b;
    --warm-orange: #f97316;
    --soft-gray: #f8fafc;
    --dark-gray: #0f172a;
    --light-gray: #64748b;
    --white: #ffffff;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #2563eb, #1d4ed8);
    --gradient-secondary: linear-gradient(135deg, #f59e0b, #f97316);
    --gradient-hero: linear-gradient(135deg, #0f172a, #2563eb, #1d4ed8);
    --gradient-premium: linear-gradient(135deg, #2563eb, #1d4ed8, #1e40af);
    --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24);
    --gradient-blue: linear-gradient(135deg, #3b82f6, #60a5fa);
    --gradient-ocean: linear-gradient(135deg, #1e40af, #2563eb, #3b82f6);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--light-gray);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Enhanced Visual Effects */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(37, 99, 235, 0.15);
    padding: 0.25rem 0;
    min-height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

/* Enhanced Logo Animation */
.logo-image {
    height: 120px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.2));
}

.navbar-brand:hover .logo-image {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(37, 99, 235, 0.3));
}

/* Enhanced Navigation Effects */
.navbar-nav .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 600;
    padding: 0.8rem 1.5rem !important;
    margin: 0 0.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
    transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-premium);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary-blue) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
    background: var(--gradient-premium);
    color: white !important;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.quote-btn {
    background: var(--gradient-premium) !important;
    color: white !important;
    border-radius: 25px !important;
    padding: 0.5rem 1.5rem !important;
    margin-left: 0.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3) !important;
    border: none !important;
}

.quote-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4) !important;
    color: white !important;
    background: var(--gradient-premium) !important;
}

.quote-btn::after {
    display: none !important;
}

/* Quote Modal Styles */
.quote-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.quote-modal-header {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 2rem;
    position: relative;
}

.quote-modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.quote-modal-header .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

.quote-modal-header .btn-close {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.quote-modal-header .btn-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.quote-modal-body {
    padding: 2rem;
    background: #f8fafc;
}

.quote-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
    font-style: italic;
}

.quote-form .form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.quote-form .form-label i {
    color: #2563eb;
    width: 16px;
}

.quote-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.quote-form .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.quote-form .form-control::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.quote-form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.quote-form .form-check {
    padding-left: 2rem;
}

.quote-form .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    margin-left: -2rem;
    margin-top: 0.1rem;
}

.quote-form .form-check-input:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.quote-form .form-check-label {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.4;
}

.quote-modal-footer {
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.quote-submit-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.quote-modal-footer .btn-secondary {
    background: #6b7280;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quote-modal-footer .btn-secondary:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Mobile Responsive for Quote Modal */
@media (max-width: 768px) {
    .quote-modal-content {
        margin: 1rem;
        border-radius: 15px;
    }
    
    .quote-modal-header {
        padding: 1.5rem;
    }
    
    .quote-modal-header .modal-title {
        font-size: 1.5rem;
    }
    
    .quote-modal-body {
        padding: 1.5rem;
    }
    
    .quote-modal-footer {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .quote-modal-footer .btn {
        width: 100%;
        margin: 0;
    }
    
    .quote-form .row .col-md-6 {
        margin-bottom: 1rem;
    }
}

.navbar-toggler {
    border: 2px solid var(--primary-blue);
    padding: 0.5rem 0.8rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: var(--primary-blue);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2837, 99, 235, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.3em;
    height: 1.3em;
}

/* Stunning HD Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(37, 99, 235, 0.5), rgba(29, 78, 216, 0.6));
    z-index: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 100px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: white;
    background: linear-gradient(135deg, #ffffff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
    margin-top: 0;
    padding-top: 0;
    position: relative;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes underlineGlow {
    0% { opacity: 0.5; transform: translateX(-50%) scaleX(0.8); }
    100% { opacity: 1; transform: translateX(-50%) scaleX(1.2); }
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

.hero-content .lead {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.hero-buttons .btn-primary {
    background: var(--gradient-gold);
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
}

.hero-buttons .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--premium-purple);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.slider-dot.active {
    background: var(--gradient-gold);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 30px;
}

.slider-arrow.next {
    right: 30px;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 100%;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-content .lead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 35px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    border: none;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .btn-primary {
    background: var(--gradient-secondary);
    color: white;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
}

.hero-buttons .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
}

/* Beautiful Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.booking-form h3 {
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: white;
}

.form-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: block;
}

/* Enhanced Button Effects */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-premium);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: white;
}

.btn-secondary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
}

/* Video Showcase Section */
.video-showcase-section {
    position: relative;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    border-radius: 0;
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(37, 99, 235, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.video-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
    line-height: 1.5;
}

.video-buttons {
    margin-top: 2rem;
}

.video-buttons .btn {
    margin: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.video-buttons .btn-primary {
    background: var(--gradient-premium);
    border: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.video-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.video-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.video-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
}

.video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 4;
}

.play-pause-btn,
.volume-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.play-pause-btn:hover,
.volume-btn:hover {
    background: rgba(37, 99, 235, 0.8);
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.play-pause-btn i,
.volume-btn i {
    font-size: 1.2rem;
}

/* Responsive Video Section */
@media (max-width: 992px) {
    .video-container {
        height: 60vh;
        min-height: 400px;
    }
    
    .video-title {
        font-size: 2.8rem;
    }
    
    .video-subtitle {
        font-size: 1.1rem;
    }
    
    .video-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .video-container {
        height: 50vh;
        min-height: 350px;
    }
    
    .video-title {
        font-size: 2.2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
    }
    
    .video-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .video-buttons .btn {
        width: 100%;
        max-width: 250px;
        margin: 0.3rem 0;
    }
    
    .video-controls {
        bottom: 20px;
        right: 20px;
    }
    
    .play-pause-btn,
    .volume-btn {
        width: 45px;
        height: 45px;
    }
}

/* Sections */
.section-padding {
    padding: 100px 0 80px 0;
}

.page-header {
    padding-top: 100px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header .lead {
    font-size: 1.3rem;
    color: white;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.bg-soft-gray {
    background-color: var(--soft-gray);
}

.bg-primary-blue {
    background-color: var(--primary-blue);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #4B2E83 0%, #6A4C93 100%);
}

.bg-gradient-primary p,
.bg-gradient-primary h5,
.bg-gradient-primary i {
    color: white !important;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

/* Enhanced Card Effects */
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    background: white;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02), rgba(29, 78, 216, 0.01));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.card-img-top {
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

/* Menu Image Container */
.menu-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.menu-image-container .menu-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-image-container:hover .menu-image {
    transform: scale(1.05);
}

.menu-image-container .menu-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--light-gray);
}

.card-body {
    padding: 2rem;
}

.card-title {
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Beautiful Menu Filter */
.menu-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.menu-filter-btn {
    background: rgba(255, 255, 255, 0.8);
    color: var(--dark-gray);
    border: 2px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 35px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.menu-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.menu-filter-btn:hover::before {
    left: 100%;
}

.menu-filter-btn:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    border-color: var(--primary-blue);
}

.menu-filter-btn.active {
    background: var(--gradient-secondary);
    color: white;
    border-color: var(--warm-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    font-weight: 700;
}

.menu-filter-btn i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Hero Image */
.hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

/* About Image */
.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.about-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.03);
}

/* Beautiful Placeholder Images */
.placeholder-image {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px dashed #cbd5e1;
}

.placeholder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Beautiful Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 0.9;
}

/* Beautiful WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: scale(1.1);
    color: white;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .lead {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .hero-buttons .btn {
        margin: 0 0.5rem 0.5rem 0;
    }
    
    /* Tablets - service cards in 2 columns */
    .service-card {
        margin-bottom: 2rem;
    }
    
    /* Menu in 2 columns */
    .menu-item {
        padding: 20px;
    }
    
    /* Gallery in 2-3 columns */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    /* Page headers */
    .page-header h1 {
        font-size: 3rem;
    }
    
    /* Modal full width on tablets */
    .modal-dialog {
        max-width: 95%;
        margin: 1rem auto;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .navbar-brand .logo-image {
        height: 100px;
    }
    
    .navbar-nav {
        gap: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.8rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(139, 92, 246, 0.1);
    }
    
    .quote-btn {
        margin-left: 0 !important;
        margin-top: 0.5rem !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        display: block;
        width: 100%;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .card {
        margin-bottom: 1.5rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .col-lg-4 {
        margin-bottom: 2rem;
    }
    
    .footer .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .footer-service-areas {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-slider {
        height: 100vh;
        margin-top: 0;
        padding-top: 0;
    }
    
    .hero-content {
        padding-top: 80px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .menu-filters {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 2rem;
    }
    
    .menu-filter-btn {
        width: 250px;
        margin-bottom: 10px;
    }
    
    .booking-form {
        padding: 2rem;
    }
    
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
    
    /* Page headers */
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header .lead {
        font-size: 1.1rem;
    }
    
    /* Service cards responsive */
    .service-image-container {
        height: 200px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    /* Menu section */
    .menu-category {
        margin-bottom: 60px;
    }
    
    .category-header h2 {
        font-size: 2rem;
    }
    
    .menu-item {
        padding: 25px;
    }
    
    /* Pricing section */
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .gallery-card {
        height: 220px;
    }
    
    /* Modal responsive */
    .modal-content {
        padding: 1.5rem;
    }
    
    /* About page images */
    .about-image-container img {
        max-width: 100%;
        height: auto;
    }
    
    /* Founder image */
    .founder-image-wrapper {
        max-width: 300px;
    }
    
    /* CTA sections */
    .cta-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-section .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .navbar-brand .logo-image {
        height: 80px;
    }
    
    .hero-section {
        min-height: 80vh;
    }
    
    .booking-form {
        padding: 1.5rem;
    }
}

/* Extra Small Devices (phones, 480px and down) */
@media (max-width: 480px) {
    .navbar {
        padding: 0.25rem 0;
        min-height: 70px;
    }
    
    .navbar-brand .logo-image {
        height: 40px;
    }
    
    body {
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .quote-btn {
        font-size: 0.8rem;
        padding: 0.4rem 1rem !important;
    }
    
    .navbar-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem !important;
    }
    
    /* Page headers */
    .page-header {
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header .lead {
        font-size: 0.95rem;
    }
    
    /* Service cards */
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    /* Menu items */
    .menu-item {
        padding: 20px;
    }
    
    .item-icon {
        width: 50px;
        height: 50px;
    }
    
    .item-icon i {
        font-size: 1.2rem;
    }
    
    /* Pricing cards */
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    /* Modal */
    .modal-dialog {
        margin: 10px;
    }
    
    /* Gallery */
    .gallery-card {
        height: 200px;
    }
    
    /* Form inputs */
    .form-control {
        font-size: 16px;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Founder image */
    .founder-image-wrapper {
        max-width: 250px;
    }
    
    /* About images */
    .about-image-container {
        margin-bottom: 2rem;
    }
    
    /* Video controls */
    .video-controls {
        opacity: 1;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 80px;
        right: 15px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h5 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .footer p,
    .footer a {
        font-size: 0.9rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

/* AOS Animation Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Beautiful Footer */
.footer {
    background: var(--gradient-primary) !important;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer h5,
.footer h6 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer p {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
}

.footer .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer .social-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
    backdrop-filter: blur(10px);
}

.footer .social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white !important;
}

.footer .footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    display: inline-block;
}

.footer .footer-link:hover {
    color: white !important;
    transform: translateX(5px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.footer .text-danger {
    color: #ff6b6b !important;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--gradient-secondary);
}

.service-card h3 {
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    color: var(--light-gray);
    margin-bottom: 0.5rem;
}

.service-card ul li i {
    color: var(--success-green);
}

/* Service Images */
.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

/* Service Areas */
.service-areas {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.service-area-badge {
    background: linear-gradient(135deg, var(--premium-purple), var(--deep-purple));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.service-area-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* Footer Service Areas */
.footer-service-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-area-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.footer-area-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Hero Service Areas */
.service-areas-hero {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-area-badge-hero {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-area-badge-hero:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Process Steps */
.process-step {
    position: relative;
    display: inline-block;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: var(--gradient-secondary);
    transform: scale(1.1);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border-color: var(--warm-orange);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pricing-period {
    color: var(--light-gray);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--light-gray);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--success-green);
    margin-right: 0.5rem;
}

/* Founder Cards */
.founder-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    height: 100%;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-blue);
}

.founder-image-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.founder-card:hover .founder-image {
    transform: scale(1.1);
}

.founder-card:hover .founder-image-container {
    border-color: var(--warm-orange);
    transform: scale(1.05);
}

.founder-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--light-gray);
}

.founder-content {
    text-align: center;
}

.founder-name {
    color: var(--dark-gray);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-description {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    color: white;
}
