/* ========================================
   GALLERY SECTION (continued)
   ======================================== */

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 245, 255, 0.4),
        rgba(255, 0, 255, 0.4)
    );
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.gallery-item::after {
    content: "⚡";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 4rem;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--neon-cyan);
    box-shadow:
        0 25px 80px rgba(0, 245, 255, 0.3),
        0 0 60px rgba(0, 245, 255, 0.1);
    z-index: 10;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products {
    padding: 150px 60px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255, 0, 255, 0.02),
        transparent
    );
    position: relative;
}

.products::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(
        ellipse at 100% 50%,
        rgba(255, 0, 255, 0.05) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    padding: 35px;
    text-align: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(
        135deg,
        rgba(0, 245, 255, 0.08),
        rgba(255, 0, 255, 0.08)
    );
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 25px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(0, 245, 255, 0.1),
        transparent,
        rgba(255, 0, 255, 0.1),
        transparent
    );
    animation: productImageRotate 10s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

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

.product-card:hover .product-image {
    transform: scale(1.05) rotateY(5deg) rotateX(5deg);
    box-shadow:
        0 25px 60px rgba(0, 245, 255, 0.2),
        0 0 40px rgba(0, 245, 255, 0.1);
}

.product-card h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 1px;
}

.product-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-price {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.5));
}

.product-btn {
    padding: 14px 35px;
    font-size: 0.85rem;
}

/* ========================================
   BOOKING SECTION
   ======================================== */

.booking {
    padding: 150px 60px;
    position: relative;
}

.booking::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--neon-cyan),
        var(--neon-pink),
        transparent
    );
    opacity: 0.3;
    transform: translateY(-50%);
}

.booking-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.booking-info h2 {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff, var(--neon-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.booking-info > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 45px;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03),
        rgba(255, 255, 255, 0.01)
    );
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    border-color: var(--neon-cyan);
    box-shadow:
        0 15px 40px rgba(0, 245, 255, 0.15),
        inset 0 0 30px rgba(0, 245, 255, 0.03);
    transform: translateX(15px);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-text h4 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: #fff;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

/* Booking Form */
.booking-form {
    padding: 50px;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: #fff;
    font-family: "Rajdhani", sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow:
        0 0 25px rgba(0, 245, 255, 0.2),
        inset 0 0 20px rgba(0, 245, 255, 0.03);
    background: rgba(0, 245, 255, 0.02);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300f5ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
}

.form-group select option {
    background: var(--dark-bg);
    color: #fff;
    padding: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 22px;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact {
    padding: 150px 60px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(0, 245, 255, 0.02),
        transparent
    );
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info {
    padding: 50px;
}

.contact-info h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    margin-bottom: 35px;
    background: linear-gradient(135deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    background: rgba(0, 245, 255, 0.03);
    border-color: var(--glass-border);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.4);
}

.contact-text h4 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 1px;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-text a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-text a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.contact-text a:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

.contact-text a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    width: 55px;
    height: 55px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02)
    );
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
    border-color: var(--neon-cyan);
    transform: translateY(-8px) scale(1.1);
    box-shadow:
        0 15px 40px rgba(0, 245, 255, 0.4),
        0 0 30px rgba(0, 245, 255, 0.2);
}

/* Map */
.map-container {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    height: 100%;
    min-height: 500px;
    position: relative;
    transition: all 0.3s ease;
}

.map-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 245, 255, 0.1),
        transparent,
        rgba(255, 0, 255, 0.1)
    );
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.map-container:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(92%) contrast(85%) brightness(1.1);
    transition: filter 0.5s ease;
}

.map-container:hover iframe {
    filter: grayscale(30%) invert(92%) contrast(85%) brightness(1.1);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    padding: 80px 60px 40px;
    background: linear-gradient(180deg, var(--dark-bg), var(--darker-bg));
    border-top: 1px solid var(--glass-border);
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--neon-cyan),
        var(--neon-pink),
        transparent
    );
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 25px;
    display: inline-block;
    font-size: 1.4rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 300px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--neon-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    color: var(--neon-cyan);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 25px;
}

.footer-links a:hover::before {
    left: 0;
    opacity: 1;
}

.footer-services li {
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    padding-left: 20px;
}

.footer-services li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-size: 0.8rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--neon-pink);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-powered {
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .booking-container {
        gap: 50px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 400px;
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 15px 30px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 30px 80px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .gallery-item {
        height: 250px;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }

    .services,
    .gallery,
    .products,
    .booking,
    .contact {
        padding: 100px 30px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .btn {
        padding: 16px 40px;
        width: 100%;
        max-width: 280px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(4) {
        grid-column: span 1;
    }

    .gallery-item {
        height: 280px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links a::before {
        display: none;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-services li {
        padding-left: 0;
    }

    .footer-services li::before {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-3d {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 12px 20px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 20px;
    }

    .services,
    .gallery,
    .products,
    .booking,
    .contact {
        padding: 80px 20px;
    }

    .glass-card {
        padding: 30px 20px;
    }

    .service-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .booking-form {
        padding: 30px 20px;
    }

    .contact-info {
        padding: 30px 20px;
    }

    footer {
        padding: 60px 20px 30px;
    }
}

/* ========================================
   ANIMATIONS & EFFECTS
   ======================================== */

/* Reveal animation on scroll */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger animation for grid items */
.services-grid .glass-card,
.products-grid .glass-card,
.gallery-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.services-grid .glass-card:nth-child(1) {
    animation-delay: 0.1s;
}
.services-grid .glass-card:nth-child(2) {
    animation-delay: 0.2s;
}
.services-grid .glass-card:nth-child(3) {
    animation-delay: 0.3s;
}
.services-grid .glass-card:nth-child(4) {
    animation-delay: 0.4s;
}
.services-grid .glass-card:nth-child(5) {
    animation-delay: 0.5s;
}
.services-grid .glass-card:nth-child(6) {
    animation-delay: 0.6s;
}

.products-grid .glass-card:nth-child(1) {
    animation-delay: 0.1s;
}
.products-grid .glass-card:nth-child(2) {
    animation-delay: 0.15s;
}
.products-grid .glass-card:nth-child(3) {
    animation-delay: 0.2s;
}
.products-grid .glass-card:nth-child(4) {
    animation-delay: 0.25s;
}
.products-grid .glass-card:nth-child(5) {
    animation-delay: 0.3s;
}
.products-grid .glass-card:nth-child(6) {
    animation-delay: 0.35s;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}
.gallery-item:nth-child(2) {
    animation-delay: 0.15s;
}
.gallery-item:nth-child(3) {
    animation-delay: 0.2s;
}
.gallery-item:nth-child(4) {
    animation-delay: 0.25s;
}
.gallery-item:nth-child(5) {
    animation-delay: 0.3s;
}
.gallery-item:nth-child(6) {
    animation-delay: 0.35s;
}

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

/* Glow effect on focus */
input:focus,
select:focus,
textarea:focus {
    animation: inputGlow 2s ease-in-out infinite;
}

@keyframes inputGlow {
    0%,
    100% {
        box-shadow:
            0 0 20px rgba(0, 245, 255, 0.2),
            inset 0 0 15px rgba(0, 245, 255, 0.02);
    }
    50% {
        box-shadow:
            0 0 30px rgba(0, 245, 255, 0.4),
            inset 0 0 20px rgba(0, 245, 255, 0.05);
    }
}

/* Neon text flicker effect */
@keyframes neonFlicker {
    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow:
            0 0 4px #fff,
            0 0 11px #fff,
            0 0 19px #fff,
            0 0 40px var(--neon-cyan),
            0 0 80px var(--neon-cyan),
            0 0 90px var(--neon-cyan);
    }
    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

/* Glitch effect */
@keyframes glitch {
    0% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
    100% {
        transform: translate(0);
    }
}

/* Pulse ring effect */
@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Loading spinner */
.loading {
    display: inline-block;
    position: relative;
}

.loading::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    margin-left: 10px;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

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

/* Error state for form inputs */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

/* Focus animations for form groups */
.form-group.focused label {
    color: var(--neon-pink);
    transform: translateY(-2px);
}

/* Reveal animation class */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Custom selection */
::selection {
    background: rgba(0, 245, 255, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(0, 245, 255, 0.3);
    color: #fff;
}

/* Image loading placeholder */
.gallery-item img {
    background: linear-gradient(
        135deg,
        rgba(0, 245, 255, 0.1),
        rgba(255, 0, 255, 0.1)
    );
}

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

    .particle {
        display: none;
    }

    .rotating-ring {
        animation: none;
    }
}

/* Print styles */
@media print {
    .bg-animation,
    .grid-overlay,
    .particles,
    .hero-3d,
    nav,
    .scroll-indicator {
        display: none !important;
    }

    body {
        background: #fff;
        color: #000;
    }

    .glass-card {
        background: #f5f5f5;
        border: 1px solid #ddd;
    }
}
