/* CSS Custom Properties */
:root {
    /* Primary Colors */
    --primary: 210 100% 50%; /* #0066FF */
    --primary-dark: 210 100% 45%; /* #0052CC */
    --primary-light: 210 100% 95%; /* #F0F7FF */
    
    /* Secondary Colors */
    --secondary: 220 15% 25%; /* #3A4A5C */
    --secondary-light: 220 15% 95%; /* #F5F6F8 */
    
    /* Neutral Colors */
    --white: 0 0% 100%; /* #FFFFFF */
    --gray-50: 210 20% 98%; /* #F8FAFC */
    --gray-100: 210 20% 96%; /* #F1F5F9 */
    --gray-200: 210 20% 90%; /* #E2E8F0 */
    --gray-300: 210 20% 83%; /* #CBD5E1 */
    --gray-400: 210 20% 64%; /* #94A3B8 */
    --gray-500: 210 20% 45%; /* #64748B */
    --gray-600: 210 20% 36%; /* #475569 */
    --gray-700: 210 20% 26%; /* #334155 */
    --gray-800: 210 20% 16%; /* #1E293B */
    --gray-900: 210 20% 11%; /* #0F172A */
    
    /* Success & Error */
    --success: 142 76% 36%; /* #22C55E */
    --error: 0 84% 60%; /* #EF4444 */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(210 100% 60%) 100%);
    --gradient-hero: linear-gradient(135deg, hsl(210 100% 6%) 0%, hsl(210 100% 12%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(var(--white)) 0%, hsl(var(--gray-50)) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.25s ease-in-out;
    --transition-slow: 0.35s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: hsl(var(--gray-700));
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: hsl(var(--white));
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: hsl(var(--gray-800));
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--gray-600));
    margin-bottom: 3rem;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsl(var(--gray-200));
    transition: all var(--transition-base);
    padding: 1rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--gray-800)) !important;
    text-decoration: none;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: hsl(var(--gray-700)) !important;
    margin: 0 0.5rem;
    transition: all var(--transition-base);
    position: relative;
}

.nav-link:hover {
    color: hsl(var(--primary)) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: hsl(var(--primary));
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, hsl(var(--primary-dark)) 0%, hsl(210 100% 55%) 100%);
}

.btn-outline-primary {
    border: 2px solid hsl(var(--primary));
    color: hsl(var(--primary));
    background: transparent;
}

.btn-outline-primary:hover {
    background: hsl(var(--primary));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #0066FF, #0052CC);
    opacity: 0.1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.badge-text {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 82, 204, 0.1);
    color: #0052CC;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-highlights {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    background:  rgba(0, 82, 204, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0052CC;
    font-size: 1.25rem;
}

.highlight-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.highlight-text p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-primary {
    background: #0052CC;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn-outline {
    background: transparent;
    color: #0052CC;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid #0052CC;
}

.btn-outline:hover {
    background:  rgba(0, 82, 204, 0.1);
    transform: translateY(-2px);
}

.hero-stats {
    position: relative;
}

.stat-group {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #0052CC;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-cards {
    position: relative;
    z-index: 2;
}

.card-wrapper {
    position: relative;
    height: 500px;
}

.service-card {
    position: absolute;
    width: 300px;
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #0052CC, #0066FF);
    color: white;
}

.card-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 82, 204, 0.05);
}

.card-3 {
    bottom: 0;
    right: 0;
    background: rgba(0, 82, 204, 0.05);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 82, 204, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #0052CC;
}

.card-1 .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1f2937;
}

.card-1 .card-content h3 {
    color: white;
}

.card-content p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.card-1 .card-content p {
    color: rgba(255, 255, 255, 0.8);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background: hsl(var(--gray-50));
}

.service-card {
    background: var(--gradient-card);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    border: 1px solid hsl(var(--gray-200));
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: all var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 2px solid hsl(var(--primary));
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: hsl(var(--gray-800));
    margin-bottom: 1rem;
}

.service-description {
    color: hsl(var(--gray-600));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    color: hsl(var(--gray-600));
}

.service-card .btn {
    margin-top: auto;
}

/* About Section */
.about-section {
    background: white;
}

.about-text {
    font-size: 1.125rem;
    color: hsl(var(--gray-600));
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.stat-label {
    color: hsl(var(--gray-600));
    font-weight: 500;
    margin: 0;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.image-placeholder {
    text-align: center;
    padding: 3rem;
    background: hsl(var(--gray-50));
    border-radius: 1rem;
    border: 2px dashed hsl(var(--gray-300));
    color: hsl(var(--gray-500));
}

/* Contact Section */
.contact-section {
    background: hsl(var(--gray-50));
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    height: 100%;
    transition: all var(--transition-base);
    border: 1px solid hsl(var(--gray-200));
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h4 {
    color: hsl(var(--gray-800));
    margin-bottom: 1rem;
}

.contact-card p {
    color: hsl(var(--gray-600));
    line-height: 1.6;
    margin: 0;
}

/* Lead Form Section */
.lead-form-section {
    background: var(--gradient-hero);
    color: white;
    position: relative;
    overflow: hidden;
}

.lead-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(0, 102, 255, 0.1) 0%, transparent 50%);
}

/* Form Info Section */
.form-info {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.info-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.3);
    margin-bottom: 1rem;
}

.info-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.info-subtitle {
    font-size: 1.125rem;
    color: hsl(var(--gray-300));
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Benefits List */
.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 102, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: hsl(var(--primary));
    font-size: 1rem;
}

.benefit-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: hsl(var(--gray-400));
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

/* Customer Reviews */
.customer-reviews {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-stars {
    margin-bottom: 0.75rem;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.875rem;
    margin-right: 0.125rem;
}

.review-text {
    color: hsl(var(--gray-300));
    font-style: italic;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.review-author {
    color: hsl(var(--gray-400));
    font-size: 0.75rem;
    font-weight: 500;
}

/* Form Container */
.form-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
}

.form-header .form-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.form-header .form-subtitle {
    font-size: 1rem;
    color: hsl(var(--gray-300));
    margin-bottom: 1.5rem;
}

/* Enhanced Form Inputs */
.lead-form-section .form-select,
.lead-form-section .form-control {
    min-height: 56px;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    box-shadow: none;
}

.lead-form-section .form-floating > .form-control:focus,
.lead-form-section .form-floating > .form-select:focus {
    background-color: rgba(0, 0, 0, 0.4); /* Slightly darker on focus */
    border-color: none; /* More prominent border on focus */
    border-bottom: none; /* Ensure no bottom border on focus */
    outline: none; /* Remove outline on focus */
    color: white !important; /* Explicitly set text color to white on focus */
    box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.15); /* Adjusted focus shadow */
    transform: none;
}

.lead-form-section .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0.75rem 1rem;
    pointer-events: none;
    border: none; /* Ensure no border on the label */
    background: none; /* Ensure no background on the label */
    transform-origin: 0 0;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7); /* Adjusted label color for better contrast */
    font-weight: 400;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.lead-form-section .form-floating > .form-control:focus ~ label,
.lead-form-section .form-floating > .form-control:not(:placeholder-shown) ~ label,
.lead-form-section .form-floating > .form-select:focus ~ label,
.lead-form-section .form-floating > .form-select:not([value=""]) ~ label {
    color: rgba(255, 255, 255, 0.9); /* Lighter label color when active */
    transform: scale(0.85) translateY(-0.85rem) translateX(0.15rem);
    background: none; /* Ensure no background on the active label */
    padding: 0 0.5rem;
    border-radius: 0;
    width: auto;
    height: auto;
    font-size: 0.875rem;
    border: none; /* Ensure no border on the active label */
    box-shadow: none; /* Remove any box shadow on the active label */
}

/* Ensure text color is white for form inputs */
.lead-form-section .form-control,
.lead-form-section .form-select,
.lead-form-section textarea.form-control {
    color: white !important; /* Explicitly set text color to white */
    background-color: rgba(0, 0, 0, 0.3); /* Ensure consistent dark background */
    border: none; /* Ensure consistent border */
}

.lead-form-section .form-control option {
    color: var(--text); /* Options in select should have a readable background */
    background-color: var(--background); /* Options background */
}

/* Custom Checkbox */
.lead-form-section .custom-checkbox {
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.lead-form-section .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
}

.lead-form-section .form-check-label {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

/* Submit Button Enhanced */
.lead-form-section .submit-btn {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: white;
}

.lead-form-section .submit-btn:hover {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: hsl(var(--gray-300));
    font-size: 0.875rem;
    font-weight: 500;
}

.security-item i {
    font-size: 1rem;
}

.form-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

/* Footer */
.footer {
    background: hsl(var(--gray-900));
    color: hsl(var(--gray-400));
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-text {
    margin: 0;
    color: hsl(var(--gray-500));
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: end;
    margin-bottom: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: hsl(var(--gray-800));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--gray-400));
    text-decoration: none;
    transition: all var(--transition-base);
}

.social-link:hover {
    background: hsl(var(--primary));
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cards {
        margin-top: 60px;
    }
    
    .card-wrapper {
        height: auto;
        display: grid;
        gap: 24px;
    }
    
    .service-card {
        position: relative;
        width: 100%;
    }
    
    .card-2 {
        transform: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .stat-group {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .service-card,
    .contact-card {
        padding: 1.5rem;
    }
    
    .floating-card {
        padding: 1rem;
        font-size: 0.875rem;
    }
    
    .floating-card i {
        font-size: 1.25rem;
    }
    
    .lead-form-section .custom-checkbox {
        flex-direction: row;
        align-items: flex-start;
        padding-left: 0;
        gap: 0.75rem;
    }
    .lead-form-section .form-check-input {
        margin-right: 0;
        margin-top: 0.2rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .lead-form-section .form-check-label {
        font-size: 1rem;
        line-height: 1.4;
        display: block;
        margin-left: 0;
        margin-top: 0;
        word-break: break-word;
        flex: 1;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--gray-100));
}

::-webkit-scrollbar-thumb {
    background: hsl(var(--gray-400));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary));
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.navbar-logo {
    height: 60px;
    width: 50px;
    vertical-align: middle;
}

.min-vh-75 {
    min-height: 75vh;
}

/* HERO SECTION CARDS - COMPACT, EVEN, MODERN */
.hero-section .hero-cards {
  max-width: 780px;
  margin-left: auto;
}
.hero-section .card-wrapper {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-end;
}
.hero-section .service-card,
.hero-section .card-1,
.hero-section .card-2,
.hero-section .card-3 {
  position: static !important;
  width: 200px;
  height: 120px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,41,59,0.08);
  padding: 14px 16px 14px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border: 1px solid #f1f5f9;
  margin: 0;
  transition: box-shadow 0.16s, transform 0.16s;
}
.hero-section .service-card:hover {
  box-shadow: 0 6px 18px rgba(30,41,59,0.13);
  transform: translateY(-2px) scale(1.03);
}
.hero-section .card-icon {
  width: 32px;
  height: 32px;
  background: #e3edfa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1976d2;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.hero-section .card-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
}
.hero-section .card-content p {
  font-size: 0.88rem;
  color: #4b5563;
  margin-bottom: 0;
}
.hero-section .card-badge {
  background: #1976d2;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  border-radius: 7px;
  padding: 2px 8px;
  margin-top: 2px;
  display: inline-block;
  position: absolute;
  top: 8px;
  right: 8px;
}
@media (max-width: 991.98px) {
  .hero-section .hero-cards {
    max-width: 100vw;
  }
  .hero-section .card-wrapper {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }
  .hero-section .service-card,
  .hero-section .card-1,
  .hero-section .card-2,
  .hero-section .card-3 {
    width: 95vw;
    height: 100px;
    padding: 10px 8px;
    font-size: 0.9rem;
    flex-direction: row;
    align-items: center;
  }
}

/* Custom padding for select fields in lead form */
.lead-form-section .form-select {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.5rem;
    padding-right: 2.5rem;
    font-size: 1.18rem;
}
