/* Custom CSS for EShopper */

/* ===========================
   Animated Airplane Cursor
   =========================== */
.cursor-airplane {
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='%23DAA520' d='M482.3 192c34.2 0 93.7 29 93.7 64c0 36-59.5 64-93.7 64l-116.6 0L265.2 495.9c-5.7 10-16.3 16.1-27.8 16.1l-56.2 0c-10.6 0-18.3-10.2-15.4-20.4l49-171.6L112 320 68.8 377.6c-3 4-7.8 6.4-12.8 6.4l-42 0c-7.8 0-14-6.3-14-14c0-1.3 .2-2.6 .5-3.9L32 256 .5 145.9c-.4-1.3-.5-2.6-.5-3.9c0-7.8 6.3-14 14-14l42 0c5 0 9.8 2.4 12.8 6.4L112 192l102.9 0-49-171.6C162.9 10.2 170.6 0 181.2 0l56.2 0c11.5 0 22.1 6.1 27.8 16.1L365.7 192l116.6 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
    will-change: transform, top, left;
}

/* Hide default cursor on body when custom cursor is active (optional, maybe just on links) */
/* body { cursor: none; } */
/* User didn't explicitly ask to hide default cursor, but it looks better. However, might be annoying if bugged. I'll verify first. For now, keep default cursor or maybe hide it. */

/* Dark Mode Styles Removed */

/* Larger Social Icons */
/* Larger Social Icons */
.social-icon-large {
    font-size: 22px;
}

/* ===========================
   Premium Global Styles
   =========================== */

/* Custom Selection */
::selection {
    background: #DAA520;
    /* Gold */
    color: #003366;
    /* Navy */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    /* Slimit */
    background: #003366;
    /* Background for rail */
}

::-webkit-scrollbar-thumb {
    background: #DAA520;
    /* Gold Scroll handle */
    border-radius: 10px;
    background-image: linear-gradient(180deg, #DAA520 0%, #B8860B 100%);
}

::-webkit-scrollbar-thumb:hover {
    background: #FFF;
    /* Hover effect */
}

/* Typography Polish */
h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    letter-spacing: -0.02em;
    /* Tighter, more modern */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Soft depth */
}

body {
    letter-spacing: 0.01em;
    /* Better readability */
}

/* ===========================
   Glassmorphism 2.0 (Premium)
   =========================== */
.glass-card {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 51, 102, 0.1);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy spring */
}

.hero-overlay-glass {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    border-radius: 20px;
}

/* ===========================
   Interactive Elements
   =========================== */

/* Hover Lift & Glow */
.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(218, 165, 32, 0.15), 0 10px 10px rgba(0, 51, 102, 0.1);
    /* Gold & Navy Glow */
    border-color: #DAA520 !important;
    z-index: 10;
}

.icon-pulse-hover:hover {
    animation: simplePulse 1s infinite;
    color: #DAA520 !important;
    text-shadow: 0 0 15px rgba(218, 165, 32, 0.6);
}

@keyframes simplePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Magnetic Button Effect (Simulated via CSS) */
.magnetic-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    background-image: linear-gradient(135deg, #003366 0%, #004080 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.magnetic-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
    /* Gold Glow */
    background-image: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #FFF !important;
}

.magnetic-btn:active {
    transform: scale(0.98);
}

/* Gradient Text Effect */
.text-gradient-gold {
    background: linear-gradient(to right, #DAA520, #F0E68C, #DAA520);
    -webkit-background-clip: text;
    /* Vendor prefix */
    background-clip: text;
    /* Standard property */
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* ===========================
   Page Transitions & Animations
   =========================== */
body {
    animation: fadeInPage 0.8s ease-out;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        filter: blur(5px);
    }

    to {
        opacity: 1;
        filter: blur(0);
    }
}

/* Staggered Reveal */
.reveal-text,
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.reveal-delay-1 {
    animation-delay: 0.1s;
}

.reveal-delay-2 {
    animation-delay: 0.2s;
}

.reveal-delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Futuristic Contact Form (Light Theme)
   =========================== */
.contact-container-futuristic {
    background: #ffffff !important;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Animated Background Elements */
.contact-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.2;
    animation: floatOrb 10s infinite ease-in-out;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #e6f7ff;
    /* VERY light blue */
    top: -50px;
    left: -50px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: #fff9e6;
    /* VERY light gold/yellow */
    bottom: -100px;
    right: -100px;
    animation-delay: 2s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(20px) scale(1.1);
    }
}

/* Glass Form Container */
.glass-form-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    /* Soft shadow */
    border-radius: 20px;
    padding: 40px;
    position: relative;
    z-index: 10;
}

/* Neon Input Fields (Light Version) */
.futuristic-input {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    color: #333 !important;
    border-radius: 10px;
    padding: 15px;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

.futuristic-input:focus {
    background: #fff !important;
    border-color: #DAA520 !important;
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.15);
    outline: none;
}

.futuristic-input::placeholder {
    color: #aaa;
}

/* Glowing Button */
.btn-futuristic {
    background: linear-gradient(45deg, #003366, #004080);
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-futuristic:hover {
    background: linear-gradient(45deg, #DAA520, #B8860B);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.3);
    transform: translateY(-2px);
    color: #fff;
}

.btn-futuristic::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.btn-futuristic:hover::after {
    left: 100%;
}

/* ===========================
   3D CSS Animation (Enhanced Globe)
   =========================== */
.scene-3d {
    width: 100%;
    height: 250px;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.globe-3d {
    width: 200px;
    height: 200px;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateGlobe 20s infinite linear;
}

/* Inner Sphere Lines */
.circle-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(0, 51, 102, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 51, 102, 0.05);
}

.circle-3d:nth-child(1) {
    transform: rotateY(0deg);
}

.circle-3d:nth-child(2) {
    transform: rotateY(60deg);
}

.circle-3d:nth-child(3) {
    transform: rotateY(120deg);
}

.circle-3d:nth-child(4) {
    transform: rotateX(60deg);
}

.circle-3d:nth-child(5) {
    transform: rotateX(120deg);
}

/* ===========================
   Futuristic Footer
   =========================== */
.footer-futuristic {
    background: linear-gradient(180deg, #003366 0%, #001122 100%);
    color: #fff;
    position: relative;
    padding-top: 80px;
    margin-top: 0;
}

/* Wave Animation */
.footer-wave-container {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave-container svg {
    position: relative;
    display: block;
    width: calc(150% + 1.3px);
    height: 100px;
}

.footer-wave-container .shape-fill {
    fill: #003366;
}

/* Footer Content */
.footer-brand h1 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Links */
.footer-link {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    text-decoration: none !important;
    margin-bottom: 12px;
}

.footer-link i {
    color: #DAA520;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: #fff !important;
    padding-left: 5px;
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Social Icons */
.footer-social-btn {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    margin-right: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.footer-social-btn:hover {
    background: #DAA520;
    color: #003366 !important;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4);
}

/* Newsletter Input */
.footer-newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 25px 30px;
    height: 50px;
}

.footer-newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: #DAA520;
    box-shadow: 0 0 15px rgba(218, 165, 32, 0.2);
    color: #fff;
}

.btn-newsletter {
    background: #DAA520;
    color: #003366;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 25px;
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: none;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: #fff;
    color: #003366;
    transform: scale(1.05);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Outer Rings */
.ring-3d {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(218, 165, 32, 0.3);
    /* Gold dashed */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-outer {
    width: 260px;
    height: 260px;
    animation: rotateRing 15s infinite linear;
}

.ring-inner {
    width: 230px;
    height: 230px;
    border-color: rgba(0, 51, 102, 0.2);
    animation: rotateRing 10s infinite linear reverse;
}

/* Particles */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #DAA520;
    border-radius: 50%;
    box-shadow: 0 0 10px #DAA520;
}

.p-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -120px);
    animation: floatParticle 3s infinite ease-in-out;
}

.p-2 {
    bottom: 20%;
    right: -10px;
    animation: floatParticle 4s infinite ease-in-out 1s;
}

.p-3 {
    top: 20%;
    left: -10px;
    animation: floatParticle 5s infinite ease-in-out 0.5s;
}

.globe-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 800;
    font-size: 0.8rem;
    color: #003366;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.8), 0 0 20px rgba(0, 51, 102, 0.2);
    animation: rotateText 20s infinite linear reverse;
    white-space: nowrap;
}

@keyframes rotateGlobe {
    0% {
        transform: rotateY(0deg) rotateX(0deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes rotateRing {
    0% {
        transform: translate(-50%, -50%) rotateZ(0deg) rotateX(60deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateZ(360deg) rotateX(60deg);
    }
}

@keyframes rotateText {
    0% {
        transform: translate(-50%, -50%) rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotateX(360deg) rotateY(360deg);
    }
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

/* Contact Info Cards (Light Version - Compact) */
.contact-info-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: #DAA520;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(218, 165, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #DAA520;
    font-size: 20px;
}

/* Stylish Design Credit */
.design-credit {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 8px;
    color: #ffffff !important;
    /* Changed to White */
    text-transform: lowercase;
    /* Changed from uppercase */
    font-size: 0.8rem;
    /* Smaller font size */
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.design-credit:hover {
    color: #DAA520 !important;
    /* Gold on Hover */
    text-shadow: 0 0 10px rgba(218, 165, 32, 0.8);
    transform: translateY(-2px);
}