/* Footer Styles */

:root {
    --primary: #a3e635;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
}

:root {
    --neon-green: #a3e635;
}

        .footer-main-section {
            background-color: #000;
            color: white;
            padding: 80px 0 40px;
        }

        /* Logo and Brand Section */
        .brand-logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .logo-icon-wrapper {
            width: 100px;
            height: 90px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-icon-wrapper::before {
            font-size: 1.8rem;
            color: #000;
        }

        .logo-padel-icon {
            position: absolute;
            width: 30px;
            height: 30px;
            background-color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .brand-name-text {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin: 0;
        }

        .brand-subtitle {
            font-size: 0.9rem;
            color: #999;
            display: block;
        }

        .company-title-footer {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .company-description-footer {
            font-size: 1rem;
            line-height: 1.8;
            color: #ccc;
            margin-bottom: 30px;
        }

        /* Social Icons */
        .social-icons-list {
            display: flex;
            gap: 15px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .social-icon-link {
            width: 45px;
            height: 45px;
            background-color: var(--neon-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .social-icon-link:hover {
            background-color: #fff;
            transform: translateY(-5px);
        }

        /* Quick Links Section */
        .footer-section-heading {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            color: white;
        }

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

        .quick-links-list li {
            margin-bottom: 15px;
        }

        .quick-link-item {
            color: #ccc;
            text-decoration: none;
            font-size: 1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .quick-link-item::before {
            content: '›';
            color: var(--neon-green);
            font-size: 1.5rem;
            font-weight: 700;
        }

        .quick-link-item:hover {
            color: var(--neon-green);
            padding-left: 10px;
        }

        /* Contact Info Section */
        .contact-info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .contact-icon-circle {
            width: 50px;
            height: 50px;
            background-color: var(--neon-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .contact-info-details {
            flex: 1;
        }

        .contact-label-text {
            font-size: 0.85rem;
            color: #999;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-value-text {
            font-size: 1.1rem;
            color: white;
            font-weight: 600;
            margin: 0;
        }

        /* Newsletter Section */
        .newsletter-description-text {
            font-size: 1rem;
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .newsletter-input-field {
            width: 100%;
            padding: 18px 25px;
            border-radius: 50px;
            border: 2px solid #333;
            background-color: #1a1a1a;
            color: white;
            font-size: 1rem;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .newsletter-input-field:focus {
            outline: none;
            border-color: var(--neon-green);
            background-color: #222;
        }

        .newsletter-input-field::placeholder {
            color: #666;
        }

        .newsletter-submit-button {
            width: 100%;
            padding: 18px 40px;
            background-color: var(--neon-green);
            color: #000;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-submit-button:hover {
            background-color: #b3e600;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(163, 230, 53, 0.3);
        }

        .button-arrow-icon {
            width: 35px;
            height: 35px;
            background-color: #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--neon-green);
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .newsletter-submit-button:hover .button-arrow-icon {
            transform: rotate(45deg);
        }

        /* Footer Bottom */
        .footer-bottom-bar {
            border-top: 1px solid #333;
            margin-top: 60px;
            padding-top: 30px;
        }

        .footer-links-bottom {
            display: flex;
            gap: 30px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .footer-link-bottom-item {
            color: var(--neon-green);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .footer-link-bottom-item:hover {
            color: #fff;
        }

        .copyright-text-footer {
            font-size: 0.95rem;
            color: #999;
            margin: 0;
        }

        @media (max-width: 991px) {
            .footer-main-section {
                padding: 60px 0 30px;
            }

            .company-title-footer {
                font-size: 1.5rem;
            }

            .footer-section-heading {
                font-size: 1.3rem;
                margin-top: 40px;
            }
        }

        @media (max-width: 767px) {
            .brand-name-text {
                font-size: 1.5rem;
            }

            .footer-links-bottom {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 20px;
            }

            .footer-bottom-bar {
                text-align: center;
            }
        }

