:root {
    --bg-dark: #020205;
    --bg-card: rgba(10, 10, 15, 0.4);
    --primary: #00f2ff;
    --primary-glow: rgba(0, 242, 255, 0.6);
    --secondary: #bd00ff;
    --secondary-glow: rgba(189, 0, 255, 0.4);
    --text-main: #ffffff;
    --text-dim: #94a3b8;
    --accent: #ff007a;
    --glass-border: rgba(255, 255, 255, 0.08);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.light-mode {
    --bg-dark: #f8fafc;
    --bg-card: rgba(255, 255, 255, 0.7);
    --primary: #0ea5e9;
    --primary-glow: rgba(14, 165, 233, 0.4);
    --secondary: #8b5cf6;
    --secondary-glow: rgba(139, 92, 246, 0.3);
    --text-main: #0f172a;
    --text-dim: #475569;
    --accent: #e11d48;
    --glass-border: rgba(0, 0, 0, 0.1);
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #020205;
    z-index: 100000;
    /* Extremely high z-index */
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    clip-path: circle(150% at 50% 50%);
    -webkit-clip-path: circle(150% at 50% 50%);
}

.transition-content {
    text-align: center;
    transform: translateY(0);
    opacity: 1;
    z-index: 100001;
}

.transition-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.transition-logo span {
    color: var(--primary);
}

.transition-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.transition-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    box-shadow: 0 0 10px var(--primary-glow);
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Global Security: Disable Selection & Dragging */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

/* Allow selection only in form inputs and textareas */
input,
textarea,
[contenteditable="true"] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Welcome Toast Style */
.welcome-toast {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    z-index: 9999;
    font-family: 'Outfit', sans-serif;
    border: 1px solid var(--primary);
    border-radius: 50px;
    background: rgba(5, 5, 5, 0.8) !important;
    backdrop-filter: blur(15px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.welcome-toast.active {
    bottom: 40px;
}

.welcome-toast span {
    color: var(--primary);
    font-weight: 800;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
.logo-text {
    font-family: 'Space Grotesk', sans-serif;
}

/* Background Effects */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
    opacity: 0.05;
    pointer-events: none;
    z-index: 9999;
}

.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: transform 0.1s ease;
    z-index: 10000;
    mix-blend-mode: difference;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(5, 5, 5, 0.7);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    transition: var(--transition);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary);
}

.menu-toggle.active span:nth-child(2) {
    transform: rotate(-45deg);
    background: var(--primary);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hawk-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--primary));
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--primary);
    margin-left: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1rem;
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition);
}

.nav-links li:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    font-size: 0.8rem;
    white-space: nowrap;
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.btn.iphunter {
    background: linear-gradient(135deg, var(--primary), #00a8ff);
    box-shadow: 0 10px 20px -5px var(--primary-glow);
}

.btn.yaadrakho {
    background: linear-gradient(135deg, var(--secondary), #7000ff);
    box-shadow: 0 10px 20px -5px var(--secondary-glow);
}

.cta-pill {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s linear infinite;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    position: relative;
    transform-style: preserve-3d;
    overflow: visible;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 10px 20px -5px var(--primary-glow),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn.primary:hover {
    transform: translateY(-5px) translateZ(20px);
    box-shadow: 0 20px 40px -10px var(--primary-glow),
        0 0 20px var(--primary-glow);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px) translateZ(15px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* Services */
.services {
    padding: 10rem 10%;
}

.section-header {
    margin-bottom: 5rem;
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.accent-line {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.6s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: visible;
}

.glass-card:hover {
    border-color: var(--primary);
    transform: translateY(-15px) rotateX(8deg) rotateY(8deg);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6),
        0 18px 36px -18px rgba(0, 242, 255, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.4));
    transform: translateZ(50px);
    transition: transform 0.5s ease;
}

.glass-card:hover .card-icon {
    transform: translateZ(80px) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateZ(30px);
}

.service-card p {
    color: var(--text-dim);
    transform: translateZ(20px);
}

/* App Showcase */
.app-showcase {
    padding: 10rem 10%;
    background: radial-gradient(circle at left, rgba(112, 0, 255, 0.1), transparent 50%);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.app-text h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.highlight {
    color: var(--primary);
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.app-visual {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-screen {
    width: 280px;
    height: 550px;
    background: #111;
    border: 8px solid #222;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
    box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.8),
        -1px -1px 0 rgba(255, 255, 255, 0.2) inset;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.app-visual:hover .mockup-screen {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateZ(50px);
}

.scanner-line {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary);
    top: 0;
    animation: scan 3s infinite linear;
    z-index: 2;
}

.app-interface {
    padding: 20px;
}

.widget {
    background: rgba(255, 255, 255, 0.05);
    height: 60px;
    border-radius: 12px;
    margin-bottom: 15px;
}

.widget.main {
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 242, 255, 0.1));
}

/* About Section */
.about {
    padding: 10rem 10%;
    display: flex;
    justify-content: center;
}

.quote-container {
    max-width: 800px;
    text-align: center;
    padding: 5rem;
}

.quote-mark {
    font-size: 8rem;
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-family: serif;
}

blockquote {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.author {
    display: flex;
    flex-direction: column;
}

.author strong {
    font-size: 1.2rem;
}

.author span {
    color: var(--text-dim);
}

/* New Section Styles */
.brand-item h3 {
    color: var(--primary);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.brand-item p {
    font-size: 1.1rem;
    color: var(--text-dim);
}

.founder-image img {
    box-shadow: 0 0 20px var(--primary-glow);
    transition: transform 0.5s ease;
}

.founder-image img:hover {
    transform: scale(1.1);
}

.whatsapp-badge a {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.whatsapp-badge a:hover {
    transform: translateX(5px);
    filter: brightness(1.2);
}

/* Tech Pill Branding */
.tech-pill {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateZ(40px);
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 5rem 10% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.9rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
@keyframes float {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(10%, 10%);
    }
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes scan {
    0% {
        top: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Reveal Effects */
.reveal-text {
    opacity: 0;
    transform: translateY(40px) skewY(5deg);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: blur(10px);
}

.reveal-text.visible {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
    filter: blur(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .app-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .app-visual {
        height: auto;
        margin-top: 2rem;
    }

    .services,
    .app-showcase,
    .about {
        padding: 5rem 5%;
    }
}

@media (max-width: 768px) {
    .glass-nav {
        padding: 1rem 5%;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(2, 2, 5, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1050;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition: 0.4s ease forwards;
    }

    .nav-links.active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.active li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.active li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-links.active li:nth-child(8) {
        transition-delay: 0.45s;
    }

    .nav-links.active li:nth-child(9) {
        transition-delay: 0.5s;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
        padding: 1rem 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .glass-card:hover {
        transform: translateY(-5px);
    }

    .mockup-screen {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
        width: 240px;
        height: 480px;
    }

    blockquote {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .social-icons {
        justify-content: center;
    }

    /* Fixed Desktop Cursor on Mobile */
    .cursor {
        display: none;
    }
}


/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 3rem;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.modal-content h2 {
    margin-bottom: 0.5rem;
}

.modal-content p {
    color: var(--text-dim);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

/* Form Styling */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px var(--primary-glow);
}

.w-full {
    width: 100%;
}

/* Search Box */
.search-box {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.search-box input {
    flex: 1;
    padding: 1rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Status Messages */
.status-msg {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 255, 128, 0.1);
    border: 1px solid #00ff80;
}

.status-msg.success {
    color: #00ff80;
}

.status-msg p {
    margin-bottom: 0;
    color: inherit;
}

.hidden {
    display: none !important;
}

/* Result Display */
.result-display {
    text-align: left;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.result-item {
    margin-bottom: 1rem;
}

.result-item:last-child {
    margin-bottom: 0;
}

.result-label {
    font-size: 0.7rem;
    color: var(--text-dim);
    text-transform: uppercase;
    display: block;
}

.result-value {
    font-weight: 600;
    color: var(--text-main);
}

.badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    background: var(--primary);
    color: black;
    margin-left: 10px;
}

/* Responsive Modals */
@media (max-width: 600px) {
    .modal-content {
        padding: 2rem 1.5rem;
    }

    .search-box {
        flex-direction: column;
    }
}

/* Product Spotlight Slideshow */
.spotlight {
    padding: 0;
    height: 80vh;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slideshow-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.4) saturate(1.2);
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.slide.active .slide-content {
    transform: translateX(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.4;
}

/* Slide Navigation */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1.5rem 1rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    font-size: 1.5rem;
}

.slide-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: black;
}

.slide-nav.prev {
    left: 2rem;
    border-radius: 0 12px 12px 0;
}

.slide-nav.next {
    right: 2rem;
    border-radius: 12px 0 0 12px;
}

.slide-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    width: 80px;
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }

    .slide-content {
        text-align: center;
        margin: 0 auto;
    }

    .slide {
        justify-content: center;
        padding: 0 5%;
    }

    .slide-nav {
        padding: 1rem 0.5rem;
    }
}

/* Shop Features */
.shop-modal-content {
    max-width: 650px;
}

.product-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.theme-toggle {
    transition: var(--transition);
    user-select: none;
}

.theme-toggle:hover {
    transform: scale(1.2) rotate(20deg);
}

.light-mode .glass-nav {
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode a {
    color: #0f172a;
}

.light-mode .cta-pill {
    color: white !important;
}

.product-item {
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.product-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background: rgba(0, 242, 255, 0.05);
}

.p-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-item .price {
    font-weight: 800;
    color: var(--primary);
}

.shop-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.shop-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-methods {
    margin-bottom: 2rem;
}

.payment-methods label {
    display: block;
    font-size: 0.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.payment-options {
    display: flex;
    gap: 10px;
}

.pay-opt {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 0.8rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.pay-opt.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 242, 255, 0.1);
}

.checkout-summary {
    padding: 2rem;
    margin-top: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.back-text-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 0.8rem;
    margin-top: 1.5rem;
    cursor: pointer;
}

.success-wrap {
    text-align: center;
    padding: 3rem 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #00ff80;
    animation: bounce 1s infinite alternate;
}

@keyframes bounce {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

/* Floating Enquiry Button */
.floating-enquiry {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-enquiry:hover {
    transform: scale(1.05) translateY(-5px);
    background: #00d8e4;
}

.enquiry-icon {
    font-size: 1.2rem;
}

.enquiry-text {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .floating-enquiry {
        bottom: 100px;
        right: 20px;
        padding: 10px 18px;
    }

    .enquiry-text {
        display: none;
    }
}