/* ===================================
   YKC Entertainment - Custom CSS
   Modern DJ Theme with Dark/Neon Style
   =================================== */

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --neon-pink: #ff006e;
    --neon-blue: #00f5ff;
    --neon-purple: #9d4edd;
    --dark-bg: #0a0e27;
    --dark-bg-alt: #12162d;
    --text-color: #ffffff;
    --text-muted: #a8b2d1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Improve touch targets for mobile */
button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: rgba(102, 126, 234, 0.3);
    touch-action: manipulation;
}

/* Prevent zoom on input focus (iOS) */
input,
select,
textarea {
    font-size: 16px !important;
}

/* ===================================
   Particles Background
   =================================== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
}

/* Optimize particles for mobile */
@media (max-width: 767px) {
    #particles-js {
        opacity: 0.5;
        will-change: auto;
    }
}

/* ===================================
   Scrollbar
   =================================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
}

/* ===================================
   Navbar
   =================================== */
.navbar {
    background: rgba(10, 14, 39, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98) !important;
    box-shadow: 0 5px 30px rgba(102, 126, 234, 0.3);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.brand-sub {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* ===================================
   Buttons
   =================================== */
.btn-gradient {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.6);
    color: white;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--text-color);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-gradient:hover {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 110, 0.6);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 72px;
    font-weight: 900;
    margin-top: 50px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
}

/* Gradient animation - disabled on mobile for performance */
@media (min-width: 768px) {
    .text-gradient {
        animation: gradientShift 5s ease infinite;
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 24px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--text-color);
    font-size: 24px;
    text-decoration: none;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===================================
   Page Header
   =================================== */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(255, 0, 110, 0.1));
}

.page-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

/* ===================================
   Sections
   =================================== */
.section-padding {
    padding: 100px 0;
}

.bg-dark-alt {
    background-color: var(--dark-bg-alt);
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-pink);
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(255, 0, 110, 0.3));
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-content {
    text-align: center;
}

.badge-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: white;
    margin: 0;
}

.badge-text {
    font-size: 14px;
    color: white;
    margin: 0;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===================================
   Service Cards
   =================================== */
.service-card {
    background: rgba(18, 22, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

/* Icon rotation - disabled on mobile */
@media (min-width: 768px) {
    .service-icon {
        transition: all 0.3s ease;
    }
    
    .service-card:hover .service-icon {
        transform: rotateY(180deg);
    }
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===================================
   Portfolio Cards
   =================================== */
.portfolio-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--card-bg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.3);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.3), rgba(255, 0, 110, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-color);
}

.portfolio-placeholder span {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.7;
}

.portfolio-card-info-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.9);
    padding: 15px 20px;
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-card-info-bar .portfolio-title {
    font-size: 16px;
    margin-bottom: 5px;
}

.portfolio-card-info-bar .portfolio-category {
    font-size: 11px;
    margin-bottom: 0;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    width: 100%;
}

.portfolio-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.portfolio-venue {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.portfolio-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.portfolio-title-bar {
    padding: 15px 20px;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

.portfolio-title-bar .portfolio-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.portfolio-title-bar .portfolio-category {
    font-size: 12px;
    color: var(--neon-pink);
    font-weight: 500;
}

/* ===================================
   Portfolio Filter
   =================================== */
.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.filter-btn {
    background: rgba(18, 22, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
}

/* ===================================
   Category Section
   =================================== */
.category-header {
    border-left: 4px solid var(--neon-pink);
    padding-left: 20px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 5px;
}

.category-description {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ===================================
   Stats Section
   =================================== */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(255, 0, 110, 0.1));
    position: relative;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   Values Section
   =================================== */
.value-card {
    background: rgba(18, 22, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.3);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.value-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.value-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ===================================
   Service Card Large (About Page)
   =================================== */
.service-card-large {
    background: rgba(18, 22, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card-large:hover {
    transform: translateX(10px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
}

.service-icon-large {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.service-content .service-title {
    margin-bottom: 10px;
}

/* ===================================
   Contact Section
   =================================== */
.contact-info-wrapper {
    background: rgba(18, 22, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
}

.contact-info-items {
    margin: 30px 0;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.contact-info-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-info-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-link-large {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link-large:hover {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    transform: translateY(-3px);
}

/* ===================================
   Contact Form
   =================================== */
.contact-form-wrapper {
    background: rgba(18, 22, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.contact-form .form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(18, 22, 45, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(18, 22, 45, 0.9);
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 110, 0.25);
    color: var(--text-color);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

/* ===================================
   Quick Contact Cards
   =================================== */
.quick-contact-card {
    display: block;
    background: rgba(18, 22, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.3);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.quick-contact-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.quick-contact-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.quick-contact-link {
    color: var(--neon-pink);
    font-weight: 600;
    font-size: 14px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background-color: var(--dark-bg-alt);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-pink);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--neon-pink);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* ===================================
   Responsive
   =================================== */
/* ===================================
   Responsive Design
   =================================== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
        margin-top: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .booking-form-card {
        padding: 30px 20px;
    }
}

/* Mobile Landscape (577px - 767px) */
@media (max-width: 767px) {
    /* Disable heavy animations on mobile */
    *,
    *::before,
    *::after {
        animation-duration: 0.3s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Reduce hover effects on mobile */
    .service-card:hover,
    .portfolio-card:hover,
    .value-card:hover,
    .info-card:hover {
        transform: none !important;
    }
    
    /* Typography */
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-top: 35px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    /* Navbar */
    .brand-text {
        font-size: 24px;
    }
    
    .navbar-nav {
        padding: 20px 0;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 20px;
        border-bottom: 1px solid rgba(102, 126, 234, 0.2);
    }
    
    .navbar .ms-lg-3 {
        margin-top: 15px;
        margin-left: 0 !important;
    }
    
    .navbar .btn {
        width: 100%;
    }
    
    /* Hero Section */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
    }
    
    /* Portfolio */
    .portfolio-filter {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-btn {
        width: 100%;
        padding: 12px 20px;
    }
    
    .portfolio-card {
        margin-bottom: 20px;
    }
    
    /* Service Cards */
    .service-card {
        margin-bottom: 20px;
    }
    
    .service-card-large {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon-large {
        margin: 0 auto 20px;
    }
    
    /* Stats Section */
    .stats-section .col-md-3 {
        margin-bottom: 20px;
    }
    
    .stat-item h2 {
        font-size: 36px;
    }
    
    /* Experience Badge */
    .experience-badge {
        right: 20px;
        bottom: -20px;
        width: 120px;
        height: 120px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    
    .cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }
    
    /* Values Cards */
    .value-card {
        margin-bottom: 20px;
    }
    
    /* Contact Page */
    .contact-info-card {
        margin-bottom: 20px;
    }
    
    .quick-contact-card {
        margin-bottom: 15px;
    }
    
    /* Booking Section */
    .booking-form-card {
        padding: 25px 15px;
    }
    
    .booking-form-card h3 {
        font-size: 22px;
    }
    
    .booking-form .section-title {
        font-size: 16px;
    }
    
    .info-card {
        margin-bottom: 20px;
    }
    
    /* Footer */
    .footer {
        text-align: center;
    }
    
    .footer .col-lg-3,
    .footer .col-md-6 {
        margin-bottom: 30px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Portrait (max 576px) */
@media (max-width: 576px) {
    /* Performance optimizations */
    * {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    /* Disable all transform animations */
    .service-card:hover,
    .portfolio-card:hover,
    .value-card:hover,
    .info-card:hover,
    .btn-gradient:hover,
    .btn-outline-gradient:hover {
        transform: none !important;
        box-shadow: none !important;
    }
    
    /* Typography */
    .hero-title {
        font-size: 28px;
        margin-top: 30px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    /* Navbar */
    .brand-text {
        font-size: 20px;
        letter-spacing: 1px;
    }
    
    .brand-sub {
        font-size: 8px;
        letter-spacing: 2px;
    }
    
    /* Hero Section */
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-description p {
        font-size: 14px;
    }
    
    .btn-gradient,
    .btn-outline-gradient {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Section Padding */
    .about-section,
    .services-section,
    .portfolio-section,
    .contact-section,
    .booking-section {
        padding: 60px 0;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    /* Service Cards */
    .service-card h4 {
        font-size: 18px;
    }
    
    .service-card p {
        font-size: 14px;
    }
    
    /* Portfolio Cards */
    .portfolio-card-title {
        font-size: 16px;
    }
    
    .portfolio-card-category {
        font-size: 12px;
    }
    
    /* Stats */
    .stat-item h2 {
        font-size: 32px;
    }
    
    .stat-item p {
        font-size: 14px;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    /* Contact Form */
    .contact-form .form-control,
    .contact-form textarea {
        font-size: 14px;
    }
    
    /* Booking Form */
    .booking-form-card {
        padding: 20px 12px;
        border-radius: 15px;
    }
    
    .booking-form-card .card-icon i {
        font-size: 40px;
    }
    
    .booking-form-card h3 {
        font-size: 20px;
    }
    
    .booking-form .form-control,
    .booking-form .form-select {
        font-size: 14px;
        padding: 10px 12px;
    }
    
    .booking-form .form-label {
        font-size: 13px;
    }
    
    .booking-form .section-title {
        font-size: 15px;
    }
    
    .info-card {
        padding: 20px 15px;
    }
    
    .info-card .info-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .info-card h5 {
        font-size: 16px;
    }
    
    .info-card p {
        font-size: 13px;
    }
    
    /* Footer */
    .footer-title {
        font-size: 18px;
    }
    
    .footer-links li a {
        font-size: 14px;
    }
    
    .copyright {
        font-size: 13px;
        flex-direction: column;
        gap: 10px;
    }
}

/* Extra Small (max 400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 24px;
        margin-top: 25px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .page-title {
        font-size: 24px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .stat-item h2 {
        font-size: 28px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .booking-form-card {
        padding: 15px 10px;
    }
    
    .booking-form .section-title {
        font-size: 14px;
    }
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ===================================
   Booking Section
   =================================== */
.booking-section {
    padding: 100px 0;
    min-height: 100vh;
    position: relative;
}

.booking-form-card {
    background: rgba(18, 22, 45, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.booking-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
}

.booking-form-card .card-icon {
    text-align: center;
    margin-bottom: 30px;
}

.booking-form-card .card-icon i {
    font-size: 60px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-form-card h3 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.booking-form .form-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.booking-form .form-section:last-of-type {
    border-bottom: none;
}

.booking-form .section-title {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-form .section-title i {
    color: var(--neon-blue);
}

.booking-form .form-label {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.booking-form .form-control,
.booking-form .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.3);
    color: var(--text-color);
    padding: 12px 15px;
    border-radius: 10px;
    transition: all 0.3s;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--neon-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 245, 255, 0.25);
    color: var(--text-color);
}

.booking-form .form-control::placeholder {
    color: rgba(168, 178, 209, 0.5);
}

.booking-form .form-select option {
    background: var(--dark-bg-alt);
    color: var(--text-color);
}

.booking-info {
    margin-top: 50px;
}

.info-card {
    background: rgba(18, 22, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-blue);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.info-card .info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.info-card h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 0;
}