/* Custom CSS for Mega Art Landing Page */

/* Font Faces - Add your custom Arabic fonts here */
@font-face {
    font-family: 'GE SS Two';
    src: url('../fonts/ArbFONTS-GE_SS_Two_Light.otf') format('opentype');
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: 'GE SS Two';
    src: url('../fonts/ArbFONTS-GE_SS_Two_Medium.otf') format('opentype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'GE SS Two';
    src: url('../fonts/ArbFONTS-GE_SS_Two_Bold.otf') format('opentype');
    font-weight: 700;
    font-display: swap;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'GE SS Two', 'Roboto', Arial, sans-serif;
    direction: rtl;
    text-align: right;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(1deg);
        opacity: 0.3;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Advanced Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(253, 192, 94, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(253, 192, 94, 0.6);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -8px, 0);
    }
    70% {
        transform: translate3d(0, -4px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

@keyframes wiggle {
    0%, 7% {
        transform: rotateZ(0);
    }
    15% {
        transform: rotateZ(-15deg);
    }
    20% {
        transform: rotateZ(10deg);
    }
    25% {
        transform: rotateZ(-10deg);
    }
    30% {
        transform: rotateZ(6deg);
    }
    35% {
        transform: rotateZ(-4deg);
    }
    40%, 100% {
        transform: rotateZ(0);
    }
}

/* Enhanced Animation Classes */
.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.animate-pulse-enhanced {
    animation: pulse 2s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

.animate-bounce-enhanced {
    animation: bounce 1s ease-in-out infinite;
}

.animate-wiggle {
    animation: wiggle 1s ease-in-out;
}

/* Staggered Animation Delays */
.animate-delay-100 {
    animation-delay: 0.1s;
}

.animate-delay-200 {
    animation-delay: 0.2s;
}

.animate-delay-300 {
    animation-delay: 0.3s;
}

.animate-delay-400 {
    animation-delay: 0.4s;
}

.animate-delay-500 {
    animation-delay: 0.5s;
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hover-glow {
    transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(253, 192, 94, 0.4);
}

.hover-scale {
    transition: transform 0.3s ease;
}

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

.hover-rotate {
    transition: transform 0.3s ease;
}

.hover-rotate:hover {
    transform: rotate(5deg);
}

/* Gradient Text Animation */
.gradient-text {
    background: linear-gradient(45deg, #fdc05e, #f5b847, #edb030, #e5a819);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

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

/* Loading States */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Scroll Reveal Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* Parallax Effect */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Glass Morphism Effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Intersection Observer Animation Classes */
.fade-in-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Utility Classes */
.bg-gradient-gold {
    background: linear-gradient(135deg, #fdc05e, #f9d480);
}

.text-gradient-gold {
    background: linear-gradient(135deg, #fdc05e, #f9d480);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.backdrop-blur-custom {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Video Styling */
video {
    object-fit: cover;
}

/* Form Styling */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #fdc05e;
    box-shadow: 0 0 0 3px rgba(253, 192, 94, 0.1);
}

/* Button Hover Effects */
.btn-hover-scale {
    transition: transform 0.2s ease-in-out;
}

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

.btn-hover-scale:active {
    transform: scale(0.98);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #fdc05e;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

/* Responsive Design Helpers */
@media (max-width: 768px) {
    .mobile-center {
        text-align: center;
    }
    
    .mobile-full-width {
        width: 100%;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
*:focus-visible {
    outline: 2px solid #fdc05e;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .glass-effect {
        background: rgba(0, 0, 0, 0.8);
        border: 2px solid #fdc05e;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

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

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #fdc05e;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f9d480;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .text-left {
    text-align: right;
}

[dir="rtl"] .text-right {
    text-align: left;
}

/* Form Validation Styles */
.form-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.form-success {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Advanced Modern Styling */

/* 3D Transform Effects */
.transform-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* Advanced Particle System */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Enhanced Floating Animations */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) rotate(2deg);
        opacity: 1;
    }
}

@keyframes floatDown {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translateY(20px) rotate(-1deg);
        opacity: 0.8;
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-25px) rotate(1deg);
        opacity: 0.9;
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateX(25px) rotate(-1deg);
        opacity: 0.9;
    }
}

.animate-float-up {
    animation: floatUp 8s ease-in-out infinite;
}

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

.animate-float-left {
    animation: floatLeft 7s ease-in-out infinite;
}

.animate-float-right {
    animation: floatRight 9s ease-in-out infinite;
}

/* Advanced Gradient Mesh Backgrounds */
.gradient-mesh-1 {
    background: radial-gradient(circle at 20% 80%, rgba(253, 192, 94, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(253, 192, 94, 0.2) 0%, transparent 50%);
}

.gradient-mesh-2 {
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(253, 192, 94, 0.2) 0%, transparent 50%);
}

/* Enhanced Glass Morphism */
.glass-advanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.glass-advanced-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Advanced Hover Effects */
.hover-lift-advanced {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift-advanced:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(253, 192, 94, 0.2);
}

.hover-glow-advanced {
    transition: all 0.3s ease;
}

.hover-glow-advanced:hover {
    box-shadow: 
        0 0 20px rgba(253, 192, 94, 0.4),
        0 0 40px rgba(253, 192, 94, 0.2),
        0 0 60px rgba(253, 192, 94, 0.1);
    transform: translateY(-3px);
}

/* Advanced Button Animations */
.btn-ripple {
    position: relative;
    overflow: hidden;
}

.btn-ripple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-ripple:hover::before {
    width: 300px;
    height: 300px;
}

/* Advanced Text Animations */
.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    animation: textReveal 0.8s ease forwards;
}

@keyframes textReveal {
    to {
        transform: translateY(0);
    }
}

/* Advanced Card Hover Effects */
.card-hover-3d {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
}

.card-hover-3d:hover {
    transform: rotateX(-5deg) rotateY(5deg) translateZ(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(253, 192, 94, 0.2);
}

/* Advanced Loading Animations */
.loading-dots-advanced {
    display: inline-block;
}

.loading-dots-advanced::after {
    content: '';
    animation: loadingDotsAdvanced 2s infinite;
}

@keyframes loadingDotsAdvanced {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Advanced Scroll Animations */
.scroll-fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Advanced Gradient Text */
.gradient-text-advanced {
    background: linear-gradient(-45deg, #fdc05e, #f5b847, #edb030, #e5a819, #dda002, #fdc05e);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShiftAdvanced 4s ease infinite;
}

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

/* Advanced Shadow Effects */
.shadow-advanced {
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(253, 192, 94, 0.1);
}

.shadow-advanced-lg {
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(253, 192, 94, 0.2);
}

.shadow-advanced-xl {
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(253, 192, 94, 0.3);
}

/* Advanced Border Animations */
.border-animated {
    position: relative;
    background: linear-gradient(45deg, transparent, transparent);
    background-clip: padding-box;
    border: 2px solid transparent;
}

.border-animated::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, #fdc05e, #f5b847, #edb030, #e5a819);
    animation: borderRotate 3s linear infinite;
}

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

/* Advanced Focus States */
.focus-advanced:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(253, 192, 94, 0.3),
        0 0 0 6px rgba(253, 192, 94, 0.1);
    transform: scale(1.02);
}

/* Advanced Mobile Optimizations */
@media (max-width: 768px) {
    .particle {
        display: none; /* Hide particles on mobile for performance */
    }
    
    .card-hover-3d:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .hover-lift-advanced:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .glass-advanced {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .glass-advanced-dark {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
}

/* Performance Optimizations */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

/* Advanced Accessibility */
@media (prefers-reduced-motion: reduce) {
    .particle,
    .animate-float-up,
    .animate-float-down,
    .animate-float-left,
    .animate-float-right,
    .gradient-text-advanced,
    .border-animated::before {
        animation: none !important;
    }
    
    .hover-lift-advanced:hover,
    .card-hover-3d:hover {
        transform: none !important;
    }
}

/* Typewriter Effect */
@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #fdc05e; }
}

.typewriter-text {
    overflow: hidden;
    border-right: 3px solid #fdc05e;
    white-space: nowrap;
    animation: typewriter 3s steps(40, end), blink 0.75s step-end infinite;
    animation-fill-mode: both;
}

/* Drop from Top Animation */
@keyframes dropFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.drop-from-top {
    animation: dropFromTop 1s ease-out forwards;
    opacity: 0;
}

.drop-from-top-delayed {
    animation: dropFromTop 1s ease-out 1.5s forwards;
    opacity: 0;
}

/* Hero Video Responsive Styles */
.hero-video {
    object-fit: cover;
    object-position: center center;
}

/* Mobile Video Optimization */
@media (max-width: 768px) {
    .hero-video {
        object-fit: cover;
        object-position: center 30%;
        min-height: 100vh;
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero-video {
        object-position: center 25%;
        min-height: 100vh;
    }
}

/* Landscape Mobile Video */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-video {
        object-fit: cover;
        object-position: center center;
        min-height: 100vh;
        width: 100%;
        height: 100vh;
    }
}

/* Bootstrap Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Bootstrap Animation Enhancements */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate__pulse {
    animation-name: pulse;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhanced Service Card Animations */
.service-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Mobile Optimizations */
@media (max-width: 768px) {
    .service-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .animate__animated {
        animation-duration: 0.8s;
    }
    
    /* Mobile Hero Section Improvements */
    .hero-video {
        object-position: center 25%;
        min-height: 100vh;
    }
    
    /* Better mobile typography */
    h1 {
        line-height: 1.1;
        word-spacing: -2px;
    }
    
    /* Mobile-optimized spacing */
    .space-y-3 > * + * {
        margin-top: 0.75rem;
    }
    
    /* Better mobile touch targets */
    button, .cursor-pointer {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Mobile-optimized glass effects */
    .backdrop-blur-md {
        backdrop-filter: blur(8px);
    }
    
    /* Better mobile shadows */
    .shadow-2xl {
        box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .hero-video {
        object-position: center 20%;
    }
    
    /* Even more compact on very small screens */
    .text-3xl {
        font-size: 1.75rem;
        line-height: 1.1;
    }
    
    /* Reduce padding on very small screens */
    .px-3 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    /* Compact logo on very small screens */
    .max-w-xs {
        max-width: 16rem;
    }
}

/* Wonderful Benefits Section Styling */
.benefits-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.benefits-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 192, 94, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: inherit;
}

.benefits-card:hover::before {
    opacity: 1;
}

.benefits-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(253, 192, 94, 0.2);
}

.benefits-icon {
    background: linear-gradient(135deg, #fdc05e 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(253, 192, 94, 0.3);
}

.benefits-card:hover .benefits-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(253, 192, 94, 0.4);
}

.benefits-title {
    background: linear-gradient(135deg, #fdc05e 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: all 0.3s ease;
}

.benefits-card:hover .benefits-title {
    transform: translateY(-2px);
}

.benefits-description {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefits-card:hover .benefits-description {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

/* Floating Animation for Benefits */
@keyframes floatBenefits {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefits-card:nth-child(1) {
    animation: floatBenefits 6s ease-in-out infinite;
}

.benefits-card:nth-child(2) {
    animation: floatBenefits 6s ease-in-out infinite 2s;
}

.benefits-card:nth-child(3) {
    animation: floatBenefits 6s ease-in-out infinite 4s;
}

/* Domain Link Styling */
.domain-link {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(253, 192, 94, 0.15) 0%, rgba(255, 107, 53, 0.15) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(253, 192, 94, 0.25);
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.domain-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 192, 94, 0.2);
    border-color: rgba(253, 192, 94, 0.4);
}

.domain-link a {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.domain-link:hover a {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(253, 192, 94, 0.5);
}

.card-3d {
    transform: rotateX(0deg) rotateY(0deg);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.card-3d:hover {
    transform: rotateX(-5deg) rotateY(5deg) translateZ(20px);
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.magnetic-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.magnetic-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Advanced Gradient Backgrounds */
.gradient-bg-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gradient-bg-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

/* Animated Gradient Text */
.animated-gradient-text {
    background: linear-gradient(-45deg, #fdc05e, #f5b847, #edb030, #e5a819, #dda002);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

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

/* Floating Animation Variants */
@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-30px) rotate(2deg);
        opacity: 1;
    }
}

@keyframes floatDown {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(20px) rotate(-1deg);
        opacity: 0.8;
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-25px) rotate(1deg);
        opacity: 0.9;
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateX(25px) rotate(-1deg);
        opacity: 0.9;
    }
}

.animate-float-up {
    animation: floatUp 8s ease-in-out infinite;
}

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

.animate-float-left {
    animation: floatLeft 7s ease-in-out infinite;
}

.animate-float-right {
    animation: floatRight 9s ease-in-out infinite;
}

/* Advanced Hover Effects */
.hover-tilt {
    transition: transform 0.3s ease;
}

.hover-tilt:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg);
}

.hover-glow-intense {
    transition: all 0.3s ease;
}

.hover-glow-intense:hover {
    box-shadow: 
        0 0 20px rgba(253, 192, 94, 0.4),
        0 0 40px rgba(253, 192, 94, 0.2),
        0 0 60px rgba(253, 192, 94, 0.1);
    transform: translateY(-5px);
}

.hover-magnetic {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.320, 1);
}

.hover-magnetic:hover {
    transform: scale(1.1) translateZ(10px);
}

/* Particle System Styling */
.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat 6s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Advanced Modal Styling */
.modal-backdrop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    background: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Enhanced Button Styles */
.btn-premium {
    position: relative;
    background: linear-gradient(135deg, #fdc05e, #f5b847);
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    color: #231f20;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(253, 192, 94, 0.3);
}

/* Advanced Card Styling */
.card-premium {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Neon Glow Effects */
.neon-glow {
    text-shadow: 
        0 0 5px rgba(253, 192, 94, 0.5),
        0 0 10px rgba(253, 192, 94, 0.3),
        0 0 15px rgba(253, 192, 94, 0.2);
    animation: neonPulse 2s ease-in-out infinite alternate;
}

@keyframes neonPulse {
    from {
        text-shadow: 
            0 0 5px rgba(253, 192, 94, 0.5),
            0 0 10px rgba(253, 192, 94, 0.3),
            0 0 15px rgba(253, 192, 94, 0.2);
    }
    to {
        text-shadow: 
            0 0 10px rgba(253, 192, 94, 0.8),
            0 0 20px rgba(253, 192, 94, 0.5),
            0 0 30px rgba(253, 192, 94, 0.3);
    }
}

/* Advanced Loading Animations */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Morphing Shapes */
.morphing-shape {
    border-radius: 50%;
    animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% { border-radius: 50%; }
    25% { border-radius: 20% 80% 20% 80%; }
    50% { border-radius: 80% 20% 80% 20%; }
    75% { border-radius: 40% 60% 40% 60%; }
}

/* Advanced Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #1a1a1a, #2a2a2a);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #fdc05e, #f5b847);
    border-radius: 6px;
    border: 2px solid #1a1a1a;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #f5b847, #edb030);
}

/* Dark Mode Enhancements */
.dark {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent: #fdc05e;
}

.dark .glass {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark .card-premium {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Performance Optimizations */
.gpu-accelerated {
    transform: translateZ(0);
    will-change: transform;
}

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

/* Advanced Typography */
.text-shadow-soft {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-strong {
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Interactive Elements */
.interactive-element {
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

.interactive-element:active {
    transform: scale(0.98);
}

/* Advanced Form Styling */
.form-floating-label {
    position: relative;
}

.form-floating-label input {
    padding-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.form-floating-label label {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}

.form-floating-label input:focus ~ label,
.form-floating-label input:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Advanced Grid Layouts */
.grid-masonry {
    column-count: 3;
    column-gap: 1rem;
}

.grid-masonry .grid-item {
    break-inside: avoid;
    margin-bottom: 1rem;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .grid-masonry {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .grid-masonry {
        column-count: 1;
    }
    
    .card-3d:hover {
        transform: rotateX(-2deg) rotateY(2deg) translateZ(10px);
    }
}

/* Print Optimizations */
@media print {
    .no-print,
    .floating-action,
    .modal-overlay {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Hero center CTA text positioning */
.hero-center-cta {
    position: relative;
    top: 100px;
    right: 0;
    background: transparent;
    border: 0;
    padding: 0;
}

.hero-center-text {
    display: inline-block;
    color: #ffffff;
    font-weight: 900;
    font-size: 1.6rem;

}

@media (max-width: 639px) {
    .hero-center-text {
        font-weight: 900;
        font-size: 1.6rem;
    }
}

@media (min-width: 640px) {
    .hero-center-text {
        font-size: 1.7rem;
    }
}
