/* =========================================================
   GYPSY CARTEL — FUTURISTIC MINIMAL THEME
   VERSION: PRODUCTION MASTER v1.0
   STATUS: LOCKED + CLEAN
   
   INCLUDES:
   - Cinematic Global Page Load (Fade + Lift)
   - Physics Cursor (Safe Mode + Class-based Zoom)
   - Premium Apps Slider (Glow Arrows + Smooth Scroll)
   - Modal Lightbox (With Navigation Arrows)
   - Studio Dropdown Locked
   - Legal Pages Styling
   - Mobile Optimization (Cursor Disabled)
========================================================= */


/* =========================================================
   1. GOOGLE FONTS
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@500;700&display=swap');


/* =========================================================
   2. ROOT VARIABLES — BRAND CONTROL
========================================================= */
:root {
    --bg-deep: #050505;
    --bg-surface: #0f0f0f;
    --bg-elevated: #161616;

    --primary-orange: #ff6a1a;
    --orange-glow: rgba(255,106,26,0.18);

    --text-main: #ffffff;
    --text-muted: #8c8c8c;

    --border-soft: rgba(255,255,255,0.08);

    --header-height: 80px;
    --container-width: 1200px;
}


/* =========================================================
   3. RESET & BASE STYLES
========================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at 30% 15%, rgba(255,106,26,0.06), transparent 45%),
        radial-gradient(circle at 70% 85%, rgba(255,106,26,0.05), transparent 45%),
        linear-gradient(180deg, #050505, #070707 45%, #050505);

    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;

    overflow-x: hidden;
    position: relative;

    /* ✅ Custom Cursor Active */
    cursor: auto;

    /* ✅ PREMIUM PAGE LOAD: Initial Invisible State */
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ✅ PREMIUM PAGE LOAD: Visible State (Triggered by JS) */
body.page-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Grid Overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}


/* =========================================================
   4. TYPOGRAPHY
========================================================= */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer !important;
}

ul {
    list-style: none;
}

/* =========================================================
   6. HEADER & NAVIGATION (LOCKED)
========================================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(5,5,5,0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-soft);
    z-index: 1000;
    
    /* Header never fades out, stays solid */
    opacity: 1 !important;
    transform: none !important;
}

.logo-icon {
    width: 38px;
    height: auto;
}

header nav ul {
    display: flex;
    gap: 28px;
}

/* --- NAV HIGHLIGHT LOGIC --- */
header nav a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff !important;
    position: relative;
    transition: none !important;
}

/* Active Page = Orange */
header nav a.active {
    color: var(--primary-orange) !important;
}

/* Underline Default Hidden */
header nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

/* Hover = Show Underline */
header nav a:hover::after {
    width: 100%;
}

/* Active Link: No underline unless hovered */
header nav a.active::after {
    width: 0% !important;
}

header nav a.active:hover::after {
    width: 100% !important;
}


/* =========================================================
   7. BUTTONS (PREMIUM)
========================================================= */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Shine Effect */
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.25),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

/* Primary Button */
.btn-primary {
    background: linear-gradient(135deg, #ff6a1a, #ff3c00);
    color: #fff;
    box-shadow: 0 10px 30px rgba(255,106,26,0.25);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: none;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
}

.btn-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}


/* =========================================================
   8. LAYOUT UTILITIES & ANIMATION
========================================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 140px 20px 80px;
    position: relative;
    z-index: 2;
}

/* ✅ FIX 3: Safe Section Reveal (Only targets specific content) */
.container > section,
.container > div:not(.gc-dropdown),
.container > article {
    opacity: 0;
    transform: translateY(16px);
    animation: sectionReveal 0.8s ease forwards;
}
.container > *:nth-child(2) { animation-delay: 0.15s; }
.container > *:nth-child(3) { animation-delay: 0.3s; }
.container > *:nth-child(4) { animation-delay: 0.45s; }

@keyframes sectionReveal {
    to { opacity: 1; transform: translateY(0); }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}


/* =========================================================
   9. FORMS & INPUTS
========================================================= */
input, textarea, select {
    width: 100%;
    padding: 14px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-soft);
    color: #fff;
    margin-bottom: 20px;
    border-radius: 6px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px var(--orange-glow);
}

/* ✅ Z-Index Fix: Forms never block cursor */
input, textarea, select, button {
    position: relative;
    z-index: 5;
}

/* Success Message Hidden by Default */
#design-success {
    display: none;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 10px;
    background: rgba(0,255,120,0.08);
    border: 1px solid rgba(0,255,120,0.35);
    color: #00ff88 !important;
    font-weight: 600;
    font-size: 0.95rem;
}


/* =========================================================
   10. PREMIUM CUSTOM DROPDOWN
========================================================= */
.gc-dropdown {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    font-family: inherit;
}

.gc-dropdown-selected {
    background: var(--bg-elevated);
    border: 1px solid var(--border-soft);
    padding: 14px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer !important;
    user-select: none;
    transition: 0.25s ease;
}

.gc-dropdown-selected:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 2px rgba(255,106,26,0.15);
}

.gc-dropdown-list {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #0f0f0f;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    padding: 6px 0;
    margin: 0;
    list-style: none;
    max-height: 240px;
    overflow-y: auto;
    display: none;
    z-index: 9999;
    overscroll-behavior: contain;
}

.gc-dropdown-list::-webkit-scrollbar { width: 6px; }
.gc-dropdown-list::-webkit-scrollbar-thumb { background: rgba(255,106,26,0.35); border-radius: 10px; }

.gc-dropdown-list li {
    padding: 14px 16px;
    color: #fff;
    cursor: pointer !important;
    transition: 0.2s ease;
}

.gc-dropdown-list li:hover,
.gc-dropdown-list li.active {
    background: rgba(255,106,26,0.12);
    color: var(--primary-orange);
}

.gc-dropdown.open .gc-dropdown-list {
    display: block;
}


/* =========================================================
   11. HOME PAGE & DESIGN PAGE
========================================================= */
/* Hero */
.hero {
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 30% 20%, rgba(255,106,26,0.12), transparent 55%), #000;
}
.hero-center { display: flex; flex-direction: column; align-items: center; }
.hero-lottie-wrap { width: 420px; max-width: 90vw; aspect-ratio: 1/1; margin-bottom: 1.6rem; }
.hero-tagline { font-size: 1.25rem; color: var(--text-muted); max-width: 720px; margin-bottom: 1.8rem; }
.hero-actions { display: flex; gap: 16px; justify-content: center; }

/* Design Page Fixes */
.design-page .grid-2 { align-items: center; }
.design-page .grid-2 > div:first-child { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0 !important; }
.design-page .mg-logo-wrap { margin-bottom: 1.2rem !important; }
.design-page .mg-logo-wrap img { width: 100%; max-width: 260px; animation: logoFloat 6s ease-in-out infinite; }
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }


/* =========================================================
   12. APPS PAGE (PREMIUM SLIDER + ARROWS + MODAL)
========================================================= */

/* Premium Horizontal Track */
.apps-gallery-wrapper {
    position: relative;
    margin-top: 60px;
}

.apps-gallery-track {
    display: flex;
    gap: 26px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 18px 8px 18px;
    border-radius: 18px;
}

/* Premium Scrollbar */
.apps-gallery-track::-webkit-scrollbar { height: 6px; }
.apps-gallery-track::-webkit-scrollbar-thumb { background: rgba(255,106,26,0.35); border-radius: 10px; }
.apps-gallery-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.04); }

/* Premium Cards */
.apps-gallery-img {
    width: 320px;
    flex-shrink: 0;
    border-radius: 16px;
    scroll-snap-align: start;
    cursor: pointer !important;
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s ease;
}

.apps-gallery-img:hover {
    transform: scale(1.06);
    border-color: rgba(255,106,26,0.55);
    box-shadow: 0 25px 65px rgba(0,0,0,0.7), 0 0 30px rgba(255,106,26,0.18);
}

/* Premium Slider Arrows */
.apps-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15,15,15,0.92);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--primary-orange);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    z-index: 20;
    transition: 0.3s ease;
}

.apps-gallery-arrow:hover {
    background: rgba(255,106,26,0.12);
    box-shadow: 0 0 18px rgba(255,106,26,0.35);
    transform: translateY(-50%) scale(1.08);
}

.apps-gallery-arrow.left { left: -18px; }
.apps-gallery-arrow.right { right: -18px; }

/* Modal Main Container */
.apps-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.apps-modal-img { max-width: 90%; max-height: 85vh; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,0.8); }
.apps-modal-close { position: absolute; top: 24px; right: 32px; font-size: 2rem; cursor: pointer !important; color: #fff; }
.apps-modal-close:hover { color: var(--primary-orange); }

/* Modal Navigation Arrows */
.apps-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: rgba(15,15,15,0.92);
    border: 1px solid rgba(255,255,255,0.14);
    color: var(--primary-orange);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 99999;
    transition: 0.3s ease;
}

.apps-modal-arrow:hover {
    background: rgba(255,106,26,0.14);
    box-shadow: 0 0 25px rgba(255,106,26,0.35);
}

.apps-modal-arrow.left { left: 28px; }
.apps-modal-arrow.right { right: 28px; }


/* =========================================================
   13. LEGAL PAGES (TERMS & PRIVACY) - ✅ FIX 4
========================================================= */
.legal-page {
    max-width: 900px;
    margin: auto;
    padding: 160px 20px 90px;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-orange);
}

.legal-page h2 {
    margin-top: 35px;
    font-size: 1.2rem;
    color: #fff;
}

.legal-page p {
    margin-top: 12px;
    line-height: 1.8;
    color: var(--text-muted);
}

.legal-page a {
    color: var(--primary-orange);
}


/* =========================================================
   14. FOOTER
========================================================= */
footer {
    background: linear-gradient(180deg, #0a0a0a, #050505);
    padding: 50px 5% 30px;
    /* Footer Never Fades */
    opacity: 1 !important;
    transform: none !important;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid var(--border-soft);
    padding-bottom: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer Link Color Fixes */
footer a, 
footer p a, 
.career-open-link {
    color: #ffffff !important;
    text-decoration: none;
}

footer a:hover, 
footer p a:hover, 
.career-open-link:hover {
    color: var(--primary-orange) !important;
}


/* =========================================================
   15. MOBILE ADJUSTMENTS & CURSOR DISABLE
========================================================= */
@media (max-width: 900px) {
    .grid-2, .footer-content { grid-template-columns: 1fr; }
    .hero-lottie-wrap { max-width: 300px; }
    .apps-gallery-arrow { display: none; }
}

/* ✅ CRITICAL: Full Mobile Cursor Disable */
@media (hover: none) {
    body {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    /* Ensure Nav is touchable */
    header nav a {
        cursor: pointer !important;
    }
}
/* =========================================================
   GYPSY CARTEL — GLOBAL PREMIUM HOVER ANIMATIONS
   Paste this at the BOTTOM of style.css
========================================================= */


/* =========================================
   1. GLOBAL SMOOTH TRANSITIONS
========================================= */

* {
    transition: background-color 0.35s ease,
                border-color 0.35s ease,
                color 0.35s ease;
}


/* =========================================
   2. PREMIUM IMAGE HOVER (ALL IMAGES)
========================================= */

img {
    transition: transform 0.65s ease,
                filter 0.65s ease,
                box-shadow 0.65s ease;
}

img:hover {
    transform: scale(1.045);
    filter: brightness(1.08);
}


/* =========================================
   3. PREMIUM GALLERY + APP SCREEN ZOOM
========================================= */

.apps-gallery-img,
.gallery-item img {
    transition: transform 0.6s ease,
                box-shadow 0.6s ease;
}

.apps-gallery-img:hover,
.gallery-item:hover img {
    transform: scale(1.12);
    box-shadow: 0 28px 75px rgba(0,0,0,0.7);
}


/* =========================================
   4. PREMIUM FORM FIELD INTERACTION
========================================= */

input,
textarea,
select {
    transition: transform 0.25s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

/* Hover */
input:hover,
textarea:hover,
select:hover {
    border-color: rgba(255,106,26,0.55);
    transform: scale(1.01);
}

/* Focus */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255,106,26,0.22);
}


/* =========================================
   5. FORM CONTAINER LIFT (PREMIUM)
========================================= */

form {
    transition: transform 0.55s ease,
                box-shadow 0.55s ease;
}

form:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 85px rgba(0,0,0,0.6);
}


/* =========================================
   6. PREMIUM BUTTON HOVER MOTION
========================================= */

.btn {
    transition: transform 0.35s ease,
                box-shadow 0.35s ease;
}

.btn:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 18px 45px rgba(255,106,26,0.25);
}

.btn:active {
    transform: scale(0.97);
}


/* =========================================
   7. PREMIUM CARD FLOAT EFFECT
   (Services, Careers Roles, Blocks)
========================================= */

.service-card,
.role-item,
.gallery-card {
    transition: transform 0.45s ease,
                border-color 0.45s ease,
                box-shadow 0.45s ease;
}

.service-card:hover,
.role-item:hover,
.gallery-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,106,26,0.55);
    box-shadow: 0 30px 80px rgba(0,0,0,0.65);
}


/* =========================================
   8. PREMIUM LINK GLOW HOVER
========================================= */

a {
    transition: color 0.25s ease;
}

a:hover {
    color: var(--primary-orange);
}


/* =========================================
   9. ULTRA PREMIUM SMOOTH FEEL (OPTIONAL)
========================================= */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
}
/* ========================================= 
   APPS PAGE — ICON PREMIUM HOVER ZOOM (CLEAN)
   Smooth + Slow Zoom Only — No Glow / No Brightness
========================================= */

.apps-image {
    display: block;
    width: 100%;
    border-radius: 12px;

    /* Premium Slow Zoom */
    transform: scale(1);
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover Zoom Only */
.apps-image:hover {
    transform: scale(1.06);
}

/* =========================================
   GLOBAL FOOTER — ORANGE SECTION HEADINGS
========================================= */

footer h3,
footer h4,
.footer-column h3,
.footer-column h4 {
  color: var(--primary-orange) !important;
  letter-spacing: 1px;
  font-weight: 600;
}

/* STUDIO ORANGE HEADING */
.studio-orange {
  color: var(--primary-orange) !important;
}


/* =========================================================
   ✅ GYPSY CARTEL — FINAL MOBILE NAVBAR MASTER (PERFECT)
   Gap Fixed + Studio Fixed + Premium Drawer
========================================================= */


/* =========================================
   ✅ DESKTOP SAFETY
========================================= */
.mobile-menu-btn,
.nav-indicator {
  display: none !important;
}


/* =========================================================
   ✅ MOBILE SYSTEM (TABLETS + PHONES)
========================================================= */
@media (max-width: 768px) {

  /* Prevent Side Scroll */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* ✅ FIX HEADER GAP (REAL FIX) */
  body {
    padding-top: 65px !important;
    margin: 0 !important;
  }

  /* Remove Extra Top Space From Sections */
  section,
  .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  /* =========================================
     ✅ FIXED HEADER (Slim Premium)
  ========================================= */
  header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;
    height: 60px !important;

    padding: 0 14px !important;

    background: rgba(0,0,0,0.94) !important;
    backdrop-filter: blur(18px) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    z-index: 999999 !important;
  }

  /* Logo Left */
  header a {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
  }

  .logo-icon {
    width: 34px !important;
    height: auto !important;
  }

  /* Nav Right */
  header nav {
    flex: 1 !important;
    position: relative !important;

    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;

    gap: 12px !important;
  }

  /* Indicator Visible */
  .nav-indicator {
    display: block !important;
  }

  /* Swipe Menu */
  header nav ul {
    display: flex !important;
    flex-direction: row !important;

    gap: 14px !important;
    overflow-x: auto !important;
    white-space: nowrap !important;

    width: 100% !important;

    padding: 6px 0 !important;
    margin: 0 !important;

    scrollbar-width: none !important;
  }

  header nav ul::-webkit-scrollbar {
    display: none !important;
  }

  header nav ul li {
    flex: 0 0 auto !important;
    list-style: none !important;
  }

  header nav ul li a {
    padding: 8px 14px !important;
    border-radius: 14px !important;

    font-size: 0.9rem !important;
    font-weight: 600 !important;

    color: white !important;
    text-decoration: none !important;
  }

  header nav ul li a.active {
    background: rgba(255,255,255,0.08) !important;
    color: var(--primary-orange) !important;
  }

  /* Indicator Line */
  .nav-indicator {
    position: absolute !important;
    bottom: 2px !important;
    left: 0 !important;

    height: 2px !important;
    width: 40px !important;

    background: var(--primary-orange) !important;
    border-radius: 20px !important;

    transition: 0.35s ease !important;
  }
}


/* =========================================================
   ✅ HAMBURGER DRAWER (SMALL PHONES)
========================================================= */
@media (max-width: 480px) {

  /* Hamburger Button */
  .mobile-menu-btn {
    display: block !important;
    font-size: 1.7rem !important;

    background: none !important;
    border: none !important;
    color: white !important;

    cursor: pointer !important;
  }

  /* Hide Swipe Menu */
  header nav ul {
    display: none !important;
  }

  /* Drawer Open */
  header nav ul.open {
    display: flex !important;
    flex-direction: column !important;

    position: fixed !important;
    top: 60px !important;
    left: 0 !important;

    width: 100% !important;
    max-height: calc(100vh - 60px) !important;

    padding: 20px !important;

    background: rgba(0,0,0,0.98) !important;
    backdrop-filter: blur(25px) !important;

    overflow-y: auto !important;
    gap: 14px !important;

    border-radius: 0 0 22px 22px !important;

    animation: drawerDrop 0.35s ease forwards !important;
  }

  header nav ul.open a {
    width: 100% !important;
    padding: 15px 18px !important;

    border-radius: 14px !important;
    font-size: 1.05rem !important;

    background: rgba(255,255,255,0.05) !important;
  }

  /* Indicator Hidden */
  .nav-indicator {
    display: none !important;
  }
}


/* Drawer Animation */
@keyframes drawerDrop {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   ✅ STUDIO PAGE MOBILE FIX (PERFECT FIT)
========================================================= */

@media (max-width: 768px) {

  .design-page .grid-2 {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
    align-items: center !important;
  }

  .design-page .studio-left {
    width: 100% !important;
    text-align: center !important;
  }

  .design-page .mg-logo-wrap img {
    max-width: 170px !important;
    margin: 0 auto !important;
  }

  .design-page h1 span.studio-orange {
    white-space: normal !important;
    display: block !important;
  }

  .design-page .studio-desc {
    max-width: 100% !important;
    padding: 0 12px !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }

  .design-page .studio-desc br {
    display: none !important;
  }

  .design-page form,
  .design-page input,
  .design-page textarea,
  .design-page .gc-dropdown {
    width: 100% !important;
  }

  .design-page .grid-2 > div:last-child {
    padding: 20px !important;
  }
}
/* =========================================================
   ✅ APPS MODAL — PREMIUM NAV + SCROLL CONTROL (FINAL)
   Mouse Wheel Next/Prev + Touch Swipe + Keyboard + Arrows
========================================================= */

/* Modal Overlay */
.apps-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);

  display: none;
  justify-content: center;
  align-items: center;

  z-index: 999999;
}

/* Modal Image */
.apps-modal-img {
  max-width: 92%;
  max-height: 85vh;
  border-radius: 16px;

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.85);

  animation: modalZoom 0.35s ease;
}

/* Zoom Animation */
@keyframes modalZoom {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Close Button */
.apps-modal-close {
  position: absolute;
  top: 22px;
  right: 28px;

  font-size: 2.3rem;
  font-weight: 600;

  color: white;
  cursor: pointer !important;

  z-index: 9999999;
  transition: 0.25s ease;
}

.apps-modal-close:hover {
  color: var(--primary-orange);
  transform: scale(1.15);
}

/* =========================================================
   ✅ MODAL NAVIGATION ARROWS (LEFT + RIGHT)
========================================================= */

.apps-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 62px;
  height: 62px;
  border-radius: 50%;

  background: rgba(15, 15, 15, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);

  color: var(--primary-orange);
  font-size: 2.4rem;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer !important;
  user-select: none;

  z-index: 9999999;
  transition: 0.3s ease;
}

/* Hover Glow */
.apps-modal-nav:hover {
  background: rgba(255, 106, 26, 0.12);
  box-shadow: 0 0 28px rgba(255, 106, 26, 0.35);
  transform: translateY(-50%) scale(1.08);
}

/* Left + Right Position */
.apps-modal-nav.left {
  left: 22px;
}

.apps-modal-nav.right {
  right: 22px;
}

/* =========================================================
   ✅ MOBILE OPTIMIZATION (NO HUGE ARROWS)
========================================================= */

@media (max-width: 600px) {

  .apps-modal-nav {
    width: 48px;
    height: 48px;
    font-size: 1.8rem;
  }

  .apps-modal-close {
    font-size: 2rem;
    top: 16px;
    right: 18px;
  }
}
/* =========================================
   ✅ PREMIUM IMAGE HOVER FIX (SLOW + SMOOTH)
   No Instant Flash, No Lag
========================================= */

img {
  transition: 
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hover Effect (Soft Premium) */
img:hover {
  transform: scale(1.035);
  filter: brightness(1.04);
}
/* =========================================================
   ✅ GYPSY CARTEL — FINAL FLOATING SUPPORT SYSTEM (LOCKED)
   
   FIXED FOR MOBILE:
   ✅ Zoho REMOVED from Mobile (Fixes close button issue)
   ✅ WhatsApp moved to bottom position on Mobile
   ✅ Zoho + WhatsApp active on Desktop (PC)
========================================================= */


/* =========================================
   ✅ 0. REMOVE ANY DEFAULT WHATSAPP WIDGETS
========================================= */

iframe[src*="whatsapp"],
.wa-chat-widget,
.wa-widget,
.whatsapp-left,
.whatsapp-float-left {
  display: none !important;
}


/* =========================================
   ✅ 1. FLOATING BUTTON BASE (PERFECT LOCK)
========================================= */

#zsiq_float,
.whatsapp-float {
  position: fixed !important;
  right: 18px !important;
  left: auto !important;

  width: 58px !important;
  height: 58px !important;

  min-width: 58px !important;
  min-height: 58px !important;

  max-width: 58px !important;
  max-height: 58px !important;

  border-radius: 50% !important;
  flex-shrink: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  cursor: pointer !important;
  z-index: 999999 !important;

  transition: transform 0.25s ease, opacity 0.25s ease !important;
  overflow: visible !important;
}


/* =========================================
   ✅ 2. DESKTOP STACK POSITION (PC)
========================================= */

@media (min-width: 769px) {
  #zsiq_float {
    bottom: 18px !important;
    display: flex !important; /* Ensure visible on PC */
  }

  .whatsapp-float {
    bottom: 92px !important; /* Stacked above Zoho */
  }
}


/* =========================================
   ✅ 3. OFFICIAL PREMIUM COLORS
========================================= */

#zsiq_float {
  background: linear-gradient(145deg, #ff6600, #ff3d00) !important;
  box-shadow: 0 0 22px rgba(255,102,0,0.55) !important;
}

.whatsapp-float {
  background: linear-gradient(145deg, #25d366, #128c7e) !important;
  box-shadow: 0 0 22px rgba(37,211,102,0.50) !important;
}


/* =========================================
   ✅ 4. ICON PERFECT CENTER LOCK
========================================= */

.whatsapp-float svg,
#zsiq_float svg {
  width: 30px !important;
  height: 30px !important;
  display: block !important;
}


/* =========================================
   ✅ 5. SAME PREMIUM HOVER EFFECT
========================================= */

#zsiq_float:hover,
.whatsapp-float:hover {
  transform: scale(1.10) !important;
  opacity: 0.96 !important;
}


/* =========================================
   ✅ 6. TOOLTIP TEXT (DESKTOP ONLY)
========================================= */

@media (min-width: 769px) {
  #zsiq_float::after,
  .whatsapp-float::after {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15,15,15,0.92);
    backdrop-filter: blur(14px);
    font-family: "Space Grotesk", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: #fff;
    padding: 9px 15px;
    border-radius: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .whatsapp-float::after { content: "Connect Now"; }
  #zsiq_float::after { content: "Support Team Here"; }

  #zsiq_float:hover::after,
  .whatsapp-float:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(-6px);
  }
}


/* =========================================
   ✅ 7. MOBILE LOGIC (ZOHO REMOVAL)
========================================= */

@media (max-width: 768px) {
  /* ❌ TOTALLY REMOVE ZOHO ON MOBILE */
  #zsiq_float, 
  .zsiq_floatmain,
  #zsiq_agtpic {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* ✅ MOVE WHATSAPP TO THE BOTTOM CORNER ON MOBILE */
  .whatsapp-float {
    width: 54px !important;
    height: 54px !important;
    right: 16px !important;
    bottom: 16px !important; /* Lowered because Zoho is gone */
  }

  /* Tooltips OFF */
  .whatsapp-float::after {
    display: none !important;
  }
}


/* =========================================
   ✅ 8. AUTO HIDE BUTTONS WHEN CHAT OPENS
========================================= */

body.siq-open #zsiq_float,
body.siq-open .whatsapp-float {
  opacity: 0 !important;
  pointer-events: none !important;
}
