/* ============================================================
       ULTIMATE PREMIUM STYLES - RESULTS PAGE
       COLOUR THEME: ORANGE (#f57327)
       FULLY RESPONSIVE - MOBILE, TABLET, LAPTOP, DESKTOP
       ADVANCED SECURITY FEATURES
       ============================================================ */

    :root {
      --primary: #f57327;
      --primary-dark: #d45500;
      --primary-light: #ff8c42;
      --primary-gradient: linear-gradient(135deg, #f57327, #d45500);
      --secondary: #1a1a2e;
      --dark: #0d0d1a;
      --gold: #ffd700;
      --shadow: 0 10px 30px rgba(0,0,0,0.08);
      --shadow-hover: 0 15px 40px rgba(245,115,39,0.2);
      --radius: 14px;
      --transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
      --container-padding: 16px;
    }

    /* ============================================================
       SECURITY - DISABLE SELECTION & INTERACTION
       ============================================================ */
    * {
      -webkit-user-select: none !important;
      -moz-user-select: none !important;
      -ms-user-select: none !important;
      user-select: none !important;
      -webkit-touch-callout: none !important;
      -webkit-tap-highlight-color: transparent !important;
    }
    
    /* Allow text selection in input fields */
    input, textarea, select, .popup-content input, .popup-content textarea {
      -webkit-user-select: text !important;
      -moz-user-select: text !important;
      -ms-user-select: text !important;
      user-select: text !important;
    }
    
    /* Disable image dragging */
    img, .result-image img, .hero-banner img {
      -webkit-user-drag: none !important;
      -khtml-user-drag: none !important;
      -moz-user-drag: none !important;
      -o-user-drag: none !important;
      user-drag: none !important;
      pointer-events: none !important;
      draggable: false !important;
    }

    /* ============================================================
       PRINT PROTECTION
       ============================================================ */
    @media print {
      body * { 
        visibility: hidden !important; 
        display: none !important; 
      }
      body::after {
        content: '🔒 Content Protected - Srijjan Institute' !important;
        visibility: visible !important;
        display: block !important;
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        font-size: 20px !important;
        color: #f57327 !important;
        background: #0d0d1a !important;
        padding: 30px !important;
        border-radius: 16px !important;
        z-index: 999999 !important;
        text-align: center !important;
        font-weight: 700 !important;
        border: 3px solid #f57327 !important;
        width: 80% !important;
        max-width: 400px !important;
        font-family: 'Poppins', sans-serif !important;
      }
    }

    ::selection { background: transparent !important; }
    ::-moz-selection { background: transparent !important; }

    /* ============================================================
       RESET & BASE
       ============================================================ */
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { 
      font-size: 16px; 
      -webkit-text-size-adjust: 100%; 
      scroll-behavior: smooth;
    }
    body { 
      font-family: 'Poppins', sans-serif; 
      background: #f8f9fa; 
      color: #1e293b; 
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; height: auto; }
    ul { list-style: none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 var(--container-padding); }

    /* ============================================================
       SCROLLBAR
       ============================================================ */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #1a1a2e; }
    ::-webkit-scrollbar-thumb { background: var(--primary-gradient); border-radius: 10px; }
    ::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

    /* ============================================================
       SCROLL PROGRESS
       ============================================================ */
    .scroll-progress {
      position: fixed; top: 0; left: 0; height: 3px; width: 0%;
      background: var(--primary-gradient); z-index: 999999;
      transition: width 0.1s linear;
      box-shadow: 0 0 15px rgba(245,115,39,0.4);
    }

    /* ============================================================
       TOP BAR - FULLY RESPONSIVE
       ============================================================ */
    .top-bar {
      background: #0d0d1a; 
      color: #fff; 
      padding: 6px 0;
      border-bottom: 2px solid var(--primary); 
      position: relative; 
      z-index: 1001;
    }
    .top-bar .container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 6px 12px;
    }
    .top-bar-left {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px 14px;
    }
    .top-bar-left a {
      color: #94a3b8; 
      font-size: 12px;
      transition: var(--transition);
      display: inline-flex; 
      align-items: center; 
      gap: 5px;
      white-space: nowrap;
    }
    .top-bar-left a:hover { color: var(--primary); }
    .top-bar-left a i { color: var(--primary); font-size: 12px; }

    .top-bar-right {
      display: flex; 
      gap: 6px;
      flex-wrap: wrap;
    }
    .top-bar-right .btn-sm {
      padding: 4px 14px; 
      border-radius: 30px; 
      font-size: 11px; 
      font-weight: 600;
      background: var(--primary-gradient); 
      color: #fff;
      transition: var(--transition);
      display: inline-flex; 
      align-items: center; 
      gap: 4px;
      white-space: nowrap;
    }
    .top-bar-right .btn-sm:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(245,115,39,0.3);
    }

    @media (max-width: 768px) {
      .top-bar .container {
        flex-direction: column;
        gap: 4px;
      }
      .top-bar-left {
        justify-content: center;
        gap: 4px 10px;
      }
      .top-bar-left a { font-size: 10px; }
      .top-bar-left a span { display: none; }
      .top-bar-right .btn-sm { font-size: 9px; padding: 3px 10px; }
    }

    /* ============================================================
       TOP SCROLL MENU - FULLY RESPONSIVE
       ============================================================ */
    .top-scroll-bar {
      width: 100%;
      background: rgba(0, 0, 0, 0.92);
      backdrop-filter: blur(10px);
      padding: 6px 0;
      border-bottom: 1px solid rgba(245,115,39,0.15);
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
      box-shadow: 0 4px 20px rgba(245,115,39,0.1);
      display: flex;
      justify-content: center;
      gap: 6px;
      position: sticky;
      top: 0;
      z-index: 9999;
      scrollbar-width: none;
    }
    .top-scroll-bar::-webkit-scrollbar { display: none; }

    .menu-item {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: rgba(50,50,50,0.95);
      padding: 5px 10px;
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      min-width: 80px;
      font-size: 10px;
      font-weight: 600;
      color: #fff;
      transition: all 0.25s ease;
      box-shadow: 0 2px 5px rgba(0,0,0,0.3);
      white-space: normal;
      flex-shrink: 0;
    }
    .menu-item i {
      font-size: 15px;
      display: block;
      margin-bottom: 2px;
      color: var(--primary);
    }
    .menu-item:hover {
      transform: scale(1.05);
      background: var(--primary-gradient);
      box-shadow: 0 5px 15px rgba(245,115,39,0.4);
      border-color: #fff;
    }
    .menu-item.red-btn {
      background: linear-gradient(135deg, #f57327, #d45500);
    }
    .menu-item.red-btn:hover {
      background: linear-gradient(135deg, #ff8c42, #d45500);
    }

    @media (max-width: 480px) {
      .menu-item { min-width: 65px; padding: 4px 6px; font-size: 8px; }
      .menu-item i { font-size: 12px; }
      .top-scroll-bar { gap: 4px; padding: 4px 0; }
    }

    /* ============================================================
       HEADER / NAVBAR - FULLY RESPONSIVE
       ============================================================ */
    header {
      background: #1a1a2e;
      position: sticky;
      top: 0;
      z-index: 99999;
      border-bottom: 1px solid rgba(245,115,39,0.1);
    }
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4px 0;
      min-height: 52px;
      flex-wrap: nowrap;
      gap: 8px;
    }
    .brand {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }
    .brand i { color: var(--primary); font-size: 20px; }
    .brand span { background: var(--primary-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

    .menu-toggle {
      display: none;
      background: transparent;
      border: 2px solid rgba(255,255,255,0.12);
      border-radius: 6px;
      padding: 4px 7px;
      cursor: pointer;
      flex-shrink: 0;
      touch-action: manipulation;
    }
    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: #fff;
      margin: 3px 0;
      border-radius: 2px;
      transition: var(--transition);
    }

    .nav-links {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      list-style: none;
      gap: 0;
    }
    .nav-links > li { position: relative; }
    .nav-links > li > a {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 6px 12px;
      color: #fff;
      font-weight: 500;
      transition: all 0.3s ease;
      font-size: 12px;
      letter-spacing: 0.2px;
      white-space: nowrap;
    }
    .nav-links > li > a:hover {
      background: var(--primary-gradient);
      border-radius: 6px;
      transform: translateY(-2px);
    }
    .nav-links > li > a i { font-size: 9px; }

    .sub-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #1a1a2e;
      min-width: 200px;
      border-radius: 10px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.6);
      border: 1px solid rgba(245,115,39,0.1);
      padding: 4px 0;
      z-index: 999;
    }
    .sub-menu a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 6px 16px;
      color: #e0e0e0;
      font-size: 11px;
      transition: all 0.3s ease;
    }
    .sub-menu a:hover {
      background: var(--primary-gradient);
      color: #fff;
      padding-left: 22px;
    }
    .sub-menu .sub-menu {
      left: 100%;
      top: -4px;
    }
    .nav-links li:hover > .sub-menu {
      display: block;
      animation: fadeDown 0.25s ease;
    }

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

    @media (max-width: 992px) {
      .menu-toggle { display: block; }
      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #1a1a2e;
        padding: 6px 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        border-top: 1px solid rgba(255,255,255,0.04);
        max-height: 70vh;
        overflow-y: auto;
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links li a {
        padding: 8px 16px;
        font-size: 13px;
        border-bottom: 1px solid rgba(255,255,255,0.04);
      }
      .sub-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.04);
        padding: 0;
        display: none;
      }
      .sub-menu a {
        padding: 6px 24px;
        font-size: 12px;
      }
      .sub-menu .sub-menu { padding-left: 12px; }
      .nav-links li:hover > .sub-menu { display: none; }
      .sub-menu.show { display: block; }
    }

    @media (max-width: 480px) {
      .brand { font-size: 14px; }
      .brand i { font-size: 16px; }
      .menu-toggle { padding: 3px 6px; }
      .menu-toggle span { width: 16px; height: 2px; margin: 2px 0; }
      .nav-links li a { padding: 6px 14px; font-size: 12px; }
      .sub-menu a { padding: 5px 20px; font-size: 11px; }
    }

    /* ============================================================
       HERO BANNER - FULLY RESPONSIVE
       ============================================================ */
    .hero-banner {
      background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0d0d2b 100%);
      padding: 60px 0 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero-banner::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(245,115,39,0.1), transparent 70%);
      border-radius: 50%;
      animation: floatGlow 8s ease-in-out infinite;
    }
    .hero-banner::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -10%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(245,115,39,0.06), transparent 70%);
      border-radius: 50%;
      animation: floatGlow 10s ease-in-out infinite reverse;
    }
    @keyframes floatGlow {
      0%,100% { transform: translate(0,0) scale(1); }
      50% { transform: translate(20px,-20px) scale(1.1); }
    }

    .hero-banner .hero-badge {
      display: inline-block;
      background: var(--primary-gradient);
      color: #fff;
      padding: 4px 16px;
      border-radius: 50px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 12px;
      position: relative;
      z-index: 1;
    }
    .hero-banner h1 {
      font-size: 2.4rem;
      font-weight: 900;
      line-height: 1.15;
      color: #fff;
      position: relative;
      z-index: 1;
    }
    .hero-banner h1 .highlight {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-banner p {
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      line-height: 1.7;
      max-width: 700px;
      margin: 12px auto 0;
      position: relative;
      z-index: 1;
    }
    .hero-banner .hero-stats {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 20px;
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }
    .hero-banner .hero-stats .stat .num {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
    }
    .hero-banner .hero-stats .stat .label {
      font-size: 0.7rem;
      color: rgba(255,255,255,0.6);
    }

    @media (max-width: 480px) {
      .hero-banner { padding: 40px 0 30px; }
      .hero-banner h1 { font-size: 1.8rem; }
      .hero-banner p { font-size: 0.8rem; }
      .hero-banner .hero-stats { gap: 12px; }
      .hero-banner .hero-stats .stat .num { font-size: 1.4rem; }
      .hero-banner .hero-stats .stat .label { font-size: 0.6rem; }
      .hero-banner .hero-badge { font-size: 8px; padding: 3px 12px; }
    }

    /* ============================================================
       SECTION TITLE
       ============================================================ */
    .section-title {
      font-size: 1.8rem;
      font-weight: 800;
      text-align: center;
      position: relative;
      display: inline-block;
    }
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 50%;
      transform: translateX(-50%);
      width: 50px;
      height: 3px;
      background: var(--primary-gradient);
      border-radius: 4px;
    }
    .section-title .highlight {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-subtitle {
      text-align: center;
      color: #6c757d;
      max-width: 700px;
      margin: 10px auto 0;
      font-size: 0.85rem;
    }

    @media (min-width: 768px) {
      .section-title { font-size: 2.2rem; }
      .section-title::after { width: 70px; height: 3px; }
    }

    /* ============================================================
       LOCAL SEO CONTENT BLOCK
       ============================================================ */
    .local-seo-block {
      padding: 25px 0;
      background: #ffffff;
      border-bottom: 1px solid rgba(245,115,39,0.08);
    }
    .local-seo-block h2 {
      font-size: 1.3rem;
      font-weight: 700;
      color: #1a1a2e;
      text-align: center;
      margin-bottom: 10px;
    }
    .local-seo-block h2 span {
      color: var(--primary);
    }
    .local-seo-block p {
      font-size: 0.85rem;
      color: #6c757d;
      line-height: 1.8;
      text-align: center;
      max-width: 850px;
      margin: 0 auto;
    }
    .local-seo-block .keywords {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-top: 12px;
    }
    .local-seo-block .keywords span {
      background: rgba(245,115,39,0.08);
      color: var(--primary);
      padding: 3px 14px;
      border-radius: 20px;
      font-size: 10px;
      font-weight: 600;
    }

    /* ============================================================
       RESULTS GRID - FULLY RESPONSIVE
       ============================================================ */
    .results-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 20px;
    }

    @media (min-width: 576px) {
      .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    @media (min-width: 992px) {
      .results-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
      }
    }

    .result-card {
      background: #fff;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      border: 1px solid rgba(245,115,39,0.06);
      display: flex;
      flex-direction: column;
    }
    .result-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }
    .result-card .result-image {
      position: relative;
      overflow: hidden;
      height: 180px;
      flex-shrink: 0;
    }
    .result-card .result-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .result-card:hover .result-image img {
      transform: scale(1.05);
    }
    .result-card .result-image .result-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      padding: 3px 14px;
      border-radius: 50px;
      font-size: 9px;
      font-weight: 700;
      color: #fff;
      background: var(--primary-gradient);
      text-transform: uppercase;
    }
    .result-card .result-body {
      padding: 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .result-card .result-body h3 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 3px;
      color: #1a1a2e;
    }
    .result-card .result-body .result-meta {
      display: flex;
      gap: 10px;
      font-size: 11px;
      color: #6c757d;
      margin-bottom: 6px;
      flex-wrap: wrap;
    }
    .result-card .result-body .result-meta i {
      color: var(--primary);
      margin-right: 3px;
    }
    .result-card .result-body .result-desc {
      font-size: 0.8rem;
      color: #6c757d;
      line-height: 1.5;
      flex: 1;
    }
    .result-card .result-body .result-btn {
      display: inline-block;
      padding: 6px 16px;
      border-radius: 30px;
      background: var(--primary-gradient);
      color: #fff;
      font-weight: 600;
      font-size: 11px;
      transition: all 0.3s ease;
      margin-top: 10px;
      text-align: center;
      align-self: center;
      touch-action: manipulation;
    }
    .result-card .result-body .result-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(245,115,39,0.35);
    }
    .result-card .result-body .result-btn:active {
      transform: scale(0.96);
    }

    @media (max-width: 480px) {
      .result-card .result-image { height: 150px; }
      .result-card .result-body { padding: 12px; }
      .result-card .result-body h3 { font-size: 0.85rem; }
    }

    /* ============================================================
       OVERALL STATS - FULLY RESPONSIVE
       ============================================================ */
    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 20px;
    }

    .stat-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 20px 15px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: all 0.4s ease;
      border: 1px solid rgba(245,115,39,0.06);
    }
    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
      border-color: var(--primary);
    }
    .stat-card .icon {
      font-size: 2rem;
      color: var(--primary);
      margin-bottom: 6px;
    }
    .stat-card .num {
      font-size: 2rem;
      font-weight: 900;
      color: var(--primary);
    }
    .stat-card .label {
      font-size: 0.9rem;
      font-weight: 600;
      margin-top: 3px;
      color: #1a1a2e;
    }
    .stat-card .desc {
      font-size: 0.75rem;
      color: #6c757d;
      margin-top: 3px;
    }

    @media (min-width: 576px) {
      .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
    }

    @media (max-width: 480px) {
      .stat-card { padding: 14px 10px; }
      .stat-card .num { font-size: 1.5rem; }
      .stat-card .icon { font-size: 1.5rem; }
      .stat-card .label { font-size: 0.75rem; }
    }

    /* ============================================================
       SUCCESS STORIES - FULLY RESPONSIVE
       ============================================================ */
    .story-card {
      background: #1a1a2e;
      border: 1px solid rgba(245,115,39,0.15);
      border-radius: var(--radius);
      padding: 20px 16px;
      text-align: center;
      transition: all 0.4s ease;
    }
    .story-card:hover {
      transform: translateY(-6px);
      border-color: var(--primary);
      box-shadow: var(--shadow-hover);
    }
    .story-card .avatar {
      font-size: 2.5rem;
      margin-bottom: 6px;
    }
    .story-card h3 {
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
    }
    .story-card .story-meta {
      color: #94a3b8;
      font-size: 11px;
      margin-bottom: 6px;
    }
    .story-card .story-desc {
      color: #94a3b8;
      font-size: 0.8rem;
      line-height: 1.6;
    }
    .story-card .story-badge {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 30px;
      background: var(--primary-gradient);
      color: #fff;
      font-size: 11px;
      font-weight: 600;
      margin-top: 8px;
    }

/* ============================================================
       FLOATING ELEMENTS - FULLY RESPONSIVE
       ============================================================ */
    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 36px;
      height: 36px;
      background: var(--primary-gradient);
      border: none;
      border-radius: 50%;
      color: #fff;
      font-size: 14px;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
      z-index: 1000;
      box-shadow: 0 4px 15px rgba(245,115,39,0.3);
      touch-action: manipulation;
    }
    .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
    .back-to-top:active { transform: scale(0.9); }

    .whatsapp-float {
      position: fixed;
      bottom: 70px;
      right: 20px;
      z-index: 999;
      background: linear-gradient(135deg, #25d366, #128C7E);
      color: #fff;
      padding: 8px 14px;
      border-radius: 50px;
      box-shadow: 0 8px 30px rgba(37,211,102,0.35);
      display: flex;
      align-items: center;
      gap: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
      animation: floatWA 3s ease-in-out infinite;
      font-size: 11px;
      touch-action: manipulation;
    }
    @keyframes floatWA {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }
    .whatsapp-float:hover { transform: scale(1.05); color: #fff; }

    .floating-contact {
      position: fixed;
      bottom: 120px;
      right: 20px;
      z-index: 998;
    }
    .contact-toggle {
      width: 38px;
      height: 38px;
      background: var(--primary-gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(245,115,39,0.3);
      animation: pulse 2s infinite;
      touch-action: manipulation;
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 4px 15px rgba(245,115,39,0.3); }
      50% { box-shadow: 0 4px 25px rgba(245,115,39,0.5); }
    }
    .contact-options {
      position: absolute;
      bottom: 48px;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 5px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
    }
    .floating-contact:hover .contact-options {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .contact-option {
      background: #fff;
      color: #1a1a2e;
      padding: 5px 12px;
      border-radius: 30px;
      font-size: 10px;
      font-weight: 600;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 5px;
      transition: all 0.3s ease;
      touch-action: manipulation;
    }
    .contact-option:hover {
      background: var(--primary-gradient);
      color: #fff;
      transform: translateX(-4px);
    }

    @media (min-width: 768px) {
      .whatsapp-float {
        bottom: 80px;
        right: 25px;
        padding: 10px 18px;
        font-size: 13px;
      }
      .floating-contact { bottom: 135px; right: 25px; }
      .contact-toggle { width: 44px; height: 44px; font-size: 18px; }
      .back-to-top { bottom: 25px; right: 25px; width: 40px; height: 40px; font-size: 16px; }
    }

    @media (max-width: 480px) {
      .whatsapp-float {
        bottom: 60px;
        right: 10px;
        padding: 6px 12px;
        font-size: 10px;
      }
      .floating-contact { bottom: 105px; right: 10px; }
      .contact-toggle { width: 34px; height: 34px; font-size: 14px; }
      .contact-option { font-size: 9px; padding: 4px 10px; }
    }

    /* ============================================================
       ENQUIRY POPUP - FULLY RESPONSIVE
       ============================================================ */
    .enquiry-btn {
      position: fixed;
      bottom: 15px;
      left: 15px;
      z-index: 9999;
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 700;
      border-radius: 50px;
      border: 0;
      cursor: pointer;
      background: var(--primary-gradient);
      color: #fff;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
      animation: slideIn 0.8s forwards, pulseBtn 2.2s infinite 1s;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }
    @keyframes slideIn {
      from { opacity: 0; transform: translateY(100px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulseBtn {
      0%,100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    .enquiry-btn:active { transform: scale(0.96); }

    .popup {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 100000;
      background: rgba(0,0,0,0.7);
      align-items: center;
      justify-content: center;
      padding: 15px;
      opacity: 0;
      transition: opacity 0.3s ease;
      -webkit-backdrop-filter: blur(4px);
      backdrop-filter: blur(4px);
    }
    .popup.show {
      display: flex;
      opacity: 1;
    }
    .popup-content {
      width: 100%;
      max-width: 340px;
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      text-align: center;
      position: relative;
      transform: scale(0.7);
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease;
      max-height: 90vh;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .popup.show .popup-content {
      transform: scale(1);
      opacity: 1;
    }
    .close-btn {
      position: absolute;
      top: 8px;
      right: 12px;
      border: 0;
      background: none;
      font-size: 22px;
      cursor: pointer;
      color: #555;
      padding: 8px;
      line-height: 1;
      -webkit-tap-highlight-color: transparent;
      z-index: 10;
      touch-action: manipulation;
    }
    .popup-content h2 {
      color: var(--primary);
      margin: 4px 0 10px;
      font-size: 17px;
    }
    .popup-content input,
    .popup-content textarea,
    .popup-content select {
      width: 100%;
      padding: 10px 12px;
      margin: 6px 0;
      border-radius: 8px;
      border: 1.5px solid #ddd;
      font-size: 15px;
      transition: border-color 0.3s ease;
      -webkit-appearance: none;
      appearance: none;
      background: #fff;
      -webkit-user-select: text !important;
      -moz-user-select: text !important;
      -ms-user-select: text !important;
      user-select: text !important;
    }
    .popup-content input:focus,
    .popup-content textarea:focus,
    .popup-content select:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(245,115,39,0.15);
    }
    .popup-content textarea {
      resize: vertical;
      min-height: 60px;
    }
    .submit-btn {
      width: 100%;
      padding: 12px;
      border-radius: 8px;
      border: 0;
      cursor: pointer;
      font-weight: 700;
      background: var(--primary-gradient);
      color: #fff;
      margin-top: 8px;
      transition: all 0.3s ease;
      font-size: 15px;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
    }
    .submit-btn:active {
      transform: scale(0.98);
    }
    .success-msg {
      display: none;
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 150000;
      background: #e0f7fa;
      color: #00796b;
      padding: 16px 24px;
      border-radius: 10px;
      font-weight: 600;
      box-shadow: 0 8px 25px rgba(0,0,0,0.2);
      font-size: 14px;
    }

    @media (max-width: 768px) {
      .enquiry-btn {
        bottom: 10px;
        left: 10px;
        padding: 8px 16px;
        font-size: 12px;
        z-index: 9999;
      }
      .popup-content {
        padding: 16px;
        max-width: 300px;
      }
      .popup-content input,
      .popup-content textarea,
      .popup-content select {
        font-size: 16px;
        padding: 10px 12px;
      }
      .close-btn {
        font-size: 24px;
        top: 6px;
        right: 10px;
        padding: 6px;
      }
      .popup-content h2 {
        font-size: 16px;
      }
      .submit-btn {
        font-size: 14px;
        padding: 10px;
      }
    }

    @media (max-width: 480px) {
      .enquiry-btn {
        bottom: 8px;
        left: 8px;
        padding: 6px 14px;
        font-size: 11px;
      }
      .popup-content {
        padding: 14px;
        max-width: 280px;
      }
      .popup-content input,
      .popup-content textarea,
      .popup-content select {
        font-size: 15px;
        padding: 8px 10px;
        margin: 4px 0;
      }
      .success-msg {
        font-size: 12px;
        padding: 12px 18px;
      }
    }

    /* ============================================================
       UTILITY CLASSES
       ============================================================ */
    .text-center { text-align: center; }
    .mb-4 { margin-bottom: 25px; }
    .me-2 { margin-right: 8px; }
    .text-white-50 { color: rgba(255,255,255,0.5); }
    .py-1 { padding-top: 20px; padding-bottom: 20px; }
    .py-2 { padding-top: 40px; padding-bottom: 40px; }
    .bg-light { background: #f5f7fb; }
    .bg-white { background: #fff; }
    .bg-dark-section {
      background: linear-gradient(135deg, #0a0a1a, #1a1a3e);
    }
