/* ========================================
   EASYCARS FOOTER - PREMIUM RESPONSIVE
   ======================================== */

/* Root Variables */
:root {
    --footer-primary-orange: #ff7a00;
    --footer-orange-light: #ff9533;
    --footer-orange-dark: #e66a00;
    --footer-white: #ffffff;
    --footer-cream: #f5e7da;
    --footer-dark: #111111;
    --footer-dark-light: #1a1a1a;
    --footer-dark-medium: #222222;
    --footer-gradient-primary: linear-gradient(135deg, #ff7a00, #ff9533);
    --footer-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main Content Section */
.footer-easycars-main-content {
    padding: 1.5rem 1rem;
    text-align: center;
    margin-bottom: 0.8rem;
    position: relative;
    overflow: hidden;
}

.footer-easycars-main-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    animation: footer-pulse 4s ease-in-out infinite;
}

@keyframes footer-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.7; }
}

.footer-easycars-content-title {
    margin-bottom: 1.5rem;
    color: var(--cars-detail-text-light);
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(25px, 3.5vw, 30px);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ff6b35 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShineFlow 6s 
    linear infinite;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.footer-easycars-main-content p {
    font-size: clamp(10px, 1.5vw, 12px);
    opacity: 0.85;
    color: var(--footer-cream);
    font-weight: 500;
    letter-spacing: 0.2px;
    position: relative;
    z-index: 1;
}

/* Premium Footer Container */
.footer-easycars-premium-footer {
    position: relative;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(26, 26, 26, 0.95));
    overflow: hidden;
    z-index: 10;
    border-top: 2px solid rgba(255, 122, 0, 0.3);
    box-shadow: 0 -6px 35px rgba(255, 122, 0, 0.12);
}

.footer-easycars-premium-footer::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.12), transparent 70%);
    border-radius: 50%;
    animation: footer-orb-float 25s ease-in-out infinite;
    filter: blur(50px);
}

.footer-easycars-premium-footer::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 149, 51, 0.1), transparent 70%);
    border-radius: 50%;
    animation: footer-orb-float 30s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes footer-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -25px) scale(1.06); }
    66% { transform: translate(-20px, -30px) scale(0.97); }
}

/* Floating Particles */
.footer-easycars-footer-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.footer-easycars-footer-particle {
    position: absolute;
    width: 2.5px;
    height: 2.5px;
    background: var(--footer-gradient-primary);
    border-radius: 50%;
    animation: footer-float-particle 20s infinite linear;
    opacity: 0.5;
    box-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
}

@keyframes footer-float-particle {
    0% { transform: translateY(100vh) translateX(0) rotate(0deg) scale(0); opacity: 0; }
    10% { opacity: 0.7; transform: translateY(90vh) scale(1); }
    90% { opacity: 0.7; }
    100% { transform: translateY(-100px) translateX(180px) rotate(720deg) scale(0); opacity: 0; }
}

/* Footer Container */
.footer-easycars-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

/* Footer Top Section */
.footer-easycars-footer-top {
    padding: 25px 0 20px;
    border-bottom: 1px solid rgba(255, 122, 0, 0.2);
}

.footer-easycars-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    align-items: start;
}

/* Brand Section */
.footer-easycars-footer-brand {
    animation: footer-slide-in-up 0.8s ease-out;
}

@keyframes footer-slide-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.footer-easycars-brand-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-easycars-brand-logo {
    width: 38px;
    height: 38px;
    background: var(--footer-gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--footer-white);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    transition: var(--footer-transition);
    border: 2px solid rgba(255, 122, 0, 0.5);
    position: relative;
    cursor: pointer;
}

.footer-easycars-brand-logo::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: conic-gradient(from 0deg, #ff7a00, #ff9533, transparent, transparent, #ff7a00);
    border-radius: 17px;
    opacity: 0;
    z-index: -1;
    animation: footer-logo-rotate 4s linear infinite;
}

@keyframes footer-logo-rotate {
    100% { transform: rotate(360deg); }
}

.footer-easycars-brand-logo:hover::before {
    opacity: 1;
}

.footer-easycars-brand-logo:hover {
    transform: translateY(-4px) rotate(8deg) scale(1.06);
    box-shadow: 0 12px 35px rgba(255, 122, 0, 0.5);
}

.footer-easycars-brand-logo a {
    color: inherit;
    text-decoration: none;
}

.footer-easycars-brand-name {
    font-size: 21px;
    font-weight: 900;
    background: var(--footer-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    transition: var(--footer-transition);
    letter-spacing: -0.5px;
    display: inline-block;
}

.footer-easycars-brand-name:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 15px rgba(255, 122, 0, 0.5));
}

.footer-easycars-brand-description {
    color: rgba(245, 231, 218, 0.85);
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Social Links Section */
.footer-easycars-social-section h4 {
    color: var(--footer-white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0.9rem;
    position: relative;
    letter-spacing: -0.15px;
}

.footer-easycars-social-section h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--footer-gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
}

.footer-easycars-social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.footer-easycars-social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 122, 0, 0.1);
    border: 2px solid rgba(255, 122, 0, 0.3);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 1.05rem;
    transition: var(--footer-transition);
    position: relative;
    overflow: hidden;
}

.footer-easycars-social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.3), transparent 70%);
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: inherit;
}

.footer-easycars-social-link:hover::before {
    transform: scale(1);
}

.footer-easycars-social-link:hover {
    transform: translateY(-4px) scale(1.1);
    border-color: var(--footer-primary-orange);
    background: rgba(255, 122, 0, 0.2);
    color: var(--footer-white);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.5);
}

.footer-easycars-social-link.facebook:hover { 
    border-color: #4267b2; 
    box-shadow: 0 8px 25px rgba(66, 103, 178, 0.5); 
}
.footer-easycars-social-link.instagram:hover { 
    border-color: #e1306c; 
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5); 
}
.footer-easycars-social-link.linkedin:hover { 
    border-color: #0077b5; 
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.5); 
}
.footer-easycars-social-link.youtube:hover { 
    border-color: #ff0000; 
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.5); 
}

/* Footer Columns */
.footer-easycars-footer-column {
    animation: footer-slide-in-up 0.8s ease-out;
}

.footer-easycars-footer-column:nth-child(2) { animation-delay: 0.1s; }
.footer-easycars-footer-column:nth-child(3) { animation-delay: 0.2s; }
.footer-easycars-footer-column:nth-child(4) { animation-delay: 0.3s; }

.footer-easycars-footer-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--footer-white);
    margin-bottom: 1rem;
    position: relative;
    letter-spacing: -0.15px;
}

.footer-easycars-footer-title::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 32px;
    height: 2.5px;
    background: var(--footer-gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.5);
}

.footer-easycars-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-easycars-footer-links li {
    margin-bottom: 6px;
}

.footer-easycars-footer-link {
    color: rgba(245, 231, 218, 0.85);
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
    transition: var(--footer-transition);
    position: relative;
    padding: 4px 0;
}

.footer-easycars-footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--footer-primary-orange), var(--footer-orange-light));
    transition: width 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer-easycars-footer-link::after {
    content: '→';
    margin-left: 0;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    color: var(--footer-primary-orange);
}

.footer-easycars-footer-link:hover {
    color: var(--footer-primary-orange);
    padding-left: 8px;
}

.footer-easycars-footer-link:hover::before {
    width: 100%;
}

.footer-easycars-footer-link:hover::after {
    margin-left: 6px;
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info Section */
.footer-easycars-contact-info {
    margin-top: 0.7rem;
}

.footer-easycars-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 8px;
    padding: 8px;
    background: linear-gradient(145deg, rgba(255, 122, 0, 0.08), rgba(255, 149, 51, 0.05));
    border-radius: 12px;
    border: 2px solid rgba(255, 122, 0, 0.2);
    transition: var(--footer-transition);
    position: relative;
    overflow: hidden;
}

.footer-easycars-contact-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.15), transparent);
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.footer-easycars-contact-item:hover::before {
    transform: translateX(100%);
}

.footer-easycars-contact-item:hover {
    background: linear-gradient(145deg, rgba(255, 122, 0, 0.15), rgba(255, 149, 51, 0.1));
    border-color: rgba(255, 122, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.footer-easycars-contact-icon {
    width: 34px;
    height: 34px;
    background: var(--footer-gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-white);
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: var(--footer-transition);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.4);
}

.footer-easycars-contact-item:hover .footer-easycars-contact-icon {
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.6);
}

.footer-easycars-contact-details h6 {
    color: var(--footer-white);
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: -0.05px;
}

.footer-easycars-contact-details span {
    color: rgba(245, 231, 218, 0.87);
    font-size: 10.5px;
    line-height: 1.5;
}

/* Newsletter Section */
.footer-easycars-newsletter-section {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 149, 51, 0.08));
    border-top: 2px solid rgba(255, 122, 0, 0.25);
    border-bottom: 2px solid rgba(255, 122, 0, 0.25);
    padding: 5px 0;
    position: relative;
    overflow: hidden;
}

.footer-easycars-newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.1), rgba(255, 149, 51, 0.08), rgba(255, 122, 0, 0.1), transparent);
    animation: footer-newsletter-flow 12s ease-in-out infinite;
}

@keyframes footer-newsletter-flow {
    0%, 100% { transform: translateX(-15%); }
    50% { transform: translateX(15%); }
}

.footer-easycars-newsletter-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-easycars-newsletter-info {
    flex: 1;
}

.footer-easycars-newsletter-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--footer-white);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    letter-spacing: -0.3px;
}

.footer-easycars-newsletter-icon {
    width: 36px;
    height: 36px;
    background: var(--footer-gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.08rem;
    color: var(--footer-white);
    animation: footer-pulse-icon 3s ease-in-out infinite;
    box-shadow: 0 5px 18px rgba(255, 122, 0, 0.5);
}

@keyframes footer-pulse-icon {
    0%, 100% { transform: scale(1); box-shadow: 0 5px 18px rgba(255, 122, 0, 0.5); }
    50% { transform: scale(1.06); box-shadow: 0 8px 25px rgba(255, 122, 0, 0.7); }
}

.footer-easycars-newsletter-subtitle {
    color: rgba(245, 231, 218, 0.87);
    font-size: 11.5px;
    line-height: 1.55;
}

.footer-easycars-newsletter-form-container {
    flex: 1;
    max-width: 500px;
}

.footer-easycars-newsletter-form {
    display: flex;
    background: rgba(255, 122, 0, 0.12);
    border: 2px solid rgba(255, 122, 0, 0.35);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(25px);
    transition: var(--footer-transition);
    box-shadow: 0 5px 20px rgba(255, 122, 0, 0.25);
}

.footer-easycars-newsletter-form:hover {
    background: rgba(255, 122, 0, 0.16);
    border-color: rgba(255, 122, 0, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 122, 0, 0.35);
}

.footer-easycars-newsletter-input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    background: transparent;
    border: none;
    color: var(--footer-white);
    font-size: 12px;
}

.footer-easycars-newsletter-input:focus {
    outline: none;
}

.footer-easycars-newsletter-input::placeholder {
    color: rgba(245, 231, 218, 0.6);
}

.footer-easycars-newsletter-btn {
    padding: 0.85rem 1.6rem;
    background: var(--footer-gradient-primary);
    color: var(--footer-white);
    border: none;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: var(--footer-transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    letter-spacing: -0.05px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.footer-easycars-newsletter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}

.footer-easycars-newsletter-btn:hover::before {
    width: 260px;
    height: 260px;
}

.footer-easycars-newsletter-btn:hover {
    background: linear-gradient(135deg, var(--footer-orange-light), var(--footer-primary-orange));
    transform: translateX(-3px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.6);
}

.footer-easycars-newsletter-btn span,
.footer-easycars-newsletter-btn i {
    position: relative;
    z-index: 1;
}

/* Footer Bottom Section */
.footer-easycars-footer-bottom {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.75), rgba(10, 10, 10, 0.85));
    backdrop-filter: blur(35px);
    padding: 15px 0;
    position: relative;
    border-top: 1px solid rgba(255, 122, 0, 0.2);
}

.footer-easycars-footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.7), transparent);
}

.footer-easycars-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
}

.footer-easycars-copyright {
    color: rgba(245, 231, 218, 0.87);
    font-size: 11.5px;
}

.footer-easycars-copyright strong {
    color: var(--footer-white);
    font-weight: 700;
}

.footer-easycars-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.footer-easycars-footer-bottom-link {
    color: rgba(245, 231, 218, 0.85);
    text-decoration: none;
    font-size: 11.5px;
    padding: 6px 12px;
    border-radius: 18px;
    transition: var(--footer-transition);
    border: 2px solid rgba(255, 122, 0, 0.2);
    background: rgba(255, 122, 0, 0.08);
}

.footer-easycars-footer-bottom-link:hover {
    color: var(--footer-white);
    background: rgba(255, 122, 0, 0.2);
    border-color: rgba(255, 122, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

/* Back to Top Button */
.footer-easycars-back-to-top {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
    background: var(--footer-gradient-primary);
    color: var(--footer-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--footer-transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transform: translateY(20px) scale(0.7);
    box-shadow: 0 6px 25px rgba(255, 122, 0, 0.5);
    border: 3px solid rgba(255, 122, 0, 0.5);
}

.footer-easycars-back-to-top::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: conic-gradient(from 0deg, #ff7a00, #ff9533, transparent, transparent, #ff7a00);
    border-radius: 50%;
    opacity: 0;
    animation: footer-rotate-border 3s linear infinite;
    z-index: -1;
}

@keyframes footer-rotate-border {
    100% { transform: rotate(360deg); }
}

.footer-easycars-back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.footer-easycars-back-to-top.show:hover::before {
    opacity: 1;
}

.footer-easycars-back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 16px 42px rgba(255, 122, 0, 0.7);
}

/* Notification Styles */
.footer-easycars-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 280px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-left: 5px solid #ff7a00;
    animation: footer-slide-in-right 0.5s ease-out;
}

.footer-easycars-notification.success { border-left-color: #28a745; }
.footer-easycars-notification.error { border-left-color: #dc3545; }

.footer-easycars-notification-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #333;
    font-size: 12px;
}

.footer-easycars-notification-content i {
    font-size: 1.1rem;
    color: #ff7a00;
}

.footer-easycars-notification.success .footer-easycars-notification-content i { color: #28a745; }
.footer-easycars-notification.error .footer-easycars-notification-content i { color: #dc3545; }

.footer-easycars-notification-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #999;
    cursor: pointer;
    margin-left: auto;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--footer-transition);
}

.footer-easycars-notification-close:hover { 
    color: #333; 
    transform: scale(1.1);
}

@keyframes footer-slide-in-right {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes footer-slide-out-right {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop */
@media (min-width: 1400px) {
    .footer-easycars-footer-grid {
        gap: 2.5rem;
    }
    
    .footer-easycars-newsletter-content {
        gap: 2.5rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .footer-easycars-footer-grid {
        gap: 1.8rem;
    }
    
    .footer-easycars-newsletter-content {
        gap: 1.8rem;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .footer-easycars-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem;
    }
    
    .footer-easycars-footer-brand {
        grid-column: 1 / -1;
    }
    
    .footer-easycars-newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 1.3rem;
    }
    
    .footer-easycars-newsletter-title {
        justify-content: center;
    }
    
    .footer-easycars-newsletter-form-container {
        max-width: 100%;
    }
    
    .footer-easycars-footer-top {
        padding: 22px 0 18px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .footer-easycars-main-content {
        padding: 1.3rem 0.9rem;
        margin-bottom: 0.7rem;
    }
    
    .footer-easycars-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-easycars-footer-top {
        padding: 20px 0 16px;
    }
    
    .footer-easycars-footer-title::after,
    .footer-easycars-social-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-easycars-social-links,
    .footer-easycars-brand-header {
        justify-content: center;
    }
    
    .footer-easycars-brand-description {
        text-align: center;
    }
    
    .footer-easycars-newsletter-section {
        padding: 5px 0;
    }
    
    .footer-easycars-newsletter-title {
        font-size: 16px;
    }
    
    .footer-easycars-newsletter-form {
        flex-direction: row;
        border-radius: 20px;
        height: 42px;
    }
    
    .footer-easycars-newsletter-btn {
        justify-content: center;
        border-radius: 0 20px 20px 0;
        padding: 0 1.2rem;
        font-size: 11px;
    }
    
    .footer-easycars-newsletter-btn span {
        display: none;
    }
    
    .footer-easycars-newsletter-input {
        text-align: left;
        border-radius: 20px 0 0 20px;
        padding: 0.75rem 1rem;
        font-size: 11px;
    }
    
    .footer-easycars-footer-bottom {
        padding: 14px 0;
    }
    
    .footer-easycars-footer-bottom-content {
        flex-direction: column;
        gap: 0.9rem;
        text-align: center;
    }
    
    .footer-easycars-footer-bottom-links {
        justify-content: center;
    }
    
    .footer-easycars-footer-link:hover {
        transform: none;
    }
    
    .footer-easycars-contact-item {
        text-align: left;
    }
    
    .footer-easycars-back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer-easycars-footer-container {
        padding: 0 10px;
    }
    
    .footer-easycars-footer-top {
        padding: 18px 0 15px;
    }
    
    .footer-easycars-footer-grid {
        gap: 1.4rem;
    }
    
    .footer-easycars-main-content {
        padding: 1.2rem 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-easycars-content-title {
        font-size: 19px;
    }
    
    .footer-easycars-main-content p {
        font-size: 10px;
    }
    
    .footer-easycars-brand-logo {
        width: 36px;
        height: 36px;
        font-size: 1.45rem;
    }
    
    .footer-easycars-brand-name {
        font-size: 19px;
    }
    
    .footer-easycars-brand-description {
        font-size: 10px;
        line-height: 1.55;
        margin-bottom: 0.95rem;
    }
    
    .footer-easycars-footer-title,
    .footer-easycars-social-section h4 {
        font-size: 13px;
        margin-bottom: 0.85rem;
    }
    
    .footer-easycars-footer-title::after,
    .footer-easycars-social-section h4::after {
        width: 28px;
    }
    
    .footer-easycars-footer-link {
        font-size: 10.5px;
    }
    
    .footer-easycars-footer-links li {
        margin-bottom: 5.5px;
    }
    
    .footer-easycars-social-links {
        gap: 0.7rem;
    }
    
    .footer-easycars-social-link {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
    
    .footer-easycars-contact-item {
        padding: 7.5px;
        margin-bottom: 7.5px;
        gap: 0.7rem;
    }
    
    .footer-easycars-contact-icon {
        width: 31px;
        height: 31px;
        font-size: 0.85rem;
    }
    
    .footer-easycars-contact-details h6 {
        font-size: 10.5px;
    }
    
    .footer-easycars-contact-details span {
        font-size: 9.5px;
    }
    
    .footer-easycars-newsletter-section {
        padding: 5px 0;
    }
    
    .footer-easycars-newsletter-title {
        font-size: 15.5px;
        gap: 0.7rem;
    }
    
    .footer-easycars-newsletter-icon {
        width: 33px;
        height: 33px;
        font-size: 1rem;
    }
    
    .footer-easycars-newsletter-subtitle {
        font-size: 10.8px;
    }
    
    .footer-easycars-newsletter-form {
        border-radius: 18px;
        height: 40px;
    }
    
    .footer-easycars-newsletter-input {
        padding: 0 0.95rem;
        font-size: 10.5px;
        border-radius: 18px 0 0 18px;
    }
    
    .footer-easycars-newsletter-btn {
        padding: 0 1.1rem;
        font-size: 10.5px;
        border-radius: 0 18px 18px 0;
    }
    
    .footer-easycars-copyright {
        font-size: 10.5px;
    }
    
    .footer-easycars-footer-bottom-link {
        font-size: 10.5px;
        padding: 5px 11px;
    }
    
    .footer-easycars-back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-easycars-notification {
        min-width: 260px;
        padding: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .footer-easycars-footer-container {
        padding: 0 9px;
    }
    
    .footer-easycars-content-title {
        font-size: 18px;
    }
    
    .footer-easycars-brand-logo {
        width: 34px;
        height: 34px;
        font-size: 1.35rem;
    }
    
    .footer-easycars-brand-name {
        font-size: 18px;
    }
    
    .footer-easycars-newsletter-title {
        font-size: 15px;
        flex-direction: column;
        gap: 0.55rem;
    }
    
    .footer-easycars-newsletter-form {
        border-radius: 16px;
        height: 38px;
    }
    
    .footer-easycars-newsletter-input {
        padding: 0 0.85rem;
        font-size: 10px;
        border-radius: 16px 0 0 16px;
    }
    
    .footer-easycars-newsletter-btn {
        padding: 0 1rem;
        font-size: 10px;
        border-radius: 0 16px 16px 0;
    }
    
    .footer-easycars-back-to-top {
        bottom: 14px;
        right: 14px;
        width: 38px;
        height: 38px;
    }
    
    .footer-easycars-notification {
        min-width: 240px;
        right: 8px;
        top: 8px;
    }
}