:root {
    --primary: #F7D060;
    --primary-dark: #E6B325;
    --dark: #000000;
    --darker: #0A0A0A;
    --light: #ffffff;
    --gray: #94a3b8;
    --accent: #F7D060;
    --gradient-start: #F5E6CA;
    --gradient-mid: #F7D060;
    --gradient-end: #D4AF37;
    --hover: #E6B325;
    --border-color: rgba(247, 208, 96, 0.10);
    --bg-overlay: rgba(10, 10, 10, 0.9);
}

/* Premium Loader */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
    .premium-loader {
        display: none;
    }
}

.premium-loader::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Reveal Animation */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-item {
        transition: none;
    }
}


/* Enhanced Hover Effects */
.service-card, .portfolio-item, .client-logo {
    position: relative;
    overflow: hidden;
}

.client-logo {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
}

.client-logo img {
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

.service-card::before, .portfolio-item::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    left: var(--mouse-x, 0);
    top: var(--mouse-y, 0);
    transform: translate(-50%, -50%);
}

.service-card:hover::before, .portfolio-item:hover::before {
    opacity: 0.15;
}

/* Splash Screen */
#splashScreen {
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.splash-content {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.splash-content h1 {
    margin: 0 auto;
    display: inline-block;
}

.loading-bar {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: rgba(255, 255, 255, 0.4);
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% { opacity: 0.9; }
    100% { opacity: 0.9; }
    50% { opacity: 1; }
}

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

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* Hero Section */
.min-h-screen {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Base Styles */
body {
    background-color: var(--darker);
    color: var(--light);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Prevent horizontal scroll on mobile */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Scrolling Banner */
.scrolling-banner {
    white-space: nowrap;
    overflow: hidden;
}

.banner-content {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Custom Utilities */

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

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
    border: 2px solid var(--dark);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
    border: 2px solid var(--dark);
}

/* Custom Card Styles */
.service-card {
    transition: all 0.3s ease;
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* Video Section Styles */
.video-section {
    background: #0A0F1C;
    border-radius: 24px;
    overflow: hidden;
}

.video-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 15, 28, 0) 0%, rgba(10, 15, 28, 0.9) 100%);
}

.authenticity-text {
    font-family: 'Inter', sans-serif;
    color: #FFD700;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
    50% { text-shadow: 0 0 25px rgba(255, 215, 0, 0.9); }
    100% { text-shadow: 0 0 15px rgba(255, 215, 0, 0.7); }
}

/* Custom Video Player */
.custom-player-controls {
    z-index: 2;
}

.custom-player-controls button {
    cursor: pointer;
    outline: none;
}

.custom-player-controls button:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

#progressBar {
    cursor: pointer;
}

/* Calendar Embed Styles */
#my-cal-inline {
    min-height: 600px;
    border-radius: 1rem;
    background: transparent !important;
    max-width: 100%;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

/* Override Cal.com iframe background */
#my-cal-inline iframe {
    background: transparent !important;
    border-radius: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Calendar Container Styles */
.calendar-container {
    background: linear-gradient(145deg, rgba(0,0,0,0.8) 0%, rgba(10,10,10,0.9) 100%);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Custom Form Styles */
/* Enhanced Form Styles */
.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
    transform: translateY(-1px);
}

.form-group label {
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: var(--primary);
}

/* About Section Image Effects */
.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--primary), transparent);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.about-image-container:hover::before {
    opacity: 0.7;
}

.about-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.05);
}

/* Mobile Menu Styles */
/* Mobile Menu Styles */
#mobileMenu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    background-color: #000000;
}

#mobileMenu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

#mobileMenuBtn {
    z-index: 60;
    position: relative;
}

/* Prevent content scrolling when menu is open */
body.overflow-hidden {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (min-width: 768px) {
    body.overflow-hidden {
        position: static;
        overflow: auto;
    }
}

/* Portfolio Item Effects */
.portfolio-item {
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Typography */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Enhanced Touch Interactions */
@media (hover: none) {
    .service-card:hover {
        transform: none;
    }
    
    .service-card::before {
        display: none;
    }
}

/* Enhanced Gradient Text Animation */
.animate-gradient {
    background-size: 200% 200%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
