/* ==================== Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFC107;
    --secondary-color: #1976D2;
    --accent-color: #FF9800;
    --dark-bg: #1E3A5F;
    --light-bg: #FFFFFF;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --whatsapp-color: #25D366;
    --viber-color: #665CAC;
    --success-color: #00B894;
    --danger-color: #D63031;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Georgian', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

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

/* ==================== Header & Navigation ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: #FFC107;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.contact-badge {
    background: #FFC107;
    color: var(--dark-bg);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
    animation: pulse 2s infinite;
}

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

/* ==================== Hero Section ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0D47A1 0%, #1976D2 100%);
    padding-top: 80px;
    overflow: visible;
}

/* Split Layout Hero */
.hero-split {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.hero-content-split {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 4rem;
    width: 100%;
}

.hero-text-side {
    flex: 0.8;
    max-width: 600px;
    text-align: left;
    color: var(--text-dark);
}

.hero-image-side {
    flex: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.hero-truck-image {
    width: 120%;
    max-width: 900px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.2));
}

@keyframes floatTruck {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--dark-bg);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #FFC107;
}

.hero-description {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 450px;
}

.hero-phone {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-bg);
}

.hero-phone a {
    color: #FFC107;
    text-decoration: none;
    transition: var(--transition);
}

.hero-phone a:hover {
    color: #FFD54F;
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

.btn-icon-only {
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon-only .btn-icon {
    width: 28px;
    height: 28px;
    margin: 0;
}

.btn-primary {
    background: #FFC107;
    color: var(--dark-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: #FFD54F;
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: #1EA952;
}

.btn-viber {
    background: var(--viber-color);
    color: white;
}

.btn-viber:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: #59529C;
}

.btn-emergency {
    background: var(--danger-color);
    color: white;
    animation: shake 0.5s infinite;
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: #C0292A;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* ==================== Scroll Indicator ==================== */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 3;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ==================== Split Layout (Used in multiple sections) ==================== */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

.split-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.split-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.split-image-full {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
}

.split-image-full img {
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.15));
}

.split-content {
    padding: 2rem 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #FFC107;
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-list h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.feature-list p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ==================== Services Section ==================== */
.services {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
}


/* ==================== Contact Section ==================== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark-bg);
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    background: var(--secondary-color);
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.contact-link svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-link.whatsapp {
    background: var(--whatsapp-color);
}

.contact-link.whatsapp:hover {
    background: #1EA952;
}

.contact-link.viber {
    background: var(--viber-color);
}

.contact-link.viber:hover {
    background: #59529C;
}

/* ==================== Emergency Banner ==================== */
.emergency-banner {
    background: linear-gradient(135deg, var(--danger-color), #E74C3C);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    flex-wrap: wrap;
}

.emergency-icon {
    font-size: 4rem;
    animation: pulse 1.5s infinite;
}

.emergency-text {
    flex: 1;
    min-width: 250px;
}

.emergency-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-text p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ==================== Floating Contact Button ==================== */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #FFC107;
    color: var(--dark-bg);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.floating-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.floating-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    font-weight: 600;
    white-space: nowrap;
}

.floating-menu-item:hover {
    transform: translateX(-5px);
}

.floating-menu-item svg {
    width: 24px;
    height: 24px;
}

.floating-menu-item.phone {
    background: #FFC107;
    color: var(--dark-bg);
}

.floating-menu-item.whatsapp {
    background: var(--whatsapp-color);
    color: white;
}

.floating-menu-item.viber {
    background: var(--viber-color);
    color: white;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .hero-content-split {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .hero-text-side {
        max-width: 100%;
        text-align: center;
    }

    .hero-image-side {
        order: -1;
    }

    .hero-truck-image {
        max-width: 500px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-layout.reverse {
        direction: ltr;
    }

    .split-image {
        order: -1;
    }

    .split-image img {
        height: auto;
    }

    .split-content {
        text-align: center;
    }

    .feature-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact .split-content .section-title,
    .contact .split-content .section-subtitle {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
    }

    .hero-content-split {
        padding: 1.5rem 1rem;
    }

    .hero-truck-image {
        max-width: 100%;
    }

    .hero-content {
        padding: 1rem;
    }

    .cta-buttons {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }

    .btn, .btn-large {
        width: 100%;
        justify-content: center;
    }

    .btn-icon-only {
        width: 60px;
        height: 60px;
    }

    .split-image img {
        height: auto;
    }

    .split-image-full img {
        width: 100%;
        max-width: 100%;
        max-height: none;
    }
}

    .cta-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-image {
        order: -1;
    }

    .cta-image img {
        height: 300px;
    }

    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .final-cta-image img {
        height: 300px;
    }


    .services-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .emergency-banner {
        flex-direction: column;
        text-align: center;
    }

    .emergency-banner .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-contact {
        bottom: 1rem;
        right: 1rem;
    }

    .floating-btn {
        width: 56px;
        height: 56px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .contact-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }


@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .service-card,
    .contact-card {
        padding: 2rem 1.5rem;
    }

    .emergency-banner {
        padding: 2rem 1.5rem;
    }

    .emergency-icon {
        font-size: 3rem;
    }
}

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

.service-card,
.contact-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

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

/* ==================== FAQ Section ==================== */
.faq {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.faq .split-layout {
    align-items: flex-start;
}

.faq .split-image {
    position: sticky;
    top: 100px;
}

.faq-header {
    text-align: left;
    margin-bottom: 3rem;
}

.faq-label {
    color: #FFC107;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    background: var(--dark-bg);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    transition: var(--transition);
    font-family: 'Noto Sans Georgian', sans-serif;
}

.faq-question:hover {
    background: #2c5282;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.75rem;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 1.75rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1rem;
}

/* ==================== CTA Section ==================== */
.cta-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.cta-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.btn-cta {
    background: white;
    color: var(--secondary-color);
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

/* ==================== Support Cards ==================== */
.support-cards {
    padding: 6rem 0;
    background: white;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.support-card {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg);
    border-radius: 20px;
    color: #FFC107;
}

.support-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.support-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.support-link {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: #FFC107;
    color: var(--dark-bg);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
}

.support-link:hover {
    background: #FFD54F;
    transform: translateY(-2px);
}

/* ==================== Final CTA ==================== */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.final-cta-text h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.final-cta-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.final-cta-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.final-cta-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* ==================== Need Help Banner ==================== */
.need-help-banner {
    background: var(--dark-bg);
    padding: 3rem 0;
    text-align: center;
}

.need-help-content {
    max-width: 700px;
    margin: 0 auto;
}

.need-help-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.need-help-content h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: white;
}

.need-help-content h2 {
    color: #FFC107;
}

/* ==================== Enhanced Footer ==================== */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo .logo-icon {
    width: 35px;
    height: 35px;
    color: #FFC107;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: #FFC107;
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: #FFC107;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: #FFC107;
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ==================== Responsive Updates ==================== */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-about {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.25rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-about {
        max-width: 100%;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .faq-question {
        font-size: 0.9rem;
        padding: 1rem 1.25rem;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .support-card {
        padding: 2rem 1.5rem;
    }
}

/* ==================== Print Styles ==================== */
@media print {
    .header,
    .floating-contact,
    .scroll-indicator {
        display: none;
    }
}

