/* ============================================
   THEMES - CSS Variables
   ============================================ */
/* Default Theme (Light) */
:root {
  /* Primary Colors */
  --primary-color: #10b981;
  --primary-light: #d1fae5;

  /* Secondary Colors */
  --secondary-color: #155dfc;
  --secondary-light: #eef3ff;

  --tertiary-color: #F97316;
  --tertiary-light: #FFEEE2;

  /* Accent Colors */
  --accent-color: #7f56d9;
  --accent-color-light: #f7f3ff;

  /* Success Colors */
  --success-color: #32d583;
  --success-color-light: #ecfdf3;

  /* Warning Colors */
  --warning-color: #fdb022;
  --warning-color-light: #fef3c7;

  /* Error Colors */
  --error-color: #f04438;
  --error-color-light: #fef2f2;

  /* Background Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --bg-dark: #374151;

  /* Text Colors */
  --main-text: #101828;
  --secondary-text: #ffffff;
  --placeholder-text: #9ca3af;
  --sub-text: #535862;
  --stroke: #f5f5f5;

  /* Border Colors */
  --border-primary: #f5f5f5;
  --border-secondary: #d1d5db;
  --border-focus: #10b981;

  /* Border Radius */
  --border-radius-sm: 5px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-2xl: 20px;
  --border-radius-3xl: 24px;
  --border-radius-full: 100%;

  /* Shadow Colors */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

  /* Modal */
  --modal-max-width: 520px;
  --modal-radius: 16px;
  --modal-backdrop: rgba(15, 23, 42, 0.55);
  --modal-padding: 1.5rem;
  --modal-transition-duration: 0.35s;

  /* Theme Specific */
  --theme-name: "Light";

  /* Font Sizes */
  --fs-display-2xl: 4.5rem;
  --fs-display-xl: 3.75rem;
  --fs-display-lg: 3rem;
  --fs-display-md: 2.5rem;
  --fs-display-sm: 1.875rem;
  --fs-display-xs: 1.5rem;
  --fs-text-xl: 1.25rem;
  --fs-text-lg: 1.125rem;
  --fs-text-md: 1rem;
  --fs-text-sm: 0.875rem;
  --fs-text-xs: 0.75rem;

  --bold-font-weight: 600;
  --medium-font-weight: 500;
  --regular-font-weight: 400;
}

/* ============================================
   MAIN - Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--main-text);
    background-color: var(--bg-primary);
    transition: all 0.3s ease;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* Page content fade-in (excluding header) */
body > *:not(.header) {
    animation: fadeInPage 0.5s ease-in;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--secondary-text);
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.logo-text {
    color: var(--main-text);
    letter-spacing: -0.5px;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }
}
/* Header - Always static, no animations */
.header {
    background: var(--bg-primary);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 102;
    backdrop-filter: blur(10px);
}

.header,
.header * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu ul,
.nav-menu li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item a {
    color: var(--sub-text);
    text-decoration: none;
    font-size: var(--fs-text-sm);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    display: inline-block;
    min-width: 90px;
}

.nav-item a:hover {
    color: var(--primary-color);
    background: var(--bg-secondary);
}

/* Dropdown Styles */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    position: relative;
    padding-right: 28px !important;
    display: flex;
    align-items: center;
    gap: 6px;
    /* Make focusable for CSS-only dropdowns */
    outline: none;
    -webkit-tap-highlight-color: transparent;
    /* Prevent hash navigation jump */
    scroll-margin-top: 0;
}

.dropdown-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Prevent page jump when clicking dropdown toggle */
.dropdown-toggle[href="#"] {
    pointer-events: auto;
}

/* On mobile, clicking dropdown toggle focuses it, showing dropdown via :focus-within */
@media (max-width: 968px) {
    .dropdown-toggle {
        /* Ensure it's focusable on mobile */
        -webkit-tap-highlight-color: rgba(16, 185, 129, 0.1);
    }
    
    /* Prevent hash navigation on mobile */
    .dropdown-toggle[href="#"]:active {
        /* No action needed - CSS handles it */
    }
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: all 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-toggle {
    color: var(--primary-color);
    background: var(--primary-light);
}

.nav-item.dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    min-width: 240px;
    padding: 8px;
    margin-top: 4px;
    display: none;
    flex-direction: column;
    z-index: 1000;
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.dropdown-menu li,
.dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-menu * {
    list-style: none !important;
}

/* Create invisible bridge to prevent menu from closing */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: flex;
}

/* Prevent hover on touch devices */
@media (hover: none) and (pointer: coarse) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 16px;
    color: var(--sub-text);
    text-decoration: none;
    font-size: var(--fs-text-sm);
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
    white-space: nowrap;
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 20px;
}

.dropdown-item:hover::before {
    transform: scaleY(1);
}


/* Hamburger Menu - CSS Only (Checkbox Hack) */
.hamburger-checkbox {
    display: none;
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.hamburger-menu {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--border-radius-md);
    cursor: pointer;
    padding: 10px;
    z-index: 103;
    transition: all 0.3s ease;
    position: relative;
    user-select: none;
}

.hamburger-menu:hover {
    background: var(--bg-secondary);
}

.hamburger-icon {
    width: 24px;
    height: 24px;
    display: block;
    transition: all 0.3s ease;
}

/* When checkbox is checked, style the label */
.hamburger-checkbox:checked + .hamburger-menu {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hamburger-checkbox:checked + .hamburger-menu .hamburger-icon {
    filter: brightness(0) invert(1);
}

/* Mobile Menu Backdrop - Removed, not needed for simple approach */

@media (max-width: 968px) {
    .nav-wrapper {
        flex-wrap: wrap;
    }
    
    .nav-menu-wrapper {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu-wrapper .btn-primary {
        display: none;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        flex-basis: 100%;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 20px;
        margin-top: 15px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-primary);
    }
    
    /* Show menu when hamburger checkbox is checked */
    .hamburger-checkbox:checked ~ .nav-menu {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
        padding: 0;
        margin-bottom: 8px;
    }
    
    .nav-item:last-child {
        margin-bottom: 0;
    }
    
    .nav-item a {
        font-size: var(--fs-text-md);
        display: block;
        width: 100%;
        padding: 12px 16px;
        border-radius: var(--border-radius-md);
    }
    
    /* Mobile Dropdown Styles */
    .nav-item.dropdown {
        position: relative;
    }
    
    .dropdown-toggle {
        background: var(--bg-secondary);
        border: 1px solid var(--border-secondary);
    }
    
    /* Mobile dropdowns use :focus-within for CSS-only toggle */
    .nav-item.dropdown:focus-within .dropdown-toggle,
    .nav-item.dropdown:hover .dropdown-toggle {
        background: var(--primary-light);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }
    
    .dropdown-toggle::after {
        right: 16px;
        transition: transform 0.3s ease;
    }
    
    .nav-item.dropdown:focus-within .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 3px solid var(--primary-color);
        margin: 8px 0 0 12px;
        padding: 8px 0;
        background: var(--bg-secondary);
        border-radius: var(--border-radius-md);
        min-width: auto;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Show dropdown when parent has focus (CSS-only) */
    .nav-item.dropdown:focus-within .dropdown-menu {
        max-height: 500px;
    }
    
    /* Prevent hover on mobile - use focus instead */
    @media (hover: none) {
        .nav-item.dropdown:hover .dropdown-menu {
            max-height: 0;
        }
    }
    
    /* Make dropdown-toggle focusable for :focus-within to work */
    .dropdown-toggle {
        outline: none;
    }
    
    .dropdown-toggle:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    .dropdown-divider {
        margin: 4px 12px;
    }
    
    .dropdown-item {
        padding: 10px 16px;
        font-size: var(--fs-text-sm);
        margin: 4px 8px;
        border-radius: var(--border-radius-sm);
    }
    
    .dropdown-item::before {
        display: none;
    }
    
    .dropdown-item:hover {
        background: var(--primary-light);
        padding-left: 16px;
    }
}

.h-inherit {
    height: inherit;
}

@media (max-width: 968px) {
    .h-inherit {
        height: auto;
        max-height: 100%;
    }
}

.w-100 {
    width: 100%;
}
.green-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-color);
    margin-right: 8px;
    vertical-align: middle;
}
.accent-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    margin-right: 8px;
    vertical-align: middle;
}
.secondary-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--secondary-color);
    margin-right: 8px;
    vertical-align: middle;
}

.warning-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--warning-color);
    margin-right: 8px;
    vertical-align: middle;
}
.text-align-center {
    text-align: center;
}
.justify-content {
    justify-content: center;
}
.pt-0 {
    padding-top: 0 !important;
}
.display-flex-column {
    display: flex;
    flex-direction: column;
}
.justify-content-between {
    justify-content: space-between;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    font-weight: var(--bold-font-weight);
    font-size: var(--fs-text-sm);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    justify-content: center;
    height: 36px;
}

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

.btn-primary[aria-label="Start your free trial"]::after {
    content: '→';
    margin-left: 0.3rem;
    font-size: 1.1em;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s ease;
}

.btn-primary[aria-label="Start your free trial"]:hover::after {
    transform: translateX(3px);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    border: 1px solid var(--border-secondary);
    background-color: var(--bg-primary);
    color: var(--main-text);
}

.btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   INPUTS - Form Controls
   ============================================ */
/* Global Form Controls */
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]),
textarea,
select {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-secondary);
    border-radius: var(--border-radius-sm);
    background: var(--bg-primary);
    color: var(--main-text);
    font-size: var(--fs-text-md);
    font-family: inherit;
    line-height: 1.4;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="range"]) {
    height: 36px;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--border-focus);
    background: var(--bg-primary);
    box-shadow: 0 0 0 4px var(--shadow-sm);
}

input:not([type="checkbox"]):not([type="radio"]):not([type="range"])::placeholder,
textarea::placeholder {
    color: var(--placeholder-text);
}
#formSearchInput {
    padding-left: 30px;
}

/* ============================================
   LANDING PAGE
   ============================================ */

/* Page Load Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Background image */
.landing-page {
    background-image: url('/static/images/bg-landing.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-form-editor {
    background-image: url('/static/images/bg-form-editor.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-workflow {
    background-image: url('/static/images/bg-workflow.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-dashboard {
    background-image: url('/static/images/bg-dashboard.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-service-level {
    background-image: url('/static/images/bg-service.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-hr-it {
    background-image: url('/static/images/bg-hr-it.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.bg-why-us {
    background-image: url('/static/images/bg-why-us.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-left.animated {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-right.animated {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.95);
}

.scale-in.animated {
    transform: scale(1);
}

/* Hero Section */
.hero {
    padding: 100px 0 140px;
}

.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

.hero-left > * {
    animation: fadeInUp 0.6s ease-out backwards;
}

.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }

.hero .contact-card,
.hero .form-builder-card {
    animation: slideInRight 0.8s ease-out 0.3s backwards;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-editor .hero-badge {
    background: var(--accent-color-light);
    color: var(--accent-color);
}

.human-resources .hero-badge {
    background: var(--secondary-light);
    color: var(--secondary-color);
}

.healthcare .hero-badge {
    background: var(--tertiary-light);
    color: var(--tertiary-color);
}


.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--border-radius-3xl);
    font-size: var(--fs-text-sm);
    margin-bottom: 24px;
}

.hero-badge .badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: var(--fs-display-lg);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--main-text);
}

.hero-description {
    font-size: var(--fs-text-md);
    color: var(--sub-text);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: var(--fs-display-sm);
    font-weight: var(--medium-font-weight);
    color: var(--main-text);
}

.stat-label {
    font-size: var(--fs-text-sm);
    color: var(--sub-text);
}
.nav-menu-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
}

@media (max-width: 968px) {
    .nav-menu-wrapper {
        gap: 10px;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 15px;
    }
}
/* Hero Images */
.contact-card {
    /* border: 2px solid var(--border-secondary); */
    /* border-radius: var(--border-radius-3xl);
    box-shadow: var(--shadow-md); */
    position: relative;
    height: 480px;
    overflow: visible;
}

.contact-card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}
.landing-page-2 {
    position: absolute;
    bottom: -30%;
    left: 45%;
    height: 380px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-3xl);
}
.form-builder-card {
    /* box-shadow: var(--shadow-md); */
    position: relative;
    height: 480px;
    overflow: visible;
}

.form-builder-card img {
    max-width: 100%;
    height: auto;
}

.form-builder-card .form-builder-3 {
    position: absolute;
    height: 458px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    right: 50px;
}

.form-builder-card .form-builder-1 {
    position: absolute;
    right: 0;
    height: 100px;
    top: -50px;
}

@media (max-width: 968px) {
    .form-builder-card {
        height: auto;
        min-height: 400px;
    }
    
    .form-builder-card .form-builder-3 {
        position: relative;
        right: auto;
        height: auto;
        max-height: 400px;
        margin: 0 auto;
        display: block;
    }
    
    .form-builder-card .form-builder-1 {
        position: relative;
        right: auto;
        top: auto;
        height: auto;
        max-height: 100px;
        margin: 0 auto 20px;
        display: block;
    }
}

@media (max-width: 640px) {
    .form-builder-card {
        height: auto;
        min-height: 300px;
    }
    
    .form-builder-card .form-builder-3 {
        max-height: 300px;
    }
}
/* Workflow Section */
.workflow-section {
    padding: 0;
}

.capture-data-section {
    padding: 80px 0;
}

@media (max-width: 968px) {
    .capture-data-section {
        padding: 60px 0;
    }
}

@media (max-width: 640px) {
    .capture-data-section {
        padding: 40px 0;
    }
}

/* Workflow Diagram */
.workflow-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto 1fr auto 1fr auto;
    gap: 0;
    margin: 60px auto;
    max-width: 600px;
    align-items: center;
    justify-items: center;
    position: relative;
}

/* Workflow Items */
.workflow-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-secondary);
    border-radius: var(--border-radius-xl);
    padding: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.workflow-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.workflow-icon {
    width: 40px;
    height: 40px;
    background: red;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-text);
    flex-shrink: 0;
}

.workflow-icon svg {
    width: 20px;
    height: 20px;
}

.workflow-title {
    font-size: var(--fs-text-sm);
    font-weight: var(--bold-font-md);
    color: var(--main-text);
    line-height: 1.4;
    margin: 0;
}

.workflow-description {
    font-size: var(--fs-text-sm);
    color: var(--main-text);
    line-height: 1.6;
    margin: 0;
}

.workflow-indicators {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
    justify-content: space-between;
    border-top: 1px solid var(--border-secondary);
    padding: 7px 0px 0px 0px;
}

.workflow-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--border-secondary);
    background: transparent;
}

.workflow-indicators .indicator.active {
    background: red;
    border-color: red;
}

/* Grid Positioning - Circular Layout */
.workflow-item-1 {
    grid-column: 2;
    grid-row: 1;
}

.workflow-item-2 {
    grid-column: 3;
    grid-row: 3;
}

.workflow-item-3 {
    grid-column: 2;
    grid-row: 5;
}

.workflow-item-4 {
    grid-column: 1;
    grid-row: 3;
    max-width: 100%;
}

/* Arrows */
.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    z-index: -1;
    pointer-events: none;
}

.arrow-curved {
    width: 120px;
    height: 120px;
}

/* Arrow Positioning - Circular Layout */
.arrow-1 {
    grid-column: 2;
    grid-row: 2;
    transform: rotate(0deg);
}

.arrow-2 {
    grid-column: 3;
    grid-row: 3;
    transform: rotate(90deg);
}

.arrow-3 {
    grid-column: 2;
    grid-row: 4;
    transform: rotate(180deg);
}

.arrow-4 {
    grid-column: 1;
    grid-row: 3;
    transform: rotate(270deg);
}

/* Empty Boxes Layout */
.empty-boxes-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 120px;
    margin: 60px auto;
    max-width: 800px;
    justify-items: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}

.empty-box {
    width: 300px;
    height: 225px;
    min-width: 300px;
    min-height: 225px;
    border: 4px solid #000000 !important;
    background: transparent !important;
    display: block !important;
    box-sizing: border-box;
    flex-shrink: 0;
    visibility: visible !important;
    opacity: 1 !important;
}

.empty-box-1 {
    grid-column: 1 / span 2;
    grid-row: 1;
    justify-self: center;
    padding: 20px;
}

.empty-box-4 {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    margin-right: 120px;
    padding: 20px;
}

.empty-box-2 {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    padding: 20px;
}

.empty-box-3 {
    grid-column: 1 / span 2;
    grid-row: 3;
    justify-self: center;
    padding: 20px;
}

/* Arrow from Box 4 to Box 1 */
.empty-box-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    z-index: 1;
    pointer-events: none;
}

.arrow-4-to-1 {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 150px;
    height: 150px;
    justify-self: start;
    align-self: center;
    margin-left: 60px;
    margin-top: -130px;
}

.arrow-1-to-2 {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 150px;
    height: 150px;
    justify-self: end;
    align-self: center;
    margin-right: 60px;
    margin-top: -130px;
    transform: rotate(120deg);
}

.arrow-2-to-3 {
    grid-column: 2;
    grid-row: 2 / span 2;
    width: 150px;
    height: 150px;
    justify-self: end;
    align-self: center;
    margin-right: 60px;
    margin-top: 170px;
    transform: rotate(180deg);
}

.arrow-4 {
    grid-column: 1;
    grid-row: 2 / span 2;
    width: 150px;
    height: 150px;
    justify-self: start;
    align-self: center;
    margin-left: 60px;
    margin-top: 170px;
    transform: rotate(-90deg);
}

/* Capture Data Section */
.capture-data-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 48px;
}

.capture-data-image {
    position: sticky;
    top: 100px;
}

.capture-data-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: start;
}

.feature-number {
    width: 40px;
    height: 40px;
    background: var(--main-text);
    color: var(--secondary-text);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--bold-font-weight);
    font-size: var(--fs-text-lg);
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: var(--fs-text-xl);
    font-weight: var(--bold-font-weight);
    margin-bottom: 8px;
    color: var(--main-text);
}

.feature-content p {
    font-size: var(--fs-text-sm);
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: var(--medium-font-weight);
}

.feature-description {
    font-size: var(--fs-text-sm);
    color: var(--sub-text);
    line-height: 1.6;
    margin-bottom: 0 !important;
}

/* Service Level Section */
.service-level-section {
    padding: 120px 0;
}

.service-level-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-level-image img {
    display: block;
    width: 100%;
}


.service-level-card {
    background: var(--secondary-light);
    border: 1px solid var(--secondary-color);
    border-radius: var(--border-radius-2xl);
    padding: 20px 25px;
    position: relative;
    text-align: center;
    width: 80%;
    margin-left: auto;
}
.support-response .service-level-card{
    background: var(--accent-color-light);
    border: 1px solid var(--accent-color);
    margin-left: initial;
}
.availability-arrow {
    position: absolute;
    top: 30px;
    left: -120px;
}

.availability-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 15px;
}

.availability-arrow-line {
    height: 24px;
    flex: 1;
}

.rotate-180 {
    transform: rotate(180deg);
}

.availability-title {
    font-size: var(--fs-display-xs);
    font-weight: var(--bold-font-weight);
    color: var(--main-text);
    margin: 0;
    text-align: end;
    white-space: nowrap;
}
.support-response .availability-title {
    text-align: start;
}

.availability-title-wrapper {
    flex-direction: row;
}

.availability-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.availability-icon-wrapper {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: var(--border-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-response .availability-icon-wrapper {
    background: var(--accent-color);
}

.availability-description {
    font-size: var(--fs-text-md);
    color: var(--sub-text);
    line-height: 1.4;
    margin: 0;
    text-align: start;
}

/* Simplicity Hero Section */
.simplicity-hero {
    text-align: center;
    padding: 40px 0;
}

.simplicity-hero .section-title {
    font-size: var(--fs-display-md);
    margin-bottom: 24px;
}

.simplicity-hero .section-description {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: var(--fs-text-lg);
}

.simplicity-image {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.simplicity-image img {
    display: block;
    width: 100%;
}

/* Security Section */

.security-card-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: end;
    text-align: end;
    line-height: 1;
}

.security-card-wrapper .availability-title {
    text-align: end;
    margin: 0;
}

.security-card {
    background: var(--secondary-light);
    border: 1px solid var(--secondary-color);
}

/* Video Section */
.video-section {
    padding: 120px 0;
    text-align: center;
}

.video-cta {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.section-title {
    font-size: var(--fs-display-md);
    font-weight: var(--regular-font-weight);
    margin-bottom: 16px;
    color: var(--main-text);
}

.section-description {
    font-size: var(--fs-text-md);
    color: var(--sub-text);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius-xl);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.9);
    border: none;
    border-radius: var(--border-radius-full);
    color: var(--secondary-text);
    font-size: var(--fs-text-xl);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.video-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--secondary-text);
    padding: 8px 16px;
    border-radius: var(--border-radius-md);
    font-size: var(--fs-text-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.video-duration {
    font-size: var(--fs-text-xs);
    opacity: 0.8;
}
/* Carousel Section */
.carousel-section {
    padding: 0px 0px 120px 0;
    text-align: center;
}

/* Why Choose Section */
.why-choose-section {
    padding: 120px 0px 120px 0;
    text-align: center;
}
.why-choose-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.feature-card {
    padding: 15px;
    border-radius: var(--border-radius-xl);
    background: var(--bg-primary);
}
.feature-card.secondary-card {
    background: var(--secondary-light);
    border: 1px solid var(--secondary-color);
}
.feature-card.accent-card {
    background: var(--accent-color-light);
    border: 1px solid var(--accent-color);
}
.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-text-xl);
}

.feature-icon.blue {
    background: var(--secondary-color);
}

.feature-icon.purple {
    background: var(--accent-color);
}
.feature-icon.black {
    background: #1A2332;
}
.feature-card h3 {
    font-size: var(--fs-text-xl);
    font-weight: var(--bold-font-weight);
    margin-bottom: 16px;
    color: var(--main-text);
}

.feature-card p {
    font-size: var(--fs-text-sm);
    color: var(--sub-text);
    line-height: 1.5;
    margin-bottom: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    font-size: var(--fs-text-sm);
    color: var(--main-text);
    padding: 5px 0;
    padding-left: 24px;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.information-section .features-grid {
    grid-template-columns: repeat(4, 1fr);
}
.information-section .feature-card {
    border: 1px solid var(--border-secondary);
}
.it-section .features-grid {
    grid-template-columns: repeat(3, 1fr);
}
.it-section .feature-card {
    border: 1px solid var(--border-secondary);
}
/* Footer */
.footer {
    background: #111827;
    color: var(--secondary-text);
    padding: 60px 0 24px;
    flex-shrink: 0;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 350px;
}

.footer .logo-icon {
    background: var(--primary-color);
}

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

.footer-tagline {
    font-size: var(--fs-text-sm);
    color: var(--placeholder-text);
    margin: 16px 0 24px;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact a {
    color: var(--placeholder-text);
    text-decoration: none;
    font-size: var(--fs-text-sm);
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-contact img {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: var(--fs-text-sm);
    font-weight: var(--bold-font-weight);
    margin-bottom: 16px;
    color: var(--secondary-text);
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.footer-column ul li,
.footer-column ul ul,
.footer-column ul ul li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.footer-links ul,
.footer-links li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--placeholder-text);
    text-decoration: none;
    font-size: var(--fs-text-sm);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: var(--fs-text-sm);
    color: var(--placeholder-text);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #374151;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-text);
    text-decoration: none;
    transition: all 0.3s;
}
.social-links {
    display: flex;
    gap: 16px;
}
.social-links img{
    width: 20px;
}
.social-links a:hover {
    /* background: var(--primary-color); */
    transform: translateY(-2px);
}

/* Responsive Design */

/* Tablet (768px - 968px) */
@media (max-width: 968px) {
    .hero {
        padding: 80px 0 100px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: var(--fs-display-sm);
    }
    
    .contact-card {
        height: auto;
        min-height: 400px;
    }
    
    .contact-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .landing-page-2 {
        height: auto;
        max-height: 320px;
        bottom: auto;
        position: relative;
        margin: 20px auto 0;
    }

    .workflow-section,
    .video-section,
    .why-choose-section,
    .carousel-section,
    .service-level-section {
        padding: 80px 0;
    }
    
    .capture-data-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .capture-data-image {
        position: static;
    }

    .service-level-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .availability-arrow {
        display: none;
    }

    .service-level-card {
        padding: 35px 30px;
        width: 80%;
    }

    .workflow-diagram {
        max-width: 900px;
    }

    .workflow-item {
        max-width: 220px;
        min-height: 130px;
    }

    .workflow-item-4 {
        max-width: 320px;
    }

    .workflow-title {
        font-size: var(--fs-text-md);
    }

    .workflow-description {
        font-size: 13px;
    }

    .arrow-horizontal {
        width: 50px;
    }

    .arrow-vertical {
        height: 40px;
    }

    .workflow-elements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .simplicity-hero .section-title {
        font-size: var(--fs-display-md);
    }

    .simplicity-hero .section-description {
        font-size: var(--fs-text-md);
    }

    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* Mobile (max-width: 640px) */
@media (max-width: 640px) {
    /* Disable hero animations on mobile for performance */
    .hero-left,
    .hero-left > *,
    .hero .contact-card,
    .hero .form-builder-card {
        animation: none !important;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title {
        font-size: var(--fs-display-xs);
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: var(--fs-text-sm);
        margin-bottom: 24px;
    }
    
    .hero-badge {
        font-size: var(--fs-text-xs);
        padding: 6px 12px;
        margin-bottom: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        margin-bottom: 32px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-height: 44px; /* Touch target size */
    }
    
    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix contact card images */
    .contact-card img,
    .form-builder-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .workflow-section {
        padding: 0;
    }

    .workflow-diagram {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
    }

    .workflow-item-1,
    .workflow-item-2,
    .workflow-item-3,
    .workflow-item-4 {
        grid-column: 1;
        grid-row: auto;
        max-width: 100%;
    }

    .workflow-arrow {
        display: none;
    }

    .workflow-item {
        min-height: auto;
    }

    .workflow-title {
        font-size: var(--fs-text-md);
    }

    .workflow-description {
        font-size: var(--fs-text-sm);
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .contact-card {
        height: auto;
        min-height: 300px;
    }
    
    .landing-page-2 {
        height: auto;
        max-height: 240px;
        bottom: auto;
        left: auto;
        position: relative;
        margin: 20px auto 0;
    }
    
    .workflow-section,
    .video-section,
    .why-choose-section,
    .carousel-section,
    .service-level-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: var(--fs-display-xs);
        margin-bottom: 12px;
    }

    .service-level-card {
        padding: 32px 24px;
        width: 100%;
        margin-left: 0;
    }

    .availability-title-wrapper {
        gap: 12px;
    }

    .availability-arrow-line {
        max-width: 150px;
    }

    .availability-title {
        font-size: var(--fs-text-xl);
    }

    .availability-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .availability-icon-wrapper svg {
        width: 24px;
        height: 24px;
    }

    .availability-description {
        font-size: var(--fs-text-sm);
    }
    
    .section-description {
        font-size: var(--fs-text-sm);
        margin-bottom: 32px;
    }

    .workflow-elements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .workflow-element-card {
        padding: 20px 12px;
    }

    .workflow-element-icon {
        width: 40px;
        height: 40px;
    }

    .workflow-element-icon svg {
        width: 20px;
        height: 20px;
    }

    .simplicity-hero .section-title {
        font-size: var(--fs-display-xs);
        margin-bottom: 16px;
    }

    .simplicity-hero .section-description {
        font-size: var(--fs-text-sm);
        margin-bottom: 40px;
    }

    .simplicity-hero {
        padding: 20px 0;
    }
    
    .capture-data-features {
        gap: 24px;
    }
    
    .feature-item {
        gap: 16px;
    }
    
    .feature-number {
        width: 32px;
        height: 32px;
        font-size: var(--fs-text-md);
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: var(--fs-text-lg);
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-card h3 {
        font-size: var(--fs-text-lg);
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    /* Touch target improvements */
    .nav-item a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .btn {
        min-height: 44px;
    }
    
    /* Table responsiveness */
    table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table tbody {
        display: block;
        width: 100%;
    }
    
    table tr {
        display: block;
        width: 100%;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-secondary);
    }
    
    table tr:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    table td {
        display: block;
        width: 100% !important;
        padding: 8px 0 !important;
        text-align: left !important;
    }
    
    table td:first-child {
        font-weight: var(--bold-font-weight);
        margin-bottom: 4px;
    }
    
    /* Fix text overflow */
    .availability-title {
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Fix contact card on mobile */
    .contact-card {
        height: auto !important;
        min-height: 300px;
    }
    
    .landing-page-2 {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        height: auto !important;
        max-height: 240px;
        margin: 20px auto 0;
        display: block;
    }
    
    /* Fix empty boxes layout for mobile */
    .empty-boxes-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
    }
    
    .empty-box-1,
    .empty-box-2,
    .empty-box-3,
    .empty-box-4 {
        grid-column: 1;
        grid-row: auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px;
    }
    
    .empty-box-arrow {
        display: none;
    }
    
    /* Improve form inputs on mobile */
    .form-input,
    .form-textarea,
    .captcha-input {
        font-size: 16px; /* Prevents zoom on iOS */
        min-height: 44px;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* Small mobile (max-width: 380px) */
@media (max-width: 380px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: var(--fs-text-xl);
    }
    
    .contact-card {
        height: 240px;
    }
    
    .landing-page-2 {
        height: 200px;
    }
    
    .video-placeholder {
        height: 200px;
    }
}

/* ============================================
   CONTACT FORM STYLES
   ============================================ */
.contact-container {
    max-width: 800px;
    margin: 60px auto;
}

.contact-title {
    margin-bottom: 10px;
}

.contact-intro {
    margin-bottom: 40px;
    color: var(--sub-text);
}

.alert-success {
    background-color: var(--success-color-light);
    border: 1px solid var(--success-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-bottom: 24px;
    color: var(--success-color);
}

.alert-error {
    background-color: var(--error-color-light);
    border: 1px solid var(--error-color);
    border-radius: var(--border-radius-md);
    padding: 16px;
    margin-bottom: 24px;
    color: var(--error-color);
}

.contact-form {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--border-radius-lg);
}

.form-group {
    margin-bottom: 24px;
}

.form-group-large {
    margin-bottom: 32px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: var(--medium-font-weight);
    color: var(--main-text);
}

.form-label-required {
    color: var(--error-color);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius-md);
    font-size: var(--fs-text-md);
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--border-focus);
}

.form-textarea {
    resize: vertical;
}

.captcha-container {
    margin-bottom: 32px;
    background: var(--bg-primary);
    padding: 20px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-secondary);
}

.captcha-question {
    margin-bottom: 12px;
    font-size: var(--fs-text-lg);
    font-weight: var(--bold-font-weight);
    color: var(--primary-color);
}

.captcha-input {
    width: 200px;
    padding: 12px;
    border: 1px solid var(--border-primary);
    border-radius: var(--border-radius-md);
    font-size: var(--fs-text-md);
    transition: border-color 0.3s;
}

.captcha-input:focus {
    outline: none;
    border-color: var(--border-focus);
}

.form-submit {
    width: 100%;
    padding: 14px;
    font-size: var(--fs-text-md);
    font-weight: var(--medium-font-weight);
}

/* ============================================
   Info Page
   ============================================ */
.info-section {
    padding: 60px 0;
}

.info-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.info-updated {
    color: var(--sub-text);
    margin-bottom: 30px;
    font-size: var(--fs-text-sm);
}

.info-intro {
    margin-bottom: 40px;
    /* padding-bottom: 30px; */
    border-bottom: 1px solid var(--border-color);
}

.info-intro p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-content {
    line-height: 1.7;
}

.info-content h2 {
    font-size: var(--fs-heading-md);
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.info-content p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.info-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
    color: var(--text-secondary);
}

.info-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.info-content a:hover {
    text-decoration: underline;
}

.external-link-icon {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.info-content a:hover .external-link-icon {
    opacity: 1;
}

.info-content strong {
    color: var(--text-primary);
    font-weight: var(--bold-font-weight);
}

/* Map Section */
.map-section {
    padding: 60px 0;
}

.map-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.location-address {
    margin-top: 20px;
    font-size: var(--fs-text-md);
    line-height: 1.8;
}

.location-address p {
    margin-bottom: 15px;
}

.location-address a {
    color: var(--primary-color);
    text-decoration: none;
}

.location-address a:hover {
    text-decoration: underline;
}

/* Healthcare page bullet list spacing */
.bullet-list {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.bullet-list li {
  margin-bottom: 0.35rem;
}
