/* Landing Page Specific Styles - Extracted from inline styles for better performance */

/* Hide Sub-Navigation Bar on Landing Page - Multiple aggressive selectors */
body.landing-page header .bg-sg-light-gray,
body.landing-page .sub-nav,
body.landing-page header div.bg-sg-light-gray.border-t,
body.landing-page header .bg-sg-light-gray.border-t.border-gray-200,
header .bg-sg-light-gray.border-t.border-gray-200,
header div.bg-sg-light-gray,
.sub-nav,
div.bg-sg-light-gray.border-t {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    opacity: 0 !important;
}

/* Hide Main Navigation Menu Items on Landing Page */
body.landing-page header nav[aria-label="Primary navigation"],
body.landing-page header nav.hidden.lg\:flex,
body.landing-page header .hidden.lg\:flex.items-center.space-x-6,
header nav[aria-label="Primary navigation"] {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide Default Footer Component on Landing Page */
body.landing-page footer:not(.landing-footer),
body.landing-page footer.bg-white,
body.landing-page > footer,
body.landing-page main + footer,
body.landing-page footer {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    opacity: 0 !important;
}

/* Ensure header has proper z-index above urgency banner */
body.landing-page header {
    z-index: 50 !important;
    position: relative;
}

/* Enhanced Landing Page Header Styling */
body.landing-page header {
    background: linear-gradient(135deg, #ffffff 0%, var(--sg-light-gray) 100%);
    border-bottom: 2px solid #e0e7ff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body.landing-page header .max-w-6xl {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

body.landing-page header .flex.justify-between {
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Larger, more prominent logo on landing page */
body.landing-page header .header-logo {
    height: 4rem !important;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

body.landing-page header .header-logo:hover {
    transform: scale(1.15);
}

/* Hide search icon on landing page for cleaner look */
body.landing-page header #search-toggle {
    display: none !important;
}

/* Enhanced Book Consultation button for landing page */
body.landing-page header .btn-primary {
    background: linear-gradient(135deg, var(--sg-light-blue) 0%, var(--sg-navy) 100%);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 10px 25px -5px rgba(29, 78, 216, 0.4);
    border-radius: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 200px;
    text-align: center;
    white-space: nowrap;
}

/* Responsive styles for mobile devices */
@media (max-width: 640px) {
    body.landing-page header .btn-primary {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
        min-width: auto;
        max-width: 140px;
        white-space: normal;
        line-height: 1.2;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    body.landing-page header .btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
        max-width: 120px;
        letter-spacing: 0.2px;
    }
}

body.landing-page header .btn-primary:hover {
    background: linear-gradient(135deg, var(--sg-navy) 0%, var(--sg-light-blue) 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(29, 78, 216, 0.5);
}

/* Center content better on landing page */
body.landing-page header .flex.justify-between.items-center {
    padding: 1.5rem 0;
}

/* Landing Page Specific Styles */
.landing-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1e3a8a 50%, #1e40af 75%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-button {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.cta-button-secondary {
    background: white;
    color: var(--sg-light-blue);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

/* Service Cards */
.service-card-landing {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card-landing:hover::before {
    transform: translateX(100%);
}

.service-card-landing:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sg-sky-blue) 0%, var(--sg-light-blue) 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.75rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.service-card-landing:hover .service-icon-large {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3);
}

.service-icon-large::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 1.25rem;
    padding: 3px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-landing:hover .service-icon-large::after {
    opacity: 1;
}

.service-card-landing h3 {
    transition: color 0.3s ease;
}

.service-card-landing:hover h3 {
    color: var(--sg-light-blue);
}

.service-card-landing a {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--sg-light-blue);
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 0.5rem;
}

.service-card-landing a:hover {
    background: linear-gradient(135deg, var(--sg-light-blue) 0%, var(--sg-navy) 100%);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.4);
    border-color: transparent;
}

.service-card-landing ul li {
    transition: transform 0.2s ease;
}

.service-card-landing:hover ul li {
    transform: translateX(5px);
}

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

.service-card-landing {
    animation: cardFadeIn 0.6s ease-out backwards;
}

.service-card-landing:nth-child(1) { animation-delay: 0.1s; }
.service-card-landing:nth-child(2) { animation-delay: 0.2s; }
.service-card-landing:nth-child(3) { animation-delay: 0.3s; }
.service-card-landing:nth-child(4) { animation-delay: 0.4s; }
.service-card-landing:nth-child(5) { animation-delay: 0.5s; }
.service-card-landing:nth-child(6) { animation-delay: 0.6s; }

/* Benefit Cards */
.benefit-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.benefit-card:hover::before {
    transform: translateX(100%);
}

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.3);
}

.benefit-icon-wrapper i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
}

.benefit-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.5rem;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-icon-wrapper::after {
    opacity: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-title {
    color: var(--sg-light-blue);
}

.benefit-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-description {
    color: #4b5563;
}

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

.benefit-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }

/* How It Works Section */
.how-it-works-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.how-it-works-section > div {
    position: relative;
    z-index: 1;
}

.process-step-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    height: 100%;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.5), transparent);
    border-radius: 1.5rem 1.5rem 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.process-step-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(30, 64, 175, 0.3);
}

.process-step-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px -5px rgba(30, 64, 175, 0.3);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.process-step-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.3), rgba(30, 58, 138, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.process-step-card:hover .process-step-icon::after {
    opacity: 1;
}

.process-step-card:hover .process-step-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 30px -5px rgba(30, 64, 175, 0.5);
}

.process-step-icon span,
.process-step-icon i {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    position: relative;
}

.process-step-icon.step-1 {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.process-step-icon.step-2 {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.process-step-icon.step-3 {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 100%);
}

.process-step-icon.step-4 {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.process-step-icon.step-5 {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.process-step-card:hover .process-step-title {
    color: #1e40af;
}

.process-step-description {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.6;
}

.process-connector {
    position: absolute;
    top: 45px;
    right: -24px;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.7) 0%, rgba(30, 64, 175, 0.7) 50%, rgba(30, 58, 138, 0.7) 100%);
    z-index: 0;
    display: none;
}

.process-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 10px solid rgba(30, 58, 138, 0.9);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
    }
}

@media (max-width: 767px) {
    .process-step-card {
        margin-bottom: 2rem;
    }
    
    .process-step-icon {
        width: 80px;
        height: 80px;
    }
    
    .process-step-icon span,
    .process-step-icon i {
        font-size: 2rem;
    }
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.process-step-card {
    animation: stepFadeIn 0.6s ease-out backwards;
}

.process-step-card:nth-child(1) { animation-delay: 0.1s; }
.process-step-card:nth-child(2) { animation-delay: 0.2s; }
.process-step-card:nth-child(3) { animation-delay: 0.3s; }
.process-step-card:nth-child(4) { animation-delay: 0.4s; }
.process-step-card:nth-child(5) { animation-delay: 0.5s; }

/* Pricing Box */
.pricing-info-box {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid #93c5fd;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 10px 25px -5px rgba(30, 64, 175, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #1e40af, #2563eb);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.pricing-info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -5px rgba(30, 64, 175, 0.3);
    border-color: #60a5fa;
}

.pricing-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 1rem;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
}

.form-container {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 2rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}

@media (min-width: 768px) {
    .landing-hero {
        min-height: auto;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .form-container {
        padding: 1.25rem;
    }
    
    .form-container h2 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .form-container p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
}

@media (min-width: 1024px) {
    .landing-hero {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--sg-sky-blue);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--sg-light-blue) 0%, var(--sg-sky-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-left: 5px solid var(--sg-sky-blue);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    border-left-color: #2563eb;
}

.testimonial-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.testimonial-card:hover .testimonial-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    letter-spacing: 2px;
    margin-top: 1rem;
}

.testimonial-stars i {
    text-shadow: 0 2px 4px rgba(251, 191, 36, 0.3);
    transition: transform 0.2s ease;
}

.testimonial-card:hover .testimonial-stars i {
    transform: scale(1.1);
}

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

.testimonial-card {
    animation: testimonialFadeIn 0.6s ease-out backwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.final-cta-section > div {
    position: relative;
    z-index: 1;
}

.cta-feature-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.25rem;
    padding: 2rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.cta-feature-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.3);
}

.cta-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.cta-feature-box:hover .cta-feature-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.cta-feature-icon i {
    font-size: 2rem;
    color: white;
}

.cta-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.cta-feature-description {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.final-cta-button-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    border: 2px solid transparent;
}

.final-cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.final-cta-button-secondary {
    background: white;
    color: #1e3a8a;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
}

.final-cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(255, 255, 255, 0.3);
    color: #1e293b;
}

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

.cta-feature-box {
    animation: ctaFadeIn 0.6s ease-out backwards;
}

.cta-feature-box:nth-child(1) { animation-delay: 0.1s; }
.cta-feature-box:nth-child(2) { animation-delay: 0.2s; }
.cta-feature-box:nth-child(3) { animation-delay: 0.3s; }

.final-cta-heading {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .final-cta-heading {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-heading {
        font-size: 4.5rem;
    }
}

.final-cta-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
    .final-cta-description {
        font-size: 1.5rem;
    }
}

/* Contact Information */
.cta-contact-item {
    backdrop-filter: blur(15px);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-contact-item:nth-child(1) {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

.cta-contact-item:nth-child(1)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #2563eb, #1e40af);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cta-contact-item:nth-child(1):hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(37, 99, 235, 0.25) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.4);
}

.cta-contact-item:nth-child(1):hover::before {
    transform: scaleX(1);
}

.cta-contact-item:nth-child(2) {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.15) 100%);
    border-color: rgba(16, 185, 129, 0.3);
}

.cta-contact-item:nth-child(2)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #047857);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cta-contact-item:nth-child(2):hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(5, 150, 105, 0.25) 100%);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.4);
}

.cta-contact-item:nth-child(2):hover::before {
    transform: scaleX(1);
}

.cta-contact-item:nth-child(3) {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.cta-contact-item:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #7c3aed, #6d28d9);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.cta-contact-item:nth-child(3):hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(124, 58, 237, 0.25) 100%);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.4);
}

.cta-contact-item:nth-child(3):hover::before {
    transform: scaleX(1);
}

.cta-contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-contact-item:nth-child(1) .cta-contact-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-color: rgba(59, 130, 246, 0.5);
}

.cta-contact-item:nth-child(2) .cta-contact-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: rgba(16, 185, 129, 0.5);
}

.cta-contact-item:nth-child(3) .cta-contact-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-color: rgba(139, 92, 246, 0.5);
}

.cta-contact-item:hover .cta-contact-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

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

.cta-contact-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.cta-contact-value {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.cta-office-location {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-office-location:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cta-office-city {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.cta-office-address {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    line-height: 1.7;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 0.875rem 1rem;
    text-align: center;
    font-weight: 600;
    position: relative;
    z-index: 30;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    animation: slideDown 0.5s ease-out, pulse-glow 3s ease-in-out infinite 0.5s;
    margin-bottom: 0;
    font-size: 0.9375rem;
}

.urgency-banner.scrolled {
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5), 0 0 30px rgba(239, 68, 68, 0.3);
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #f87171 0%, #ef4444 50%, #dc2626 100%);
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

.urgency-banner .max-w-7xl {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: textPulse 2s ease-in-out infinite;
}

.urgency-banner.scrolled .max-w-7xl {
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

@keyframes textPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1), 0 0 0 8px rgba(239, 68, 68, 0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .form-container {
        position: relative;
        top: 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Footer Styles */
.landing-footer {
    background: linear-gradient(to bottom, #f8fafc 0%, #e2e8f0 100%);
    border-top: 3px solid #1e3a8a;
    padding: 4rem 0 0;
}

.footer-content {
    background: white;
    border-radius: 1.5rem 1.5rem 0 0;
    padding: 3rem 2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-column ul li a {
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    font-size: 0.9375rem;
}

.footer-column ul li a:hover {
    color: #1e3a8a;
    transform: translateX(5px);
}

.footer-column ul li a i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
    opacity: 0.6;
}

.footer-logo-section {
    margin-bottom: 1.5rem;
}

.footer-logo-section img {
    max-height: 60px;
    margin-bottom: 1rem;
}

.footer-mara-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-phone-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    margin-bottom: 1.5rem;
}

.footer-phone-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
}

.footer-phone-button i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
}

.footer-links-section {
    margin-top: 1.5rem;
}

.footer-links-section a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
}

.footer-links-section a:hover {
    color: #1e3a8a;
}

.footer-contact-office {
    margin-bottom: 1.5rem;
}

.footer-contact-office:last-child {
    margin-bottom: 0;
}

.footer-office-city {
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-office-details {
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer-office-details p {
    margin: 0.25rem 0;
}

.footer-office-details a {
    color: #1e3a8a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-office-details a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.footer-bottom-bar {
    background: #1e293b;
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
}

.footer-bottom-left {
    flex: 1;
    min-width: 250px;
}

.footer-bottom-right {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-right a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: white;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-content {
        padding: 2rem 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-right {
        justify-content: center;
    }
}

