/* ================================================================
   contact.css — Unified styles for contact.html
   Modern Age Coders
   ================================================================ */

/* ----------------------------------------------------------------
   0. NAVBAR HEIGHT OFFSET — used by hero/main content
   ---------------------------------------------------------------- */
:root {
    --navbar-height: 70px;
}

/* ----------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (design tokens)
   ---------------------------------------------------------------- */
:root {
    /* Brand colors */
    --accent-purple: #a855f7;
    --accent-teal: #4ecdc4;
    --accent-gold: #f59e0b;

    /* Glow colors */
    --primary-glow-color: rgba(168, 85, 247, 0.5);
    --secondary-glow-color: rgba(78, 205, 196, 0.4);
    --math-glow-color: rgba(255, 165, 0, 0.5);
    --ai-glow-color: rgba(236, 72, 153, 0.5);

    /* Glass morphism */
    --glass-bg-dark: rgba(8, 8, 16, 0.9);
    --glass-bg-light: rgba(16, 16, 28, 0.8);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-blur: 20px;
    --glass-hover-bg-light: rgba(24, 24, 40, 0.9);
    --glass-hover-border: rgba(255, 255, 255, 0.2);
    --glass-hover-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);

    /* Contact page specific */
    --card-bg: rgba(30, 30, 50, 0.6);
    --card-border: rgba(168, 85, 247, 0.2);

    /* Typography */
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #94A3B8;

    /* Font scales */
    --heading-primary: clamp(2.5rem, 5vw, 4rem);
    --heading-secondary: clamp(2rem, 4vw, 3rem);
    --heading-tertiary: clamp(1.5rem, 3vw, 2rem);
    --body-large: clamp(1.125rem, 2vw, 1.25rem);
    --body-regular: clamp(1rem, 1.5vw, 1.125rem);
    --body-small: clamp(0.875rem, 1.2vw, 1rem);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --section-gap: clamp(4rem, 8vw, 8rem);
    --card-gap: clamp(1.5rem, 3vw, 2.5rem);

    /* Border radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-2xl: 2rem;

    /* Transitions */
    --card-hover-transform: translateY(-8px) scale(1.02);
    --transition-speed: 0.3s;
    --transition-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --animation-duration-fast: 0.2s;
    --animation-duration-normal: 0.3s;
    --animation-duration-slow: 0.5s;

    /* Layout */
    --content-max-width: 1200px;
    --text-max-width: 65ch;
}

/* ----------------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000002;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

::selection {
    background: var(--primary-glow-color);
    color: #fff;
}

*:focus-visible {
    outline: 2px solid var(--primary-glow-color);
    outline-offset: 2px;
    border-radius: var(--border-radius-sm);
}

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------------- */
h1,
.h1 {
    font-size: var(--heading-primary);
    font-weight: 800;
    line-height: 1.1;
}

h2,
.h2 {
    font-size: var(--heading-secondary);
    font-weight: 700;
    line-height: 1.2;
}

h3,
.h3 {
    font-size: var(--heading-tertiary);
    font-weight: 600;
    line-height: 1.3;
}

h4,
.h4 {
    font-size: var(--body-large);
    font-weight: 600;
    line-height: 1.4;
}

h5,
.h5 {
    font-size: var(--body-regular);
    font-weight: 600;
    line-height: 1.4;
}

h6,
.h6 {
    font-size: var(--body-small);
    font-weight: 600;
    line-height: 1.4;
}

p {
    font-size: var(--body-regular);
    line-height: 1.6;
    color: var(--text-secondary);
}

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

.text-muted {
    color: var(--text-muted);
}

/* ----------------------------------------------------------------
   4. SKIP LINK
   ---------------------------------------------------------------- */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent-purple);
    color: #fff;
    padding: 8px 16px;
    z-index: 100000;
    border-radius: 0 0 var(--border-radius-sm) 0;
    transition: top 0.2s;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ----------------------------------------------------------------
   5. SCROLLBAR (WebKit)
   ---------------------------------------------------------------- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(16, 16, 28, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(168, 85, 247, 0.5);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(168, 85, 247, 0.7);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(168, 85, 247, 0.5) rgba(16, 16, 28, 0.3);
}

/* ----------------------------------------------------------------
   6. BACKGROUND CANVAS
   ---------------------------------------------------------------- */
#background-canvas {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    overflow: hidden !important;
    z-index: -1 !important;
}

/* ----------------------------------------------------------------
   7. CONTACT PAGE WRAPPER
   ---------------------------------------------------------------- */
.contact-page {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
}

.contact-page main,
.contact-page #main {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* ----------------------------------------------------------------
   8. NAVBAR
   ---------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    background: rgba(10, 10, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

nav {
    width: 100%;
    z-index: 1000;
    position: relative;
}

.navbar {
    z-index: 9999;
    background: transparent;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-speed) var(--transition-timing);
    width: 100%;
    position: relative;
}

.navbar:hover {
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.2);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0.875rem 1.75rem;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Logo */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    max-height: 60px;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-img {
    width: 45px !important;
    height: 45px !important;
    max-width: 45px !important;
    max-height: 45px !important;
    min-width: 45px;
    min-height: 45px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.6));
}

.logo-text {
    font-weight: 700;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #ffffff, #E0E7FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

/* Nav menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-self: end;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 0.625rem 1.25rem;
    text-decoration: none;
    color: #CBD5E1;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-link.active {
    color: #a855f7;
    background: rgba(168, 85, 247, 0.2);
    border: 1px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}

.nav-link:hover {
    color: white;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.nav-link.active:hover {
    background: rgba(168, 85, 247, 0.3);
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.nav-link svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* Dropdown */
.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 15px;
    background: transparent;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(10, 10, 20, 0.98);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-md);
    padding: 0.5rem;
    padding-top: 0.75rem;
    min-width: 200px;
    box-shadow: var(--glass-shadow);
    z-index: 1000;
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    margin-top: 5px;
}

.dropdown:hover .dropdown-content,
.dropdown.dropdown-open .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
}

.dropdown-item:hover {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.1);
}

.dropdown-item.highlight {
    color: var(--accent-purple);
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, #8A2BE2, #4A00E0);
    color: white;
    padding: 0.6rem 2rem !important;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: var(--body-small);
    transition: all var(--transition-speed) ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 25px var(--primary-glow-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    min-height: 44px;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px var(--primary-glow-color);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10000;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Callback nav button */
.callback-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    white-space: nowrap;
}

.callback-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.callback-nav-btn svg {
    flex-shrink: 0;
}

/* ----------------------------------------------------------------
   9. CALLBACK MODAL (uses inline styles from nav component)
   ---------------------------------------------------------------- */

/* ----------------------------------------------------------------
   10. CONTACT HERO
   ---------------------------------------------------------------- */
.contact-hero {
    text-align: center;
    padding-top: calc(var(--navbar-height) + 4rem);
    padding-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    max-width: 800px;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-hero h1 span {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
    max-width: 700px;
}

/* ----------------------------------------------------------------
   11. CONTACT MAIN GRID
   ---------------------------------------------------------------- */
.contact-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    overflow-x: hidden;
    box-sizing: border-box;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* ----------------------------------------------------------------
   12. FORM CARD
   ---------------------------------------------------------------- */
.form-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-sizing: border-box;
}

.form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-card>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-form-new {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-new label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.form-input.error {
    border-color: #ef4444;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* Submit button */
.submit-btn-new {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
}

.submit-btn-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}

.submit-btn-new:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.submit-btn-new svg {
    width: 20px;
    height: 20px;
}

.send-icon {
    width: 18px;
    height: 18px;
}

/* Error messages */
.error-msg {
    color: #ef4444;
    font-size: 0.85rem;
    display: none;
}

/* Spinner */
.btn-loader {
    display: none;
}

.spinner {
    animation: rotate 1s linear infinite;
    width: 20px;
    height: 20px;
}

.spinner .path {
    stroke: white;
    stroke-linecap: round;
    animation: dash 1.5s ease-in-out infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

/* Form feedback */
.form-feedback {
    display: none;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.form-feedback.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-feedback.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.form-feedback p {
    margin: 0;
    flex: 1;
}

.form-feedback.success p {
    color: #22c55e;
}

.form-feedback.error p {
    color: #ef4444;
}

.feedback-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

/* ----------------------------------------------------------------
   13. INFO CARD
   ---------------------------------------------------------------- */
.info-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-sizing: border-box;
}

.info-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.info-content h3 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-content p,
.info-content a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--accent-purple);
}

.info-content .office-hours-closed {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* ----------------------------------------------------------------
   14. SOCIAL LINKS
   ---------------------------------------------------------------- */
.social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    max-width: 100%;
}

.social-section h3 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0d5dbf);
}

.social-link.instagram {
    background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #005582);
}

.social-link.github {
    background: linear-gradient(135deg, #333, #1a1a1a);
}

/* ----------------------------------------------------------------
   15. QUICK CONTACT SECTION
   ---------------------------------------------------------------- */
.quick-contact {
    padding: 3rem 2rem !important;
    background: rgba(168, 85, 247, 0.05) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    overflow-x: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.quick-contact-inner {
    max-width: 1100px !important;
    margin: 0 auto !important;
    display: block !important;
    visibility: visible !important;
}

.section-header {
    text-align: center !important;
    margin-bottom: 2.5rem !important;
    display: block !important;
    visibility: visible !important;
}

.section-header h2 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    color: var(--text-primary) !important;
    margin-bottom: 0.75rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.section-header p {
    color: var(--text-secondary) !important;
    font-size: 1.05rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 600px !important;
}

.quick-cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.quick-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-sizing: border-box;
    max-width: 100%;
}

.quick-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--accent-purple) !important;
    box-shadow: 0 15px 30px rgba(168, 85, 247, 0.15) !important;
}

.quick-card-icon {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-teal)) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.25rem !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.quick-card-icon svg {
    width: 30px !important;
    height: 30px !important;
    stroke: white !important;
    fill: none !important;
    stroke-width: 2 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.quick-card h3 {
    color: var(--text-primary) !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.quick-card p {
    color: var(--text-secondary) !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ----------------------------------------------------------------
   16. FAQ SECTION
   ---------------------------------------------------------------- */
.faq-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    overflow-x: hidden;
    box-sizing: border-box;
}

.faq-section .section-header {
    margin-bottom: 0;
}

.faq-list {
    margin-top: 2rem;
    max-width: 100%;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--accent-purple);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-purple);
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question svg,
.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s ease-out, padding 0.3s ease, opacity 0.3s ease !important;
    padding: 0 1.5rem !important;
    opacity: 0 !important;
}

.faq-item.open .faq-answer,
.faq-item.active .faq-answer {
    max-height: 500px !important;
    padding: 0 1.5rem 1.25rem !important;
    opacity: 1 !important;
}

.faq-answer p,
.faq-item.open .faq-answer p,
.faq-item.active .faq-answer p {
    color: var(--text-secondary) !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    padding-top: 0.5rem !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* ----------------------------------------------------------------
   17. COMPARISON TABLE SECTION
   ---------------------------------------------------------------- */
.comparison-section {
    position: relative;
    overflow: hidden;
    padding: 5rem 1.5rem;
    box-sizing: border-box;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50%;
    background: radial-gradient(ellipse at center top, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.comparison-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.comparison-header p {
    font-size: 1.1rem;
    color: rgba(148, 163, 184, 0.9);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.comparison-table-wrapper {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.15);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3) 0%, rgba(78, 205, 196, 0.3) 100%);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.comparison-table th:first-child {
    text-align: left;
    padding-left: 2rem;
    width: 40%;
}

.comparison-table th.modern-age-header {
    width: 30%;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.5) 0%, rgba(139, 92, 246, 0.5) 100%);
    position: relative;
}

.comparison-table th.others-header {
    width: 30%;
    background: rgba(100, 116, 139, 0.3);
    color: rgba(226, 232, 240, 0.8);
    padding-right: 2rem;
}

.comparison-table tbody tr {
    transition: all 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(168, 85, 247, 0.08);
}

.comparison-table tbody tr:not(:last-child) {
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.comparison-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
}

.comparison-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
}

.comparison-table thead tr th:first-child {
    border-top-left-radius: 20px;
}

.comparison-table thead tr th:last-child {
    border-top-right-radius: 20px;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 1rem;
    color: #e2e8f0;
}

.comparison-table td:first-child {
    text-align: left;
    padding-left: 2rem;
    font-weight: 500;
    color: #f1f5f9;
}

.comparison-table td:last-child {
    padding-right: 2rem;
}

.comparison-table td.modern-age-col {
    background: rgba(168, 85, 247, 0.05);
}

/* Icons */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.check-icon svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 3;
}

.cross-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.4);
}

.cross-icon svg {
    width: 16px;
    height: 16px;
    stroke: #ef4444;
    stroke-width: 2.5;
}

.partial-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.4);
    color: #f59e0b;
    font-weight: 700;
    font-size: 1.2rem;
}

/* CTA below table */
.comparison-cta {
    text-align: center;
    margin-top: 3rem;
}

.comparison-cta h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.comparison-cta p {
    color: rgba(148, 163, 184, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #a855f7 0%, #8b5cf6 50%, #6366f1 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
    position: relative;
    overflow: hidden;
}

.demo-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.demo-button:hover::before {
    left: 100%;
}

.demo-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.5);
}

.demo-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.demo-button:hover svg {
    transform: translateX(3px);
}

/* ----------------------------------------------------------------
   18. FLOATING BUTTONS (Misti AI + WhatsApp)
   ---------------------------------------------------------------- */
.misti-chat-btn {
    position: fixed !important;
    bottom: 92px !important;
    right: 24px !important;
    z-index: 2147483646 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
}

.misti-label {
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
}

.misti-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    background: linear-gradient(135deg, #a855f7, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.misti-icon svg {
    min-width: 26px;
    min-height: 26px;
}

.wa-float-btn {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 2147483645 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    text-decoration: none !important;
}

.wa-label {
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
}

.wa-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.wa-icon svg {
    min-width: 26px;
    min-height: 26px;
}

.misti-chat-btn:hover .misti-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.misti-chat-btn:hover .misti-label {
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}

.wa-float-btn:hover .wa-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.wa-float-btn:hover .wa-label {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ----------------------------------------------------------------
   19. FOOTER
   ---------------------------------------------------------------- */

.site-footer {
    width: 100%;
    padding: 4rem 0 1.5rem 0;
    background: rgba(4, 4, 8, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-top: 5rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-column .logo {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.footer-tagline {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
    position: relative;
    display: inline-block;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Footer social links (overrides info-card social links in footer context) */
.site-footer .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer .social-links a {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--glass-border);
}

.site-footer .social-links a:hover {
    background: var(--primary-glow-color);
    color: #fff;
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 5px 20px var(--primary-glow-color);
}

.site-footer .social-links a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .footer-grid {
        text-align: center;
    }

    .site-footer .social-links,
    .footer-column .logo {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ----------------------------------------------------------------
   20. SECTION ANIMATIONS
   ---------------------------------------------------------------- */
.section {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--transition-timing);
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 0.8s forwards;
    animation-timing-function: var(--transition-timing);
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

/* Comparison section must be full-width, container inside centers */
.section.comparison-section {
    max-width: 100%;
    width: 100%;
}


.section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* ----------------------------------------------------------------
   21. ACCESSIBILITY
   ---------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
        transform: none !important;
    }

    .quick-card:hover,
    .demo-button:hover,
    .submit-btn-new:hover,
    .social-link:hover,
    .cta-button:hover {
        transform: none !important;
    }

    .form-feedback {
        animation: none !important;
    }

    *:focus-visible {
        transition: none !important;
        transform: none !important;
    }
}

/* ----------------------------------------------------------------
   22. RESPONSIVE — Tablet (max-width: 900px)
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------------------------------
   23. RESPONSIVE — Mobile (max-width: 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {

    /* Nav */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 20, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border: none;
        border-top: 1px solid var(--glass-border);
        padding: 2rem 1.5rem;
        gap: 0.75rem;
        overflow-y: auto;
        z-index: 9998;
    }

    .nav-menu.active {
        display: flex;
        animation: slideInUp 0.4s ease;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        text-align: left;
        font-size: 1.1rem;
        border: 1px solid rgba(168, 85, 247, 0.2);
        background: rgba(168, 85, 247, 0.05);
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 44px;
        transition: all 0.2s ease;
    }

    .nav-link:active {
        background: rgba(168, 85, 247, 0.2);
        border-color: rgba(168, 85, 247, 0.4);
        transform: scale(0.98);
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        align-items: center;
        width: 50px;
        height: 50px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 12px;
        z-index: 10000;
        transition: all 0.2s ease;
        margin-right: 0;
        margin-left: auto;
        flex-shrink: 0;
        position: relative;
    }

    .mobile-menu-btn:active {
        background: rgba(168, 85, 247, 0.1);
        border-radius: 8px;
        transform: scale(0.95);
    }

    .mobile-menu-btn span {
        display: block;
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 3px;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Hide the desktop hover bridge on mobile */
    .dropdown::after {
        display: none;
    }

    .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(168, 85, 247, 0.1);
        border: 1px solid rgba(168, 85, 247, 0.2);
        border-radius: 0.75rem;
        box-shadow: none;
        display: none;
        padding: 0.5rem;
        margin-top: 0.5rem;
        pointer-events: auto;
    }

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

    .dropdown.active .dropdown-content {
        display: block;
        animation: dropdownSlideIn 0.3s ease;
    }

    .dropdown-item {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        border-radius: 0.5rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
    }

    .callback-nav-btn span {
        display: none;
    }

    .callback-nav-btn {
        padding: 10px;
    }

    /* Contact page layout */
    html,
    body,
    .contact-page {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        position: relative !important;
    }

    .contact-hero {
        padding: 2.5rem 1rem 2rem !important;
        max-width: 100% !important;
    }

    .contact-hero h1 {
        font-size: 1.75rem;
    }

    .contact-hero p {
        font-size: 1rem !important;
        padding: 0 !important;
    }

    .contact-main {
        padding: 1.5rem 1rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        max-width: 100% !important;
    }

    .form-card,
    .info-card {
        padding: 1.25rem !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    /* Quick contact */
    .quick-contact {
        padding: 2rem 1rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .quick-contact-inner {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .quick-cards {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        max-width: 100% !important;
    }

    .quick-card {
        max-width: 100% !important;
        padding: 1.5rem !important;
        box-sizing: border-box !important;
    }

    /* Section header */
    .section-header h2 {
        font-size: 1.6rem;
    }

    /* FAQ */
    .faq-section {
        padding: 2.5rem 1rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .faq-list {
        max-width: 100% !important;
    }

    .faq-item {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .faq-question {
        padding: 1rem !important;
        font-size: 0.9rem !important;
    }

    /* Social */
    .social-links {
        justify-content: flex-start !important;
        gap: 0.5rem !important;
    }

    .social-link {
        width: 40px !important;
        height: 40px !important;
    }

    /* Info */
    .info-items {
        gap: 1rem !important;
    }

    .info-item {
        gap: 0.75rem !important;
    }

    .info-icon {
        width: 42px !important;
        height: 42px !important;
        flex-shrink: 0 !important;
    }

    .info-content h3 {
        font-size: 0.9rem !important;
    }

    .info-content p,
    .info-content a {
        font-size: 0.85rem !important;
        word-break: break-word !important;
    }

    /* Comparison */
    .comparison-section {
        padding: 2.5rem 0.75rem !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }

    .comparison-container {
        max-width: 100% !important;
        padding: 0 !important;
        overflow-x: hidden !important;
    }

    .comparison-table-wrapper {
        max-width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        border-radius: 16px;
    }

    .comparison-table {
        width: 100% !important;
        min-width: unset !important;
        table-layout: fixed !important;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.4rem !important;
        font-size: 0.7rem !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .comparison-table th:first-child,
    .comparison-table td:first-child {
        padding-left: 0.5rem !important;
        width: 40% !important;
    }

    .comparison-table th:last-child,
    .comparison-table td:last-child {
        padding-right: 0.5rem !important;
    }

    .comparison-header {
        padding: 0 0.5rem !important;
    }

    .comparison-header h2 {
        font-size: 1.4rem !important;
    }

    .comparison-header p {
        font-size: 0.9rem !important;
    }

    .comparison-cta {
        margin-top: 2rem !important;
        padding: 0 0.5rem !important;
    }

    .comparison-cta h3 {
        font-size: 1.2rem !important;
    }

    .demo-button {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem !important;
    }

    /* Floating buttons - icons only */
    .misti-label,
    .wa-label {
        display: none !important;
        visibility: hidden !important;
    }

    .misti-chat-btn {
        bottom: 88px !important;
        right: 16px !important;
    }

    .wa-float-btn {
        bottom: 20px !important;
        right: 16px !important;
    }

    .misti-icon,
    .wa-icon {
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
        min-height: 52px !important;
    }
}

/* ----------------------------------------------------------------
   24. RESPONSIVE — Small Mobile (max-width: 480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

    .comparison-header h2 {
        font-size: 1.5rem !important;
    }

    .comparison-table th {
        font-size: 0.75rem;
        padding: 0.875rem 0.4rem;
    }

    .comparison-table td {
        font-size: 0.75rem;
        padding: 0.875rem 0.4rem;
    }

    .comparison-table td:first-child {
        font-size: 0.72rem;
        line-height: 1.3;
    }

    .check-icon,
    .cross-icon,
    .partial-icon {
        width: 22px !important;
        height: 22px !important;
    }

    .check-icon svg {
        width: 12px !important;
        height: 12px !important;
    }

    .cross-icon svg {
        width: 10px !important;
        height: 10px !important;
    }
}

/* ----------------------------------------------------------------
   25. RESPONSIVE — Extra small (max-width: 400px)
   ---------------------------------------------------------------- */
@media (max-width: 400px) {

    .comparison-table th,
    .comparison-table td {
        padding: 0.6rem 0.3rem !important;
        font-size: 0.65rem !important;
    }

    .comparison-header h2 {
        font-size: 1.25rem !important;
    }

    .check-icon,
    .cross-icon,
    .partial-icon {
        width: 20px !important;
        height: 20px !important;
    }

    .check-icon svg {
        width: 10px !important;
        height: 10px !important;
    }

    .cross-icon svg {
        width: 10px !important;
        height: 10px !important;
    }

    .form-card,
    .info-card {
        padding: 1rem !important;
    }

    .contact-hero h1 {
        font-size: 1.5rem !important;
    }
}

/* ----------------------------------------------------------------
   26. HIGH-DPI SCREENS
   ---------------------------------------------------------------- */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .logo-img {
        image-rendering: crisp-edges;
    }
}

/* ----------------------------------------------------------------
   27. PRINT
   ---------------------------------------------------------------- */
@media print {

    .navbar,
    footer,
    .mobile-menu-btn,
    .misti-chat-btn,
    .wa-float-btn,
    #background-canvas {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .contact-hero,
    .contact-main,
    .faq-section {
        padding: 1rem;
    }

    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
    }
}

/* ----------------------------------------------------------------
   28. BROWSER FALLBACKS
   ---------------------------------------------------------------- */
@supports not (display: grid) {

    .contact-grid,
    .quick-cards {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }

    .contact-grid>*,
    .quick-cards>* {
        flex: 1 1 280px;
        min-width: 280px;
    }
}

@supports not (backdrop-filter: blur(20px)) {

    .navbar,
    .dropdown-content {
        background: rgba(0, 0, 0, 0.95);
    }

    .comparison-table-wrapper {
        background: rgba(30, 41, 59, 0.95);
    }
}

@supports not (color: var(--accent-purple)) {
    .cta-button {
        background: linear-gradient(135deg, #8A2BE2, #4A00E0);
    }

    .submit-btn-new {
        background: linear-gradient(135deg, #a855f7, #4ecdc4);
    }

    .form-card,
    .info-card {
        background: rgba(30, 30, 50, 0.6);
        border: 1px solid rgba(168, 85, 247, 0.2);
    }
}

/* ----------------------------------------------------------------
   29. UTILITY / EXTRACTED INLINE STYLE CLASSES
   ---------------------------------------------------------------- */

/* Logo */
.logo-img {
    border-radius: 10px;
}

/* Love nav link — pink accent */
.nav-link-love {
    color: #ec4899;
    font-weight: 600;
}

/* Heart SVG inside nav */
.nav-heart-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    fill: #ec4899;
}

/* Featured "View All" dropdown item */
.dropdown-item-featured {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
    white-space: nowrap;
    font-weight: bold;
    border-bottom: 1px solid rgba(168, 85, 247, 0.3);
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
}

.dropdown-item-featured:hover {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.1);
}

/* Utility */
.font-bold {
    font-weight: bold;
}

/* Office hours closed note */
.office-hours-closed {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Callback modal classes */
.callback-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px;
}

.callback-modal-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0 0 25px;
}

.callback-success-icon {
    margin-bottom: 15px;
}

.callback-success-title {
    font-size: 20px;
    font-weight: 700;
    color: #10b981;
    margin: 0 0 8px;
}

.callback-success-text {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}