/* =========================================================================
   Landmark Agency Group - Premium Style Guide & Core CSS
   ========================================================================= */

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

:root {
    /* Color Palette */
    --clr-navy: #0A192F;
    --clr-navy-light: #112240;
    --clr-gold: #D4AF37;
    --clr-gold-light: #F3E5AB;
    --clr-gold-hover: #C5A028;
    --clr-white: #FFFFFF;
    --clr-gray-light: #F8F9FA;
    --clr-gray-muted: #E2E8F0;
    --clr-text: #334155;
    --clr-text-light: #64748B;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Utilities */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.3); /* Gold glow */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================================
   Reset & Base Styles
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background-color: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.bg-gray {
    background-color: var(--clr-gray-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-navy);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* =========================================================================
   Utility Classes
   ========================================================================= */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.max-w-lg { max-width: 800px; }
.text-center { text-align: center; }
.text-white { color: var(--clr-white) !important; }
.text-muted { color: var(--clr-text-light); }
.text-primary { color: var(--clr-gold); }
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; }

.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.p-4 { padding: 1.5rem; }

.w-full { width: 100%; }
.flex-1 { flex: 1; }

.bg-light { background-color: var(--clr-gray-light); }
.b-radius { border-radius: var(--border-radius-md); }

.section-padding {
    padding: 5rem 0;
}

.text-gradient {
    background: linear-gradient(135deg, var(--clr-gold) 0%, #E8C14E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================================================
   Typography
   ========================================================================= */
.headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

.headline-sm {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
    color: var(--clr-navy);
}

.subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.subtitle-sm {
    font-size: 1.125rem;
    color: var(--clr-text-light);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================================================
   Buttons
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 50px;
}

.btn-primary {
    background-color: var(--clr-gold);
    color: var(--clr-navy);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover:not(:disabled) {
    background-color: var(--clr-gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--clr-white);
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover:not(:disabled) {
    border-color: var(--clr-white);
    background-color: rgba(255,255,255,0.05);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pulse-hover:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

/* =========================================================================
   Navigation
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.25rem 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.navbar-simple {
    background: var(--clr-white);
    position: relative;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
}

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

.center-logo {
    justify-content: center;
}

.logo {
    display: inline-block;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--clr-white);
    letter-spacing: -0.05em;
}

.navbar.scrolled .logo-text,
.navbar-simple .logo-text {
    color: var(--clr-navy);
}

.logo-accent {
    color: var(--clr-gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--clr-gold);
}

/* =========================================================================
   Hero Section
   ========================================================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Space for nav */
    overflow: hidden;
    background-color: var(--clr-navy);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay for modern feel */
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    z-index: 1;
}

.hero-bg::after {
    /* Subtle dot grid pattern */
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--clr-white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.badge i {
    color: var(--clr-gold);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--clr-gold);
    font-size: 1.125rem;
}

/* Glassmorphism Vidsuals */
.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding-left: 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--clr-white);
    transform: translateX(0);
    transition: var(--transition-smooth);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.visual-card-1 {
    transform: translateX(-20px);
    animation: float 6s ease-in-out infinite;
}

.visual-card-2 {
    transform: translateX(20px);
    animation: float 6s ease-in-out infinite reverse;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--clr-gold);
}

.card-details {
    display: flex;
    flex-direction: column;
}

.card-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.card-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

@keyframes float {
    0% { transform: translateY(0px) translateX(var(--tx, 0)); }
    50% { transform: translateY(-10px) translateX(var(--tx, 0)); }
    100% { transform: translateY(0px) translateX(var(--tx, 0)); }
}

.visual-card-1 { --tx: -20px; }
.visual-card-2 { --tx: 20px; }

/* =========================================================================
   Services Section
   ========================================================================= */
.services {
    background-color: var(--clr-white);
}

.section-header {
    margin-bottom: 4rem;
}

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

.service-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-gray-muted);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
}

.service-card h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--clr-text-light);
    font-size: 0.95rem;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: var(--clr-gray-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--clr-navy);
    transition: var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.hover-lift:hover .service-icon {
    background: var(--clr-gold);
    color: var(--clr-navy);
}

/* =========================================================================
   Trust Section
   ========================================================================= */
.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.feature-list i {
    color: var(--clr-gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.25rem;
    border-radius: 50%;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.state-badge {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--clr-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.state-badge:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.state-abbr {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--clr-navy);
    background: var(--clr-gold-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.state-name {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--clr-navy);
}

/* =========================================================================
   Bottom CTA
   ========================================================================= */
.cta-section {
    background: var(--clr-navy);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--clr-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.privacy-note {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
    background-color: var(--clr-navy-light);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 2rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-text { color: var(--clr-white); }
.footer-brand p { font-size: 0.95rem; max-width: 300px; }

.footer-heading {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.75rem;
}
.footer-links a:hover { color: var(--clr-gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* =========================================================================
   Quote Funnel (Multi-Step Form)
   ========================================================================= */
.funnel-container {
    min-height: calc(100vh - 80px);
}

.funnel-header {
    margin-bottom: 3rem;
}

.glass-panel {
    background: var(--clr-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    border: 1px solid var(--clr-gray-muted);
}

.progress-container {
    height: 8px;
    background: var(--clr-gray-muted);
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--clr-navy);
    width: 25%; /* changes via JS */
    transition: width 0.4s ease;
}

.form-step {
    display: none;
    animation: fadeInStep 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-question {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-navy);
}

/* Option Cards (Radio replacements) */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.options-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.option-card {
    position: relative;
    cursor: pointer;
    display: block;
}

.option-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--clr-gray-light);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    transition: var(--transition-fast);
    text-align: center;
    font-weight: 500;
}

.option-content i {
    font-size: 2.5rem;
    color: var(--clr-navy);
}

.option-card:hover .option-content {
    background: #F0F4F8;
    transform: translateY(-2px);
}

/* Selected State */
.option-card input:checked + .option-content,
.option-card input:checked + span,
.premium-select input:checked ~ span {
    border-color: var(--clr-navy);
    background: rgba(10, 25, 47, 0.03);
    color: var(--clr-navy);
}

.option-card input:checked + .option-content i {
    color: var(--clr-gold);
}

/* Simple Option Card */
.option-card.simple span {
    display: block;
    padding: 1rem;
    background: var(--clr-gray-light);
    border: 2px solid transparent;
    border-radius: var(--border-radius-sm);
    text-align: center;
    font-weight: 500;
    transition: var(--transition-fast);
}

.option-card.simple:hover span {
    background: #F0F4F8;
}

/* Premium Select Card for States */
.premium-select {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--clr-gray-light);
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    padding: 2rem 1rem;
    transition: var(--transition-fast);
}

.premium-select .state-icon {
    font-size: 2rem;
    font-weight: 800;
    color: var(--clr-gold);
    margin-bottom: 0.5rem;
    background: none;
    border: none;
}
.premium-select span:last-child {
    font-weight: 600;
    font-size: 1.125rem;
}

.premium-select:hover {
    transform: translateY(-2px);
    background: #F0F4F8;
}


/* Input Fields */
.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-navy);
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--clr-gray-muted);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-navy);
    box-shadow: 0 0 0 3px rgba(10, 25, 47, 0.1);
}

.consent-text {
    font-size: 0.75rem;
    color: var(--clr-text-light);
    line-height: 1.4;
}

.row {
    display: flex;
    gap: 1rem;
}

.trust-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.trust-micro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--clr-text-light);
    font-weight: 500;
}

.trust-micro i {
    color: var(--clr-gold);
}

/* =========================================================================
   Thank You / Booking Page
   ========================================================================= */
.success-icon {
    font-size: 5rem;
    color: #10B981; /* Success Green */
    margin-bottom: 1rem;
}

.divider {
    height: 1px;
    background: var(--clr-gray-muted);
    width: 100%;
}

.step-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-item {
    background: var(--clr-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--clr-navy);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
    font-family: var(--font-heading);
}

.step-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.step-text p {
    font-size: 0.875rem;
    color: var(--clr-text-light);
}

/* =========================================================================
   Animations
   ========================================================================= */
.fade-in {
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-up-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

.pulse-animation {
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}


/* =========================================================================
   Responsive Design
   ========================================================================= */
@media (max-width: 992px) {
    .hero-content, .trust-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        display: none; /* Hide glass cards on tablet/mobile for cleaner look */
    }

    .hero-actions, .trust-indicators {
        justify-content: center;
    }

    .footer-layout {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links .nav-link {
        display: none; /* Hide link, keep button */
    }

    .section-padding {
        padding: 3rem 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .options-grid {
        grid-template-columns: 1fr; !important;
    }
    
    .options-grid.cols-2 {
        grid-template-columns: 1fr; !important;
    }

    .row {
        flex-direction: column;
    }

    .step-list {
        grid-template-columns: 1fr;
    }

    .trust-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
}
