/* Footer Styles - Exact Match */
.footer {
    background: #000000;
    color: white;
    padding: 40px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 80px;
    margin-bottom: 0;
    align-items: start;
}

.footer-brand h3 {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0;
    margin-top: 20px; /* Move the text downward */
}

.companion {
    color: #8B5CF6;
    font-weight: 700;
}

.app-downloads {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 8px;    
    padding: 8px 16px;
    border-radius: 6px;    
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 13px;
}

.download-btn:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

.download-btn i {
    font-size: 28px;
    gap: 5px;
}

.download-text {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.download-text span {
    font-weight: 500;
    font-size: 10px;
    color: #ccc;
    margin-bottom: 2px;
}

.download-text strong {
    font-size: 18px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.link-column {
    margin-top: 20px; /* Move Quick Links and Contact columns downward */
}

.link-column h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: white;
}

.quick-links h4 {
    margin-top: 0; /* Override previous specific margin-top */
}

.link-column ul {
    list-style: none;
}

.link-column ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.link-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-column ul li a:hover {
    color: #8B5CF6;
}

.link-column ul li i {
    font-size: 12px;
    color: #8B5CF6;
    width: 14px;
}

.person-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 10px;
}

.person-image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #555;
}

.footer-divider {
    height: 1px;
    background: #333;
    margin: 30px 0;
    position: relative;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    background: black;
    padding: 0 20px;
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
}

.social-icon {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 1px solid #444;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icon:hover {
    background: #8B5CF6;
    border-color: #8B5CF6;
    color: white;
    transform: translateY(-2px);
}

.footer-legal p {
    color: #999;
    font-size: 12px;
    text-align: center;
}

.footer-legal a {
    color: #8B5CF6;
    text-decoration: none;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 8px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 160px;
    max-width: 170px;
    justify-content: center;
}

.app-store-btn:hover {
    background: #3a3a3a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 20px;
    }

    .main-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .left-section {
        padding: 40px 20px;
        text-align: center;
    }

    .left-section h1 {
        font-size: 2.8rem;
        text-align: center;
    }

    .right-section h1 {
        text-align: center;
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    #contactForm {
        padding: 30px 25px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }

    .form-group {
        flex: 1 1 100%;
    }

    .submit-btn {
        padding: 16px;
        font-size: 16px;
    }

    /* Footer responsive */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 40px;
    }

    .app-downloads {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .link-column {
        margin-top: 15px; /* Adjust for smaller screens */
    }
    .footer-right img {
        display: none;
    }
}
@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    #contactForm {
        padding: 25px 20px;
        margin: 0 5px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 14px;
        padding: 12px 0;
    }

    label {
        font-size: 12px;
    }

    .app-downloads {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 25px;
    }

    .footer-brand h3 {
        font-size: 1.4rem;
    }

    .person-image img {
        width: 35px;
        height: 35px;
    }

    .link-column {
        margin-top: 10px;
    }
    
    .footer-right img {
        display: none;
    }
    
    /* Fixed: Properly center list items */
    .link-column ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .link-column ul li {
        justify-content: center;
        text-align: center;
    }
    
    .link-column ul li a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
        font-size: 16px;
        font-weight: 600;
    }
}