
        body:not(.dark-mode):not(.light-mode) { background-color: #f8f9fa; }
        body.theme-transition *:not(.fa-solid, .fa-regular, .fa-light, .fa-thin, .fa-duotone, .fa-brands) {
            transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        fill 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        stroke 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        }

        /* Adjust for fixed header */
        body {
            padding-top: 68px; /* height of the fixed nav */
        }
        @media (max-width: 768px) {
            body {
                padding-top: 60px;
            }
        }

        /* Main content – remove any leftover dashboard margins */
        .main-content {
            margin-left: 0 !important;
            margin-top: 0 !important;
            min-height: calc(100vh - 68px);
            display: flex;
            align-items: center;
            background: transparent;
        }

        /* Enhanced contact card */
        .contact-card {
            max-width: 800px;
            margin: 2rem auto;
            border: none;
            border-radius: 2rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            overflow: hidden;
            position: relative;
        }

        .dark-mode .contact-card {
            background: rgba(30, 41, 59, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Decorative gradient line on top */
        .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #1a6fd4, #f07c1a, #10b981);
            z-index: 1;
        }

        /* Card inner padding */
        .contact-card .card-body {
            padding: 3rem 2.5rem;
        }

        /* Header styling */
        .contact-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .contact-header h2 {
            font-weight: 800;
            font-size: 2.2rem;
            background: linear-gradient(135deg, #1a6fd4, #f07c1a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
        }

        .contact-header p {
            color: #64748b;
            font-size: 1rem;
        }

        .dark-mode .contact-header p {
            color: #94a3b8;
        }

        /* Floating label groups (inspired by auth.css) */
        .floating-group {
            position: relative;
            margin-bottom: 1.2rem;
        }

        .floating-group .input-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
            z-index: 4;
            font-size: 1rem;
            transition: color 0.2s ease;
            pointer-events: none;
        }

        .floating-group.floating-textarea .input-icon {
            top: 24px;
            transform: none;
        }

        .floating-group input,
        .floating-group select,
        .floating-group textarea {
            width: 100%;
            padding: 16px 16px 16px 48px;
            font-size: 0.95rem;
            background: #ffffff;
            border: 2px solid #e2e8f0;
            border-radius: 16px;
            transition: all 0.3s ease;
            color: #1e293b;
            font-weight: 500;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
        }

        .dark-mode .floating-group input,
        .dark-mode .floating-group select,
        .dark-mode .floating-group textarea {
            background: #1e293b;
            border-color: #334155;
            color: #e2e8f0;
        }

        .floating-group textarea {
            padding-top: 20px;
            min-height: 120px;
            resize: vertical;
        }

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

        .dark-mode .floating-group select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23cbd5e1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        }

        .floating-group label {
            position: absolute;
            left: 48px;
            top: 16px;
            color: #64748b;
            font-size: 0.95rem;
            font-weight: 500;
            pointer-events: none;
            transition: all 0.2s ease;
            background: transparent;
            padding: 0 4px;
            z-index: 3;
        }

        .dark-mode .floating-group label {
            color: #94a3b8;
        }

        /* Floating state */
        .floating-group input:focus,
        .floating-group select:focus,
        .floating-group textarea:focus,
        .floating-group input:not(:placeholder-shown),
        .floating-group select:not([value=""]):valid,
        .floating-group textarea:not(:placeholder-shown) {
            border-color: #1a6fd4;
            box-shadow: 0 4px 12px rgba(26,111,212,0.15);
            outline: none;
        }

        .floating-group input:focus ~ label,
        .floating-group select:focus ~ label,
        .floating-group textarea:focus ~ label,
        .floating-group input:not(:placeholder-shown) ~ label,
        .floating-group select:not([value=""]):valid ~ label,
        .floating-group textarea:not(:placeholder-shown) ~ label {
            transform: translateY(-24px) translateX(-10px) scale(0.85);
            color: #1a6fd4;
            background: linear-gradient(135deg, #1a6fd4, #f07c1a);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 600;
        }

        .dark-mode .floating-group input:focus ~ label,
        .dark-mode .floating-group select:focus ~ label,
        .dark-mode .floating-group textarea:focus ~ label,
        .dark-mode .floating-group input:not(:placeholder-shown) ~ label,
        .dark-mode .floating-group select:not([value=""]):valid ~ label,
        .dark-mode .floating-group textarea:not(:placeholder-shown) ~ label {
            background: linear-gradient(135deg, #2d88f0, #f07c1a);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .floating-group input:focus ~ .input-icon,
        .floating-group select:focus ~ .input-icon,
        .floating-group textarea:focus ~ .input-icon,
        .floating-group input:not(:placeholder-shown) ~ .input-icon,
        .floating-group select:not([value=""]):valid ~ .input-icon,
        .floating-group textarea:not(:placeholder-shown) ~ .input-icon {
            color: #1a6fd4;
        }

        /* Submit button */
        .btn-submit {
            background: linear-gradient(135deg, #1a6fd4, #f07c1a);
            border: none;
            color: white;
            font-weight: 600;
            padding: 14px 28px;
            border-radius: 50px;
            width: 30%;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 8px 20px rgba(26,111,212,0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(26,111,212,0.4);
        }

        .btn-submit i {
            margin-right: 8px;
            transition: transform 0.3s ease;
        }

        .btn-submit:hover i {
            transform: translateX(4px);
        }

        /* Row spacing */
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        @media (max-width: 640px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }
            .contact-card .card-body {
                padding: 2rem 1.5rem;
            }
        }

        /* Placeholder styling */
        ::placeholder {
            color: transparent;
        }

        /* Remove spinner from number inputs */
        input[type=number]::-webkit-inner-spin-button,
        input[type=number]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        input[type=number] {
            -moz-appearance: textfield;
        }

        /* Ensure the hidden option works with :valid */
        .floating-group select option[value=""] {
            display: none;
        }

        .swal2-popup.custom-swal .swal2-confirm {
            background: linear-gradient(135deg, #1a6fd4, #f07c1a) !important;
            border: none !important;
            border-radius: 50px !important;
            padding: 12px 28px !important;
            font-weight: 600 !important;
            font-size: 1rem !important;
            box-shadow: 0 8px 20px rgba(26,111,212,0.3) !important;
            transition: all 0.3s ease !important;
        }

        .swal2-popup.custom-swal .swal2-confirm:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 12px 28px rgba(26,111,212,0.4) !important;
        }

        .swal2-popup.custom-swal .swal2-icon {
            transform: scale(1.2) !important;
            margin: 1rem auto !important;
            cursor: pointer !important;
        }

        .swal2-popup.custom-swal .swal2-icon-success {
            color: #10b981 !important;
            border-color: #10b981 !important;
        }

        .swal2-popup.custom-swal .swal2-icon-success [class^=swal2-success-line] {
            background-color: #10b981 !important;
        }

        .swal2-popup.custom-swal .swal2-icon-success .swal2-success-ring {
            border-color: rgba(16, 185, 129, 0.3) !important;
        }

    /* SERVICE MODAL STYLES */

    .sn-clickable-card { cursor: pointer; }

    /* ── Backdrop ── */
    #sn-modal-backdrop {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(8,16,32,0.82);
      backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
      display: none; align-items: flex-start; justify-content: center;
      padding: 0; overflow-y: auto;
      opacity: 0; transition: opacity 0.3s ease;
    }
    #sn-modal-backdrop.sn-open { display: flex; opacity: 1; }

    /* ── Panel — full-page style, single scrollable column ── */
    #sn-modal-panel {
      position: relative;
      width: 100%; max-width: 860px;
      min-height: 100vh;
      margin: 0 auto;
      background: #fff;
      box-shadow: 0 0 80px rgba(0,0,0,0.6);
      transform: translateY(40px); opacity: 0;
      transition: transform 0.42s cubic-bezier(0.34,1.4,0.64,1), opacity 0.32s ease;
      display: flex; flex-direction: column;
    }
    #sn-modal-backdrop.sn-open #sn-modal-panel {
      transform: translateY(0); opacity: 1;
    }

    /* ── Close btn (top-right, always visible) ── */
    #sn-modal-close {
      position: fixed; top: 18px; right: calc(50% - 430px + 14px);
      z-index: 10001;
      width: 40px; height: 40px; border-radius: 50%; border: none;
      background: rgba(255,255,255,0.22); backdrop-filter: blur(6px);
      color: #fff; font-size: 1.1rem; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.2s, transform 0.25s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }
    #sn-modal-close:hover { background: rgba(255,255,255,0.38); transform: rotate(90deg) scale(1.1); }
    @media(max-width:900px){ #sn-modal-close { right: 14px; } }

    /* ══ HERO BAND ══ */
    .snp-hero {
      position: relative; overflow: hidden;
      padding: 4rem 3rem 3.5rem;
      display: flex; flex-direction: column; gap: 0;
    }
    .snp-hero-orb1 {
      position: absolute; width: 340px; height: 340px; border-radius: 50%;
      background: rgba(255,255,255,0.08); top: -100px; right: -80px; pointer-events: none;
    }
    .snp-hero-orb2 {
      position: absolute; width: 200px; height: 200px; border-radius: 50%;
      background: rgba(255,255,255,0.06); bottom: -60px; left: -40px; pointer-events: none;
    }
    /* themes */
    .snp-theme-rcs      { background: linear-gradient(135deg,#0a1f44 0%,#1a6fd4 55%,#3b9eff 100%); }
    .snp-theme-email    { background: linear-gradient(135deg,#5c1500 0%,#f07c1a 55%,#ffb347 100%); }
    .snp-theme-whatsapp { background: linear-gradient(135deg,#022c22 0%,#10b981 55%,#4ade80 100%); }

    .snp-hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.3);
      border-radius: 50px; padding: 6px 16px;
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: #fff; width: fit-content; margin-bottom: 1.5rem;
    }
    .snp-hero h1 {
      font-family: 'Sora',sans-serif; font-size: 2.6rem; font-weight: 800;
      color: #fff; line-height: 1.15; margin-bottom: 1rem;
    }
    .snp-hero-desc {
      font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.85);
      max-width: 560px; margin-bottom: 2rem;
    }

    /* Hero stat pills */
    .snp-hero-pills {
      display: flex; flex-wrap: wrap; gap: 10px;
    }
    .snp-pill {
      display: flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.25);
      border-radius: 50px; padding: 8px 18px; color: #fff;
    }
    .snp-pill-num { font-family: 'Sora',sans-serif; font-size: 1.1rem; font-weight: 800; }
    .snp-pill-lbl { font-size: 0.78rem; opacity: 0.85; }

    /* ══ FEATURES SECTION ══ */
    .snp-section {
      padding: 3rem 3rem;
      border-bottom: 1px solid #f0f4f8;
    }
    .snp-section-tag {
      display: inline-block; background: linear-gradient(135deg,rgba(26,111,212,0.1),rgba(240,124,26,0.1));
      border: 1px solid rgba(26,111,212,0.15); border-radius: 50px;
      padding: 4px 14px; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.07em; text-transform: uppercase; color: #1a6fd4;
      margin-bottom: 1rem;
    }
    .snp-section h2 {
      font-family: 'Sora',sans-serif; font-size: 1.6rem; font-weight: 800;
      color: #0d1b2e; margin-bottom: 0.5rem; line-height: 1.2;
    }
    .snp-section-sub { font-size: 0.9rem; color: #64748b; margin-bottom: 2rem; line-height: 1.6; }

    /* Feature grid */
    .snp-feat-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
    }
    .snp-feat-item {
      display: flex; align-items: flex-start; gap: 14px;
      background: #f8fafc; border: 1px solid #e8eef6;
      border-radius: 16px; padding: 16px 18px;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .snp-feat-item:hover { box-shadow: 0 6px 20px rgba(26,111,212,0.1); transform: translateY(-2px); }
    .snp-feat-ico {
      flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.95rem;
    }
    .snp-feat-ico.ico-blue  { background: rgba(26,111,212,0.12); color: #1a6fd4; }
    .snp-feat-ico.ico-orange{ background: rgba(240,124,26,0.12);  color: #f07c1a; }
    .snp-feat-ico.ico-green { background: rgba(16,185,129,0.12);  color: #10b981; }
    .snp-feat-body h5 { font-family: 'Sora',sans-serif; font-size: 0.88rem; font-weight: 700; color: #0d1b2e; margin-bottom: 3px; }
    .snp-feat-body p  { font-size: 0.8rem; color: #64748b; line-height: 1.5; }

    /* ══ HOW IT WORKS ══ */
    .snp-steps {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 12px;
    }
    .snp-step {
      background: #f8fafc; border: 1px solid #e8eef6;
      border-radius: 16px; padding: 18px 16px; text-align: center;
    }
    .snp-step-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      background: linear-gradient(135deg,#1a6fd4,#f07c1a);
      color: #fff; font-family: 'Sora',sans-serif; font-size: 0.8rem; font-weight: 800;
      margin: 0 auto 10px; 
    }
    .snp-step h5 { font-family: 'Sora',sans-serif; font-size: 0.82rem; font-weight: 700; color: #0d1b2e; margin-bottom: 5px; }
    .snp-step p  { font-size: 0.75rem; color: #64748b; line-height: 1.45; }

    /* ══ TESTIMONIAL / TRUST STRIP ══ */
    .snp-trust {
      display: flex; align-items: center; gap: 12px;
      background: linear-gradient(135deg,rgba(26,111,212,0.05),rgba(240,124,26,0.05));
      border: 1px solid rgba(26,111,212,0.12);
      border-radius: 16px; padding: 16px 20px;
      margin-bottom: 0;
    }
    .snp-trust-ico { font-size: 1.6rem; }
    .snp-trust-text strong { font-family:'Sora',sans-serif; font-size:0.9rem; font-weight:700; color:#0d1b2e; display:block; margin-bottom:2px; }
    .snp-trust-text span { font-size:0.8rem; color:#64748b; }

    /* ══ CONTACT FORM SECTION ══ */
    .snp-contact-section {
      padding: 3rem 3rem 4rem;
      background: #fff;
    }
    .snp-contact-header {
      text-align: center; margin-bottom: 2rem;
    }
    .snp-contact-header h2 {
      font-family: 'Sora',sans-serif; font-size: 1.8rem; font-weight: 800;
      background: linear-gradient(135deg,#1a6fd4,#f07c1a);
      -webkit-background-clip: text; background-clip: text; color: transparent;
      margin-bottom: 0.4rem;
    }
    .snp-contact-header p { color:#64748b; font-size:0.9rem; }

    /* Divider */
    .snp-divider {
      height: 4px; margin: 0 3rem;
      background: linear-gradient(90deg,#1a6fd4,#f07c1a,#10b981);
      border-radius: 2px;
    }

    /* Floating groups (re-used from before) */
    .sn-fg { position: relative; margin-bottom: 1rem; }
    .sn-ico {
      position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
      color: #94a3b8; font-size: 0.88rem; z-index: 4; pointer-events: none; transition: color 0.2s;
    }
    .sn-fg.sn-ta .sn-ico { top: 18px; transform: none; }
    .sn-fg input, .sn-fg select, .sn-fg textarea {
      width: 100%; padding: 14px 14px 14px 40px;
      font-size: 0.9rem; font-family: 'DM Sans',sans-serif; font-weight: 500;
      background: #f8fafc; border: 2px solid #e2e8f0; border-radius: 13px;
      color: #1e293b; outline: none; -webkit-appearance: none; appearance: none;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.2s;
    }
    .sn-fg textarea { padding-top: 18px; min-height: 100px; resize: vertical; }
    .sn-fg select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
      background-size: 14px; background-color: #f8fafc;
    }
    .sn-fg label {
      position: absolute; left: 40px; top: 14px; color: #64748b;
      font-size: 0.88rem; font-weight: 500; pointer-events: none;
      transition: all 0.2s ease; z-index: 3; font-family: 'DM Sans',sans-serif;
    }
    .sn-fg input:focus, .sn-fg select:focus, .sn-fg textarea:focus,
    .sn-fg input:not(:placeholder-shown), .sn-fg select.sn-has-val,
    .sn-fg textarea:not(:placeholder-shown) {
      border-color: #1a6fd4; box-shadow: 0 4px 14px rgba(26,111,212,0.12); background: #fff;
    }
    .sn-fg input:focus ~ label, .sn-fg select:focus ~ label, .sn-fg textarea:focus ~ label,
    .sn-fg input:not(:placeholder-shown) ~ label, .sn-fg select.sn-has-val ~ label,
    .sn-fg textarea:not(:placeholder-shown) ~ label {
      transform: translateY(-22px) translateX(-8px) scale(0.8);
      background: linear-gradient(135deg,#1a6fd4,#f07c1a);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent; font-weight: 700;
    }
    .sn-fg input:focus ~ .sn-ico, .sn-fg select:focus ~ .sn-ico, .sn-fg textarea:focus ~ .sn-ico,
    .sn-fg input:not(:placeholder-shown) ~ .sn-ico, .sn-fg select.sn-has-val ~ .sn-ico,
    .sn-fg textarea:not(:placeholder-shown) ~ .sn-ico { color: #1a6fd4; }
    .sn-fg input::placeholder, .sn-fg textarea::placeholder { color: transparent; }
    .sn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }

    .sn-submit {
      width: 100%; margin-top: 0.5rem; padding: 15px 28px; border: none;
      border-radius: 50px; background: linear-gradient(135deg,#1a6fd4,#f07c1a);
      color: #fff; font-family: 'Sora',sans-serif; font-size: 1rem; font-weight: 700;
      cursor: pointer; box-shadow: 0 8px 22px rgba(26,111,212,0.28);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .sn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26,111,212,0.38); }
    .sn-submit i { margin-right: 8px; }

    /* SweetAlert */
    .swal2-popup.sn-swal .swal2-confirm {
      background: linear-gradient(135deg,#1a6fd4,#f07c1a) !important;
      border: none !important; border-radius: 50px !important;
      padding: 12px 28px !important; font-weight: 700 !important;
    }

    /* ── Responsive ── */
    @media (max-width: 640px) {
      .snp-hero { padding: 3rem 1.6rem 2.5rem; }
      .snp-hero h1 { font-size: 1.9rem; }
      .snp-section { padding: 2rem 1.6rem; }
      .snp-feat-grid { grid-template-columns: 1fr; }
      .snp-steps { grid-template-columns: 1fr 1fr; }
      .snp-contact-section { padding: 2rem 1.6rem 3rem; }
      .snp-divider { margin: 0 1.6rem; }
      .sn-row { grid-template-columns: 1fr; gap: 0; }
    }
