/* Footer Styles */
.premium-footer {
    background: linear-gradient(135deg, #1f1f2e 0%, #0f2027 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    transform: rotate(180deg);
}

.footer-wave svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.shape-fill {
    fill: #f8f9fa;
}

.footer-main {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    margin-bottom: 30px;
}

/* .footer-logo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #8B5CF6, #4F46E5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
} */

/* Add to footer.css */
.footer-brand img.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-brand img.footer-logo:hover {
    transform: scale(1.05);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-link img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* makes white icon on dark background */
    transition: filter 0.3s ease;
}

.social-link:hover {
    background: #4F46E5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.4);
}

.social-link:hover img {
    filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(500%);
    /* Slight color shift on hover if desired */
}


.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4F46E5, #8B5CF6);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4F46E5;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    color: #fff;
    padding: 12px 20px;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    background: rgba(255, 255, 255, 0.05);
}

.newsletter-form .btn {
    background: linear-gradient(135deg, #4F46E5, #8B5CF6);
    border: none;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: linear-gradient(135deg, #8B5CF6, #4F46E5);
    transform: translateX(3px);
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #fff;
}

/* Add to footer.css */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-main {
        padding: 60px 0 30px;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
}

/*@media (max-width: 768px) {*/
    
/*    footer{*/
/*        align-content: center;*/
/*        align-items: center;*/
/*    }*/
/*    .footer-wave {*/
/*        top: -60px;*/
/*        height: 60px;*/
/*    }*/
    
/*    .footer-main {*/
/*        padding: 40px 0 20px;*/
/*    }*/
    
/*    .footer-heading {*/
/*        margin-bottom: 15px;*/
/*    }*/
    
/*    .footer-logo {*/
/*        font-size: 1.8rem;*/
/*    }*/
    
/*    .footer-legal-links {*/
/*        justify-content: center;*/
/*        margin-top: 15px;*/
/*    }*/
/*}*/

/* Contact Info Styles */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.7);
}

.contact-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
    object-fit: contain;
    filter: brightness(0) invert(1); /* pure white */
    transition: filter 0.3s ease;
}


.contact-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
    text-decoration: underline;
}



/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-item {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }
    
    .contact-icon {
        font-size: 0.9rem;
    }
}

/*@media (max-width: 768px) {*/
  /* Center-align all columns and content */
/*  .footer-main .row > div {*/
/*    text-align: center;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    margin-bottom: 30px;*/
/*  }*/

  /* Center-align the social links */
/*  .social-links {*/
/*    justify-content: center;*/
/*  }*/

  /* Center-align the footer headings */
/*  .footer-heading {*/
/*    text-align: center;*/
/*  }*/
/*  .footer-heading::after {*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*  }*/

  /* Center-align the contact items */
/*  .contact-item {*/
/*    justify-content: center;*/
/*    text-align: center;*/
/*  }*/

  /* Center-align the legal links */
/*  .footer-legal-links {*/
/*    justify-content: center;*/
/*  }*/

  /* Center-align the copyright text */
/*  .copyright {*/
/*    text-align: center;*/
/*    margin-bottom: 15px;*/
/*  }*/

  /* Adjust footer links for mobile */
/*  .footer-links {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*  }*/
/*  .footer-links a {*/
/*    padding-left: 0;*/
/*  }*/
/*  .footer-links a::before {*/
    /*display: none;*/
/*  }*/
/*}*/

/* Privacy Policy Modal Styles */
.pp-modal-dialog {
    max-width: 100%;
    margin: 0;
}

.pp-modal-content {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    min-height: 100vh;
}

.pp-modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.pp-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.pp-btn-close {
    font-size: 1.5rem;
    padding: 0.5rem;
    margin: 0;
    align-self: center;
}

.pp-modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.pp-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pp-content {
    line-height: 1.8;
    color: #34495e;
}

.pp-section {
    margin-bottom: 2.5rem;
}

.pp-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.pp-subsection-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #3498db;
    margin: 1.5rem 0 0.5rem;
}

.pp-text {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.pp-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.pp-list li {
    margin-bottom: 0.5rem;
}

.pp-link {
    color: #3498db;
    text-decoration: none;
}

.pp-link:hover {
    text-decoration: underline;
}

.pp-address {
    font-style: normal;
    margin-top: 1rem;
}

.pp-effective-date {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.pp-modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    justify-content: center;
}

.pp-close-btn {
    background-color: #3498db;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    border: none;
    font-weight: 500;
}

.pp-close-btn:hover {
    background-color: #2980b9;
}

/* Terms of Service Modal Styles (similar structure with different colors) */
.tos-modal-dialog {
    max-width: 100%;
    margin: 0;
}

.tos-modal-content {
    background-color: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0;
    min-height: 100vh;
}

.tos-modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem 2rem;
    background-color: rgba(248, 249, 250, 0.9);
}

.tos-modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.tos-btn-close {
    font-size: 1.5rem;
    padding: 0.5rem;
    margin: 0;
    align-self: center;
}

.tos-modal-body {
    padding: 2rem;
    overflow-y: auto;
}

.tos-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tos-content {
    line-height: 1.8;
    color: #34495e;
}

.tos-section {
    margin-bottom: 2.5rem;
}

.tos-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.tos-subsection-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #e74c3c;
    margin: 1.5rem 0 0.5rem;
}

.tos-text {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.tos-list {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.tos-list li {
    margin-bottom: 0.5rem;
}

.tos-link {
    color: #e74c3c;
    text-decoration: none;
}

.tos-link:hover {
    text-decoration: underline;
}

.tos-address {
    font-style: normal;
    margin-top: 1rem;
}

.tos-effective-date {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.tos-modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    background-color: rgba(248, 249, 250, 0.9);
    justify-content: center;
}

.tos-close-btn {
    background-color: #e74c3c;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 30px;
    border: none;
    font-weight: 500;
}

.tos-close-btn:hover {
    background-color: #c0392b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pp-modal-header, .tos-modal-header {
        padding: 1rem;
    }
    
    .pp-modal-title, .tos-modal-title {
        font-size: 1.5rem;
    }
    
    .pp-modal-body, .tos-modal-body {
        padding: 1rem;
    }
    
    .pp-section, .tos-section {
        margin-bottom: 1.5rem;
    }
    
    .pp-section-title, .tos-section-title {
        font-size: 1.3rem;
    }
}