/* Custom CSS for GIC Landing Page */

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: url('/best-gic-rates.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

/* Form Container */
.form-container {
    position: relative;
    z-index: 2;
}

.form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 0.8s ease-out;
}

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

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

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

.form-subtitle {
    color: var(--text-light);
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: block;
}

.form-control, .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.input-group-text {
    background: var(--bg-light);
    border: 2px solid #e5e7eb;
    border-right: none;
    color: var(--text-light);
    font-weight: 600;
}

.input-group .form-control {
    border-left: none;
}

.form-check {
    margin-bottom: 1.5rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-footer {
    text-align: center;
    margin-top: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.5rem;
}

/* Rates Section */
.rates-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.rates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%2310b981" stop-opacity="0.05"/><stop offset="100%" stop-color="%2310b981" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.rates-section .container {
    position: relative;
    z-index: 2;
}

/* Rate Update Info */
.rate-update-info {
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    margin-top: 1rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Rate Stats Container */
.rate-stats-container {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.rate-stat-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 1rem;
    transition: all 0.3s ease;
    height: 100%;
}

.rate-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: white;
}

.rate-stat-card .stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.rate-stat-card .stat-content {
    flex: 1;
}

.rate-stat-card .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.rate-stat-card .stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Enhanced Rate Cards */
.rate-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    height: 100%;
}

.rate-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.rate-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.02);
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
}

.rate-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.rate-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.rate-badge-small {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.rate-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.rate-percentage {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.rate-description {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.rate-features {
    text-align: left;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Rate Example */
.rate-example {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.example-title {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.example-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Additional Rates */
.additional-rates {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.additional-rates-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mini-rate-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mini-rate-card:hover {
    background: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.mini-rate-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.mini-term {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.mini-rate {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.mini-features {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Rate Comparison Table */
.rate-comparison-table {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.table-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.rate-table {
    margin-bottom: 0;
}

.rate-table thead th {
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    padding: 1rem;
    font-size: 0.95rem;
}

.rate-table tbody td {
    padding: 1rem;
    border: none;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.rate-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.05);
}

.rate-table .featured-row {
    background: rgba(37, 99, 235, 0.1);
    border-left: 4px solid var(--primary-color);
}

.rate-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.savings {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Rates CTA */
.rates-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.rates-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

.rates-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.rates-cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.rates-cta-buttons {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.rates-cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.rates-cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.rates-cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.rates-cta-buttons .btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.rates-cta-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.rates-guarantee {
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* GIC Guide Section */
.gic-guide-section {
    padding: 5rem 0;
    background: white;
}

.gic-guide-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.gic-guide-section .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

.gic-guide-section h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.gic-guide-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.gic-guide-section ul, .gic-guide-section ol {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.gic-guide-section table {
    font-size: 1rem;
}

.gic-guide-section .accordion-button {
    font-weight: 600;
    color: var(--text-dark);
}

.gic-guide-section .accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* SEO Links */
.seo-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.seo-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-color);
    text-decoration: none;
}

.seo-link::after {
    content: ' →';
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 700;
}

.seo-link:hover::after {
    opacity: 1;
}

/* Page Styling for Privacy, Terms, Contact */
.main-content {
    padding-top: 6rem;
    padding-bottom: 3rem;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 1rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.content-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-section ul, .content-section ol {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--bg-light);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

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

/* Contact Page Specific Styles */
.contact-form-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(37, 99, 235, 0.1);
    height: 100%;
}

.contact-info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(37, 99, 235, 0.1);
    height: 100%;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-light);
}

.contact-method:last-child {
    border-bottom: none;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.method-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.method-content p {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.method-content small {
    color: var(--text-light);
    font-size: 0.875rem;
}

.faq-section {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
    border: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(37, 99, 235, 0.25);
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .main-content {
        padding-top: 5rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.75rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .contact-form-card,
    .contact-info-card {
        padding: 1rem;
    }
    
    .page-header {
        padding: 1.5rem 1rem;
    }
}

/* Financial Disclaimer Styling */
.financial-disclaimer {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.disclaimer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.disclaimer-content {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #451a03;
}

.disclaimer-content p {
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.disclaimer-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.disclaimer-content li {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.disclaimer-content strong {
    color: #92400e;
    font-weight: 700;
}

.disclaimer-note {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
    font-style: italic;
    border-left: 4px solid #f59e0b;
}

.disclaimer-note i {
    color: #f59e0b;
}

/* Responsive Design for Disclaimer */
@media (max-width: 768px) {
    .financial-disclaimer {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .disclaimer-title {
        font-size: 1rem;
    }
    
    .disclaimer-content p,
    .disclaimer-content li {
        font-size: 0.8rem;
    }
    
    .disclaimer-note {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .financial-disclaimer {
        padding: 0.75rem;
    }
    
    .disclaimer-content p,
    .disclaimer-content li {
        font-size: 0.75rem;
    }
}

/* Thank You Page Styling */
.thank-you-section {
    padding-top: 8rem;
    padding-bottom: 4rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.thank-you-content {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.success-icon {
    font-size: 5rem;
    color: #10b981;
    animation: bounceIn 1s ease-out;
}

.thank-you-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.thank-you-message {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.next-steps h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.step-card {
    background: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step-card p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-info-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-info-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 1rem;
}

.contact-info-box p {
    font-size: 1rem;
    color: #451a03;
    margin-bottom: 0.5rem;
}

.contact-info-box i {
    color: #f59e0b;
}

.action-buttons {
    margin-top: 2rem;
}

.action-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design for Thank You Page */
@media (max-width: 768px) {
    .thank-you-section {
        padding-top: 6rem;
        padding-bottom: 2rem;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
    
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-message {
        font-size: 1.1rem;
    }
    
    .step-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-info-box {
        padding: 1.5rem;
    }
    
    .action-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .action-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .thank-you-content {
        padding: 1.5rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .success-icon {
        font-size: 4rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Responsive Design for Rates */
@media (max-width: 768px) {
    .rate-stats-container {
        padding: 1.5rem;
    }
    
    .rate-stat-card {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .rate-stat-card .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-right: 0.75rem;
    }
    
    .rate-stat-card .stat-number {
        font-size: 1.25rem;
    }
    
    .rate-card {
        padding: 2rem 1.5rem;
    }
    
    .rate-percentage {
        font-size: 3rem;
    }
    
    .additional-rates {
        padding: 1.5rem;
    }
    
    .rate-comparison-table {
        padding: 1.5rem;
    }
    
    .rates-cta {
        padding: 2rem 1.5rem;
    }
    
    .rates-cta-title {
        font-size: 1.75rem;
    }
    
    .rates-cta-subtitle {
        font-size: 1.1rem;
    }
    
    .rates-cta-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .rate-stats-container {
        padding: 1rem;
    }
    
    .rate-card {
        padding: 1.5rem 1rem;
    }
    
    .rate-percentage {
        font-size: 2.5rem;
    }
    
    .additional-rates {
        padding: 1rem;
    }
    
    .rate-comparison-table {
        padding: 1rem;
    }
    
    .rates-cta {
        padding: 1.5rem 1rem;
    }
    
    .rates-cta-title {
        font-size: 1.5rem;
    }
    
    .rates-cta-subtitle {
        font-size: 1rem;
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%232563eb" stop-opacity="0.05"/><stop offset="100%" stop-color="%232563eb" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    background-size: cover;
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

/* Comparison Intro */
.comparison-intro {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.rate-comparison-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    color: white;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Subsection Titles */
.subsection-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.subsection-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Enhanced Feature Cards */
.feature-card.enhanced {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card.enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card.enhanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-card.enhanced .feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.feature-card.enhanced:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.feature-card.enhanced h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card.enhanced p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Call to Action Box */
.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    color: white;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.cta-buttons .btn-outline-primary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.cta-guarantee {
    font-size: 0.95rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-intro {
        padding: 2rem 1.5rem;
    }
    
    .rate-comparison-highlight {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .feature-card.enhanced {
        padding: 2rem 1.5rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .comparison-intro {
        padding: 1.5rem 1rem;
    }
    
    .rate-comparison-highlight {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .feature-card.enhanced {
        padding: 1.5rem 1rem;
    }
    
    .cta-box {
        padding: 1.5rem 1rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Carousel Styling */
#testimonialsCarousel {
    position: relative;
    padding: 0 3rem;
}

.carousel-inner {
    border-radius: 1rem;
    overflow: hidden;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.3);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Carousel Animation Enhancements */
.carousel-item.active {
    animation: slideInFromRight 0.6s ease-out;
}

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

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

/* Responsive Carousel */
@media (max-width: 768px) {
    #testimonialsCarousel {
        padding: 0 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: -20px;
    }
    
    .carousel-control-next {
        right: -20px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    
    .carousel-indicators {
        bottom: -40px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

@media (max-width: 576px) {
    #testimonialsCarousel {
        padding: 0 0.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .carousel-indicators {
        bottom: -30px;
    }
}

/* Footer */
.footer {
    background: var(--text-dark) !important;
    padding: 3rem 0 2rem;
}

.footer h5, .footer h6 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: white;
}

.contact-info p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-cta .btn {
        margin-bottom: 1rem;
    }
    
    .form-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .rate-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .rate-percentage {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        padding-top: 4rem;
    }
}

/* Extra small mobile devices (375px and below) */
@media (max-width: 375px) {
    * {
        box-sizing: border-box;
    }
    
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .container-fluid {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-section {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .form-card {
        margin-left: 5px;
        margin-right: 5px;
        padding: 1rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .rate-card {
        margin-left: 5px;
        margin-right: 5px;
        padding: 1.25rem 0.75rem;
    }
    
    .rate-percentage {
        font-size: 2.25rem;
    }
    
    .feature-card.enhanced {
        margin-left: 5px;
        margin-right: 5px;
        padding: 1.25rem 0.75rem;
    }
    
    .testimonial-card {
        margin-left: 5px;
        margin-right: 5px;
        padding: 1.25rem 0.75rem;
    }
    
    .gic-guide-section {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .gic-guide-section .section-title {
        font-size: 1.75rem;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .gic-guide-section .lead {
        font-size: 1.1rem;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .gic-guide-section h3 {
        font-size: 1.5rem;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .gic-guide-section p {
        font-size: 1rem;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .gic-guide-section ul, .gic-guide-section ol {
        font-size: 1rem;
        padding-left: 20px;
        padding-right: 5px;
    }
    
    .gic-guide-section table {
        font-size: 0.9rem;
        margin-left: 5px;
        margin-right: 5px;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
    
    .btn-lg {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    /* Ensure all sections take full width */
    .features-section,
    .rates-section,
    .testimonials-section,
    .gic-guide-section,
    .hero-section {
        width: 100vw !important;
        max-width: 100vw !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Fix any potential overflow issues */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .col-12,
    .col-md-4,
    .col-md-6,
    .col-lg-4,
    .col-lg-6,
    .col-lg-8,
    .col-lg-10 {
        padding-left: 5px !important;
        padding-right: 5px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Force full width on all elements */
    section {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    
    /* Fix navbar */
    .navbar {
        width: 100vw !important;
        max-width: 100vw !important;
    }
    
    /* Fix footer */
    .footer {
        width: 100vw !important;
        max-width: 100vw !important;
    }
}
    
    .form-card {
        padding: 1rem;
    }
    
    .rate-card {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

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

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

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

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

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-light {
    background-color: var(--bg-light) !important;
}

.bg-dark {
    background-color: var(--text-dark) !important;
}

.text-light {
    color: #9ca3af !important;
}

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

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

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

.fw-bold {
    font-weight: 700 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-control.is-valid {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.invalid-feedback {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: var(--secondary-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
