/* CVResume.in - Shared Stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    text-decoration: none;
}

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 8px;*/
/*    font-size: 20px;*/
/*    font-weight: 600;*/
/*    color: #000;*/
/*    text-decoration: none;*/
/*}*/

.logo-icon {
    width: 32px;
    height: 32px;
    background-color: #2563eb;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-login {
    background-color: transparent;
    color: #333;
    border: 2px solid #e5e7eb;
}

.btn-login:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.btn-signup {
    background-color: #2563eb;
    color: white;
}

.btn-signup:hover {
    background-color: #1d4ed8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 1001;
}

.hamburger-icon,
.close-icon {
    width: 28px;
    height: 28px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.close-icon {
    display: none;
    position: relative;
}

.close-icon::before,
.close-icon::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 3px;
    background-color: #333;
    top: 50%;
    left: 0;
    border-radius: 2px;
}

.close-icon::before {
    transform: rotate(45deg);
}

.close-icon::after {
    transform: rotate(-45deg);
}

.hamburger.active .hamburger-icon {
    display: none;
}

.hamburger.active .close-icon {
    display: block;
}

/* Mobile Styles */
@media (max-width: 480px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 15px 0;
        width: 100%;
    }

    .nav-link {
        font-size: 16px;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        padding: 20px;
        gap: 12px;
    }

    .btn {
        max-width: 300px;
        padding: 6px 18px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .nav-menu {
        top: 60px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.content-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.content-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}

/* Info Boxes */
.info-box {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-box h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.info-box p {
    margin-bottom: 0.5rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

.warning-box {
    background-color: #fef3c7;
    border-left-color: var(--warning-color);
}

.success-box {
    background-color: #d1fae5;
    border-left-color: var(--success-color);
}

.error-box {
    background-color: #fee2e2;
    border-left-color: var(--error-color);
}

/* Pricing Cards */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(315px, 1fr));
    gap: 6rem;
    margin-top: 2rem;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.pricing-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.pricing-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: normal;
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    color: var(--text-dark);
}

.features-list li::before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    text-decoration: none;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
}

/* Contact Info */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.contact-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.team-member {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 0.5rem;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 4px solid white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    margin-top: 0;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
}

table th,
table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

table tr:hover {
    background-color: var(--bg-light);
}

/* Comparison Table */
.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    min-width: 600px;
}

.comparison-table th:first-child {
    min-width: 200px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .container {
        padding: 2rem 1rem;
    }

    .content-section h2 {
        font-size: 1.75rem;
    }

    .pricing-container {
        grid-template-columns: repeat(auto-fit, minmax(291px, 1fr));
        gap: 3rem;
        margin-top: 2rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(291px, 1fr));
        gap: 3rem;
        margin-top: 2rem;    }

    .team-grid {
        /*grid-template-columns: 1fr;*/
        grid-template-columns: repeat(auto-fit, minmax(291px, 1fr));
        gap: 3rem;
        margin-top: 2rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.highlight {
    background-color: #fef3c7;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-success {
    background-color: var(--success-color);
    color: white;
}

.badge-warning {
    background-color: var(--warning-color);
    color: white;
}

.badge-primary {
    background-color: var(--primary-color);
    color: white;
}

/* Scroll to Top Button */
#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease;
}

#scrollToTop:hover {
    background-color: var(--secondary-color);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease;
}


/* Footer CTA Section Styles */
.footer-cta-section {
    background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 50%, #6d28d9 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.footer-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.footer-cta-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
}

.footer-cta-btn {
    background-color: #fbbf24;
    color: #000;
    border: none;
    padding: 18px 40px;
    border-radius: 35px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    align-self: flex-start;
}

.footer-cta-btn:hover {
    background-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.3);
}

.footer-cta-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-cta-img {
    width: 100%;
    height: auto;
    max-width: 500px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background-color: #f3f4f6;
    min-height: 400px;
    object-fit: cover;
}

.sparkle {
    position: absolute;
    color: #fbbf24;
    font-size: 24px;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.sparkle-3 {
    bottom: 20%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) scale(1.1);
        opacity: 0.8;
    }
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 0;
}

/* Desktop Footer Top */
.footer-top-desktop {
    display: grid;
    grid-template-columns: 2fr auto 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.footer-tagline {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    max-width: 400px;
    margin: 0;
}

.footer-top-cta-btn {
    background-color: #2563eb;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.footer-top-cta-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* Mobile Footer Bottom - Hidden on Desktop */
.footer-mobile-bottom {
    display: none;
}

.footer-mobile-cta-btn {
    display: none;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 50px 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #fff;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-label {
    font-size: 14px;
    color: #999;
    margin: 10px 0 5px 0;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fbbf24;
}

.schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.schedule-list li {
    color: #999;
    font-size: 13px;
}

/* Footer Bottom - White Section */
.footer-bottom-white {
    background-color: #fff;
    padding: 50px 0;
}

.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.badges {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-img {
    height: 100px;
    width: auto;
    background-color: #f3f4f6;
    border-radius: 12px;
    padding: 10px;
}

.footer-legal {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-legal p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    color: #000;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top span:first-child {
    font-size: 24px;
    line-height: 1;
}

.back-to-top span:last-child {
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.back-to-top:hover {
    background-color: #fbbf24;
    transform: translateY(-5px);
}

/* Footer Mobile Styles */
@media (max-width: 968px) {
    .footer-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-cta-title {
        font-size: 38px;
        text-align: center;
    }

    .footer-cta-btn {
        align-self: center;
        width: 100%;
        max-width: 400px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 60px 20px;
    }

    .footer-cta-title {
        font-size: 32px;
    }

    .footer-cta-btn {
        font-size: 16px;
        padding: 16px 32px;
    }

    .footer-cta-img {
        max-width: 400px;
        min-height: 350px;
    }

    .footer-container {
        padding: 40px 20px 0;
    }

    /* Hide desktop footer top */
    .footer-top-desktop {
        display: none;
    }

    /* Show mobile footer bottom */
    .footer-mobile-bottom {
        display: flex;
        flex-direction: column;
        gap: 25px;
        align-items: center;
        text-align: center;
        padding: 30px 0;
        border-bottom: 1px solid #333;
    }

    .footer-mobile-cta-btn {
        display: block;
        background-color: #2563eb;
        color: white;
        border: none;
        padding: 16px 32px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        font-family: inherit;
        width: 80%;
        max-width: 400px;
    }

    .footer-mobile-cta-btn:hover {
        background-color: #1d4ed8;
    }

    /* Footer Links Accordion */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .footer-column {
        border-bottom: 1px solid #333;
        padding: 0;
        gap: 0;
    }

    .footer-column:last-child {
        border-bottom: none;
    }

    .footer-heading  {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        position: relative;
    }
    .footer-heading,a{
        text-decoration: none;
        color: white;

    }

    .footer-heading::after {
        content: '🔽';
        font-size: 20px;
        font-weight: 600;
        transition: transform 0.3s ease;
    }

    .footer-column.active .footer-heading::after {
        transform: rotate(180deg);
    }

    .footer-list,
    .contact-info {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
        padding: 0;
    }

    .footer-column.active .footer-list,
    .footer-column.active .contact-info {
        max-height: 500px;
        opacity: 1;
        padding-bottom: 20px;
    }

    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .social-link {
        width: 50px;
        height: 50px;
    }

    .badges {
        gap: 20px;
    }

    .badge-img {
        height: 80px;
    }

    .footer-bottom-white {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .footer-cta-title {
        font-size: 28px;
    }

    .footer-cta-btn {
        font-size: 15px;
        padding: 14px 28px;
    }

    .footer-cta-img {
        max-width: 100%;
        min-height: 300px;
    }

    .sparkle {
        font-size: 18px;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .badge-img {
        height: 70px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .back-to-top span:first-child {
        font-size: 20px;
    }

    .back-to-top span:last-child {
        font-size: 10px;
    }

    .footer-heading {
        font-size: 16px;
    }
}

