/* =============================================
   DR Home Services - Global Styles
   ============================================= */

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #FFFFFF; }
::-webkit-scrollbar-thumb { background: #DC2626; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #B91C1C; }

/* =============================================
   Scroll-triggered Animations
   ============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}
.fade-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* =============================================
   Background Textures & Patterns
   ============================================= */
.bg-grid-pattern {
    background-image:
        linear-gradient(rgba(220, 38, 38, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
.bg-dots-pattern {
    background-image: radial-gradient(rgba(220, 38, 38, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
}
.bg-diagonal-lines {
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(220, 38, 38, 0.02) 10px,
        rgba(220, 38, 38, 0.02) 20px
    );
}
.bg-gradient-mesh {
    background:
        radial-gradient(ellipse at 20% 20%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 60%, rgba(17, 17, 17, 0.03) 0%, transparent 40%);
}
.bg-noise {
    position: relative;
}
.bg-noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

/* Floating decorative elements */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
    will-change: transform;
}
.floating-shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #DC2626 0%, transparent 70%);
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}
.floating-shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #DC2626 0%, transparent 70%);
    bottom: 20%;
    left: -50px;
    animation-delay: -10s;
}
.floating-shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, #111111 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation-delay: -5s;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(0, -30px) rotate(0deg); }
    75% { transform: translate(-20px, -10px) rotate(-5deg); }
}

/* =============================================
   Animated Gradient Border
   ============================================= */
.gradient-border {
    position: relative;
    background: white;
}
.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: linear-gradient(135deg, #DC2626, #F87171, #DC2626);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    border-radius: inherit;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    pointer-events: none;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Glow effects */
.glow-effect {
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.15);
}
.glow-red {
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.15);
}

/* Animated underline */
.animated-underline {
    position: relative;
    display: inline-block;
}
.animated-underline::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #DC2626, #F87171, #DC2626);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
    0%, 100% { background-position: -100% 0; }
    50% { background-position: 100% 0; }
}

/* Parallax-like depth layers */
.depth-layer {
    position: relative;
    overflow: hidden;
}
.depth-layer::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
    animation: pulse-glow 8s ease-in-out infinite;
    will-change: transform, opacity;
}
@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

/* =============================================
   3D Charcoal Navbar
   ============================================= */
.navbar {
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #3a3a3a 0%, #2d2d2d 50%, #252525 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid #1a1a1a;
}
.navbar.scrolled {
    background: linear-gradient(180deg, rgba(58, 58, 58, 0.9) 0%, rgba(45, 45, 45, 0.9) 50%, rgba(37, 37, 37, 0.9) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================
   Buttons
   ============================================= */
.btn-primary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before {
    left: 100%;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.4);
}

.btn-outline {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(255, 255, 255, 0.2);
}

/* =============================================
   Nav Links
   ============================================= */
.nav-link {
    position: relative;
    color: #e5e5e5;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #DC2626;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}
.nav-link:hover {
    color: #ffffff;
}
.nav-link-active {
    color: #DC2626;
}

/* =============================================
   Footer Links
   ============================================= */
.footer-link {
    transition: all 0.2s ease;
}
.footer-link:hover {
    color: #DC2626;
    transform: translateX(4px);
}

/* =============================================
   Form Inputs
   ============================================= */
.form-input {
    transition: all 0.3s ease;
}
.form-input:focus {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(220, 38, 38, 0.15);
}

/* =============================================
   Contact Form Mobile
   ============================================= */
@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 1.5rem !important;
    }
}

/* =============================================
   Service Cards
   ============================================= */
.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(220, 38, 38, 0.25);
}
.service-card .icon-wrapper {
    transition: all 0.3s ease;
}
.service-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: rgba(220, 38, 38, 0.2);
}
.service-card .learn-more {
    transition: all 0.3s ease;
}
.service-card:hover .learn-more {
    gap: 12px;
}

/* =============================================
   Flip Cards (Homepage Gallery)
   ============================================= */
.flip-card {
    perspective: 1000px;
    -webkit-perspective: 1000px;
    cursor: pointer;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}
@media (hover: hover) {
    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }
}
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}
.flip-card-front {
    background-size: cover;
    background-position: center;
    z-index: 2;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
}
.flip-card-front::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.flip-card-back {
    background: #DC2626;
    transform: rotateY(180deg);
    -webkit-transform: rotateY(180deg);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    .flip-card-back {
        padding: 2rem;
    }
}
.flip-card-back::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.flip-card-front .tap-hint {
    display: block;
}
@media (hover: hover) {
    .flip-card-front .tap-hint {
        display: none;
    }
}

/* =============================================
   Review Carousel
   ============================================= */
.review-carousel {
    position: relative;
}
.review-carousel-track {
    display: flex;
}
.review-slide {
    min-width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .review-slide {
        min-width: 50%;
        padding: 0 0.75rem;
    }
}
.review-card {
    background: #FAF9F6;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.review-card p.review-text {
    flex-grow: 1;
}
@media (max-width: 767px) {
    .review-card p.review-text {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}
@media (min-width: 768px) {
    .review-card {
        padding: 2rem;
    }
}
.review-nav-btn {
    opacity: 0.9;
}
.review-nav-btn:hover {
    opacity: 1;
}
.review-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    padding: 8px;
    border: none;
    border-radius: 50%;
    background: #D1D5DB;
    background-clip: content-box;
    box-sizing: content-box;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}
.review-dot:hover {
    background: #9CA3AF;
    background-clip: content-box;
}
.review-dot.active {
    background: #DC2626;
    background-clip: content-box;
    transform: scale(1.2);
}
@media (max-width: 767px) {
    .review-dot {
        width: 8px;
        height: 8px;
        min-width: 8px;
        min-height: 8px;
    }
    .review-dots {
        gap: 6px;
    }
}

/* =============================================
   Process / Timeline Cards
   ============================================= */
.process-grid {
    position: relative;
}
.process-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #DC2626, #F87171);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.process-card:hover::before {
    transform: scaleX(1);
}
.process-card:hover {
    transform: translateY(-12px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(220, 38, 38, 0.2);
}
.process-number {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(220, 38, 38, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    transition: all 0.5s ease;
}
.process-card:hover .process-number {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.5) 0%, rgba(220, 38, 38, 0.2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}
.process-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px -4px rgba(220, 38, 38, 0.4);
    transition: all 0.4s ease;
}
.process-card:hover .process-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 32px -4px rgba(220, 38, 38, 0.5);
}
.process-connector {
    display: none;
}
@media (min-width: 768px) {
    .process-connector {
        display: block;
        position: absolute;
        top: 50%;
        right: -2rem;
        width: 4rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(220, 38, 38, 0.5), transparent);
    }
    .process-connector::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 8px;
        height: 8px;
        background: #DC2626;
        border-radius: 50%;
        opacity: 0.5;
    }
}

/* =============================================
   Testimonial Cards
   ============================================= */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(220, 38, 38, 0.2);
}
.testimonial-card .avatar {
    transition: all 0.3s ease;
}
.testimonial-card:hover .avatar {
    transform: scale(1.1);
}

/* =============================================
   Contact Card
   ============================================= */
.contact-card {
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(220, 38, 38, 0.15);
}

/* =============================================
   Location Card
   ============================================= */
.location-card {
    transition: all 0.3s ease;
}
.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px -4px rgba(220, 38, 38, 0.15);
}

/* =============================================
   Blog Cards & Content
   ============================================= */
.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(220, 38, 38, 0.25);
}

.blog-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #1f2937;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.blog-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.375rem;
    font-weight: 500;
    color: #1f2937;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.blog-content p {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
    .blog-content h2 { font-size: 2rem; }
    .blog-content h3 { font-size: 1.5rem; }
}

/* =============================================
   Icon & Trust Badge Hovers
   ============================================= */
.icon-hover {
    transition: transform 0.3s ease;
}
.icon-hover:hover {
    transform: rotate(15deg) scale(1.1);
}

.trust-badge {
    transition: all 0.3s ease;
}
.trust-badge:hover {
    transform: translateY(-2px);
}
.trust-badge:hover i {
    transform: scale(1.2);
}

/* =============================================
   Hero Video (Homepage)
   ============================================= */
.hero-video-container {
    position: relative;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(28, 28, 30, 0.5) 0%,
        rgba(28, 28, 30, 0.35) 50%,
        rgba(28, 28, 30, 0.25) 100%
    );
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.text-shadow {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
}
.text-shadow-strong {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 4px 25px rgba(0, 0, 0, 0.5);
}

/* Diego Overlay Image */
.hero-image-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
    max-height: 95%;
    width: auto;
    max-width: 38%;
}
@media (max-width: 1023px) {
    .hero-image-overlay {
        max-width: 35%;
        opacity: 0.9;
    }
}
@media (max-width: 767px) {
    .hero-image-overlay {
        max-width: 42%;
        opacity: 0.85;
    }
}
@media (max-width: 480px) {
    .hero-image-overlay {
        max-width: 50%;
        opacity: 0.8;
    }
}

/* =============================================
   Mobile Sticky CTA
   ============================================= */
.mobile-sticky-cta {
    display: none;
}
@media (max-width: 767px) {
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.95) 100%);
        padding: 12px 16px;
        z-index: 40;
        border-top: 1px solid rgba(220, 38, 38, 0.3);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    .mobile-sticky-cta a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        background: #DC2626;
        color: white;
        padding: 14px 20px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 15px;
    }
    .mobile-sticky-cta.hidden {
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }
    .mobile-sticky-cta:not(.hidden) {
        transform: translateY(0);
        transition: transform 0.3s ease;
    }
}

/* =============================================
   Mobile Optimizations
   ============================================= */
@media (max-width: 767px) {
    #mobile-menu a {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    #mobile-menu .pl-4 a {
        padding: 10px 0;
        min-height: 40px;
    }
    section {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
    body {
        padding-bottom: 76px;
    }
    a, button {
        min-height: 44px;
    }
    .btn-primary:active, .btn-outline:active {
        transform: scale(0.98);
    }

    /* Homepage-specific mobile */
    .hero-video-container {
        min-height: 85vh !important;
    }
    .px-6 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .footer-columns {
        gap: 2rem !important;
    }
    .process-card {
        padding: 1.5rem 1.25rem;
    }
    .process-number {
        font-size: 3.5rem;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
    .service-card .p-8 {
        padding: 1.5rem;
    }
}

/* Financing Banner */
.financing-banner {
    background-color: #DC2626;
    color: #fff;
    text-align: center;
    padding: 12px 16px;
    font-family: "Inter", sans-serif;
    position: relative;
    z-index: 40;
}
.financing-banner a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.financing-banner-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.financing-banner-text {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}
.financing-banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.financing-banner a:hover .financing-banner-cta {
    opacity: 1;
    text-decoration-thickness: 2px;
}
@media (max-width: 767px) {
    .financing-banner a {
        flex-direction: column;
        gap: 4px;
    }
    .financing-banner-title {
        font-size: 14px;
    }
}

@media (max-width: 374px) {
    .btn-primary, .btn-outline {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        font-size: 14px;
    }
    .hero-video-container {
        min-height: 90vh !important;
    }
    .floating-shape {
        display: none;
    }
}
