/* ========================================
   GE FOOTER - WHITE & BLUE THEME
   WITH REVIEWS AT TOP
   ======================================== */

.ge-footer {
    background: linear-gradient(135deg, #0A1A33 0%, #0B2A4A 50%, #0A1A33 100%);
    color: #cbd5e1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

/* Blue Glow Effect */
.ge-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(11, 95, 255, 0.08), transparent 50%);
    pointer-events: none;
}

/* ========================================
   REVIEWS SLIDER SECTION - TOP
   ======================================== */

.reviews-slider-section {
    padding: 40px 0 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.15);
}

.reviews-header {
    text-align: center;
    margin-bottom: 30px;
}

.reviews-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.title-icon {
    font-size: 32px;
    margin-bottom: 5px;
}

.title-sub {
    font-size: 14px;
    font-weight: 400;
    color: #94a3b8;
}

.reviews-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.review-slide {
    flex: 0 0 calc(33.333% - 14px);
    min-width: 0;
}

.review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(11, 95, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.reviewer-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(11, 95, 255, 0.5);
    flex-shrink: 0;
    object-fit: cover;
}

.reviewer-details {
    min-width: 0;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-match {
    font-size: 12px;
    color: #7dd3fc;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-date {
    font-size: 11px;
    color: #64748b;
}

.review-rating {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.star {
    color: #334155;
    font-size: 14px;
    transition: color 0.2s ease;
}

.star.filled {
    color: #fbbf24;
}

.review-body {
    flex: 1;
    margin-bottom: 16px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-badge {
    font-size: 12px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.badge-icon {
    font-size: 14px;
}

.review-source {
    font-size: 11px;
    color: #0B5FFF;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: rgba(11, 95, 255, 0.2);
    border-color: #0B5FFF;
    color: #ffffff;
    transform: scale(1.05);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-dots .dot.active {
    background: #0B5FFF;
    width: 24px;
    border-radius: 4px;
}

.slider-dots .dot:hover {
    background: rgba(11, 95, 255, 0.5);
}

/* ========================================
   FOOTER MAIN SECTION
   ======================================== */

.footer-main {
    padding: 60px 0 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

/* Footer Columns */
.footer-col {
    animation: geFadeUp 0.6s ease-out;
}

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

/* Logo Section */
.footer-logo {
    margin-bottom: 24px;
}

.footer-logo a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.footer-logo a:hover {
    transform: scale(1.03);
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.logo-text {
    font-size: 26px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--ge-primary-light, #7dd3fc));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

/* Description */
.footer-description {
    margin-bottom: 25px;
}

.footer-description p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

/* Contact Info */
.footer-contact {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.contact-item i {
    width: 20px;
    color: var(--ge-primary, #0B5FFF);
    font-size: 14px;
}

.contact-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--ge-primary-light, #7dd3fc);
}

/* Footer Title */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 28px 0;
    color: #ffffff;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(135deg, var(--ge-primary, #0B5FFF), var(--ge-accent, #00B8E6));
    border-radius: 3px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-menu li a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--ge-primary-light, #7dd3fc);
    transform: translateX(5px);
}

.footer-menu li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Section */
.newsletter-content {
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 0;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--ge-primary, #0B5FFF);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(11, 95, 255, 0.15);
}

.newsletter-form input::placeholder {
    color: #64748b;
}

.newsletter-form button {
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--ge-primary, #0B5FFF), var(--ge-primary-dark, #0742B8));
    border: none;
    border-radius: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--ge-primary-light, #42A5F5), var(--ge-primary, #0B5FFF));
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(11, 95, 255, 0.35);
}

.newsletter-form button i {
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    align-items: center;
}

.payment-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    flex-wrap: wrap;
}

.payment-list li {
    display: flex;
    align-items: center;
}

.payment-list li img {
    height: 28px;
    width: auto;
    filter: brightness(0.7) contrast(1.2);
    transition: all 0.3s ease;
}

.payment-list li img:hover {
    filter: brightness(1) contrast(1);
    transform: translateY(-2px);
}

/* Newsletter Message */
.newsletter-message {
    animation: slideDown 0.3s ease;
}

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

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

@media (max-width: 1024px) {
    .footer-grid {
        gap: 40px;
    }
    
    .review-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 992px) {
    .container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px;
    }
    
    .footer-about {
        grid-column: span 2;
    }
    
    .footer-contact {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .ge-footer {
        margin-top: 40px;
    }
    
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: span 1;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .footer-title::after {
        width: 50px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        justify-content: center;
        padding: 12px 20px;
    }
    
    /* Reviews Slider Responsive */
    .reviews-slider-section {
        padding: 30px 0 25px;
    }
    
    .reviews-slider-wrapper {
        padding: 0 15px;
    }
    
    .review-slide {
        flex: 0 0 calc(100% - 10px);
    }
    
    .reviews-title {
        font-size: 20px;
    }
    
    .slider-nav {
        gap: 15px;
    }
    
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
    
    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .payment-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .footer-main {
        padding: 30px 0 25px;
    }
    
    .footer-logo-img {
        max-height: 42px;
    }
    
    .footer-title {
        font-size: 16px;
        margin-bottom: 22px;
    }
    
    .footer-menu li {
        margin-bottom: 10px;
    }
    
    .footer-menu li a {
        font-size: 13px;
    }
    
    .footer-description p {
        font-size: 13px;
    }
    
    .contact-item {
        font-size: 13px;
    }
    
    .newsletter-form {
        gap: 10px;
    }
    
    .newsletter-form input {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .newsletter-form button {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    /* Reviews Slider Mobile */
    .reviews-slider-section {
        padding: 20px 0 20px;
    }
    
    .reviews-title {
        font-size: 18px;
    }
    
    .title-sub {
        font-size: 12px;
    }
    
    .review-card {
        padding: 18px;
    }
    
    .review-text {
        font-size: 13px;
        -webkit-line-clamp: 3;
    }
    
    .reviewer-name {
        font-size: 13px;
    }
    
    .copyright p {
        font-size: 12px;
    }
    
    .payment-list li img {
        height: 22px;
    }
    
    .payment-list {
        gap: 8px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .footer-title {
        font-size: 15px;
    }
    
    .reviews-slider-wrapper {
        padding: 0 10px;
    }
}