/* Global Styles */
:root {
    --primary-color: #d91a60; /* Deep pink color from the image */
    --secondary-color: #08b06b; /* Green color from the image */
    --light-color: #ffffff;
    --dark-color: #333333;
    --light-pink: #ffb6c1;
    --light-green: #98fb98;
    --gray-color: #f4f4f4;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

/* Prevent scrolling when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: relative;
}

/* Menu backdrop overlay for mobile */
body.menu-open::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 99;
    transition: opacity 0.3s ease;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

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

h1, h2, h3 {
    line-height: 1.3;
}

section {
    padding: 80px 0;
}

/* Header */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-weight: 600;
    font-size: 1.3rem;
    margin-left: 10px;
    color: var(--primary-color);
}

/* Logo styling replaced with image */

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 500;
    transition: var(--transition);
}

nav ul li a:hover {
    color: var(--primary-color);
}

.download-btn-small {
    background-color: var(--secondary-color);
    color: var(--light-color) !important;
    padding: 8px 15px;
    border-radius: 25px;
    transition: var(--transition);
}

.download-btn-small:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b01550 100%);
    color: var(--light-color);
    padding: 140px 0 30px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    bottom: -100px;
    right: -100px;
}

.hero .container {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1.2;
    padding-right: 30px;
}

.hero-image {
    flex: 0.8;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.6s;
}

/* Add special hero button styles to match the animations */
.hero .download-btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Hero section button shimmer effect */
.hero .download-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 70%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.8) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: shimmer 2s infinite;
    z-index: 2;
}

/* Hero section button pulse effect */
.hero .download-btn {
    animation: heroPulse 2s infinite;
}

@keyframes heroPulse {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Different timing for iOS and Android buttons in hero section */
.hero .ios-btn::after {
    animation-delay: 0.5s;
}

.hero .ios-btn {
    animation-delay: 0s;
}

.hero .android-btn::after {
    animation-delay: 1.5s;
}

.hero .android-btn {
    animation-delay: 1s;
}

/* Hero section button hover effect */
.hero .download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.6) !important;
    animation-play-state: paused;
}

.hero .download-btn:hover::after {
    animation-play-state: running;
    animation-duration: 1s;
}

.download-btn {
    background: white;
    color: #333;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Shimmer effect */
.download-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 70%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.7) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    animation: shimmer 2s infinite;
    z-index: 2;
}

/* Add a subtle pulsing border glow effect */
.download-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 5px 20px rgba(217, 26, 96, 0.4);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

/* Different timing for iOS and Android buttons */
.ios-btn::after {
    animation-delay: 0.5s;
}

.ios-btn {
    animation-delay: 0s;
}

.android-btn::after {
    animation-delay: 1.5s;
}

.android-btn {
    animation-delay: 1s;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

/* Apply a stronger shimmer effect on the dark background */
.download .download-btn::after {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    width: 100%;
}

/* Stronger pulse for download section buttons */
.download .download-btn {
    animation: strongPulse 2s infinite;
}

@keyframes strongPulse {
    0% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 5px 25px rgba(255, 255, 255, 0.5);
    }
    100% {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

.download-btn i {
    font-size: 1.5rem;
    margin-right: 12px;
    position: relative;
    z-index: 3;
}

.ios-btn i {
    color: #000;  /* Apple's original black color */
}

.android-btn i {
    color: #000;  /* Changed to black to match Apple logo */
}

.download-btn span {
    position: relative;
    z-index: 3;
}

.download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(217, 26, 96, 0.5) !important;
    animation-play-state: paused;
}

.download-btn:hover::after {
    animation-play-state: running;
    animation-duration: 1s;
}

.download .download-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.6) !important;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

@media (max-width: 576px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-btn {
        width: 100%;
        max-width: 220px;
        margin-bottom: 15px;
    }
}

/* Features Section */
.features {
    background-color: var(--light-color);
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--gray-color);
    border-radius: 15px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 26, 96, 0.1) 0%, rgba(8, 176, 107, 0.1) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.8rem;
}

.feature-card:nth-child(even) .feature-icon {
    background-color: var(--primary-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* About Section Enhancements */
.about {
    background: linear-gradient(135deg, rgba(217, 26, 96, 0.03) 0%, rgba(8, 176, 107, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 26, 96, 0.05) 0%, rgba(217, 26, 96, 0) 70%);
    border-radius: 50%;
    top: -150px;
    left: -150px;
    z-index: 0;
}

.about .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 0;
}

.benefits-list {
    margin-top: 30px;
    margin-bottom: 40px;
}

.benefits-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    animation: fadeInRight 0.8s ease both;
    animation-delay: calc(0.2s * var(--i, 1));
}

.benefits-list li:nth-child(1) { --i: 1; }
.benefits-list li:nth-child(2) { --i: 2; }
.benefits-list li:nth-child(3) { --i: 3; }
.benefits-list li:nth-child(4) { --i: 4; }
.benefits-list li:nth-child(5) { --i: 5; }

.benefits-list li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Upgrade Prompt Styles */
.upgrade-prompt {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b01550 100%);
    color: var(--light-color);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 15px 30px rgba(217, 26, 96, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.8s;
}

.upgrade-prompt::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    top: -75px;
    right: -75px;
}

.upgrade-prompt h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.upgrade-prompt p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.upgrade-btn {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.upgrade-btn:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Testimonials */
.testimonials {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
}

.testimonial {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.8s ease both;
}

.testimonial:nth-child(1) {
    animation-delay: 0.2s;
    border-top: 4px solid var(--secondary-color);
}

.testimonial:nth-child(2) {
    animation-delay: 0.4s;
    border-top: 4px solid var(--primary-color);
}

.testimonial:nth-child(3) {
    animation-delay: 0.6s;
    border-top: 4px solid var(--secondary-color);
}

.testimonial p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
}

/* FAQ Section */
.faq {
    background-color: var(--light-color);
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background-color: var(--gray-color);
    padding: 15px 20px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: #e9e9e9;
}

.accordion-header::after {
    font-family: 'Font Awesome 5 Free';
    content: '\f107'; /* fa-angle-down icon */
    font-weight: 900;
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion-content {
    background-color: var(--light-color);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 500px;
}

/* Download Section */
.download {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b01550 100%);
    color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.download::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    top: -150px;
    right: -150px;
}

.download h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.download h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--light-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.download p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.download .app-buttons {
    justify-content: center;
    margin: 40px 0;
}

.download .download-btn {
    background: white;
    color: #333;
    font-weight: 600;
}

/* Apply a stronger shimmer effect on the dark background */
.download .download-btn::after {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}

.premium-cta {
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.premium-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.premium-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(to right, #2b2b3d, #232330);
    color: #fff;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.footer-logo {
    margin-right: 20px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 8px;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo p {
    font-size: 0.92rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 360px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-links h3:after, .footer-contact h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: block;
}

.footer-links ul li {
    margin-bottom: 14px;
    display: block;
    width: 100%;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-links ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-contact h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-contact h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.footer-contact p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 0;
}

.footer-contact p a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
    display: inline;
}

.footer-contact p a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
    display: inline-block;
    margin-top: 5px;
}

.footer-contact a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
        gap: 30px;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .footer-logo p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 60px;
    }
    
    .footer-logo {
        grid-column: span 2;
        text-align: center;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-logo-container {
        justify-content: center;
    }
    
    .footer-links h3, .footer-contact h3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo {
        grid-column: span 1;
    }
    
    .footer-links, .footer-contact {
        text-align: center;
    }
    
    .footer-links h3:after, .footer-contact h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container,
    .about .container {
        flex-direction: column;
    }

    .hero-content,
    .about-content,
    .testimonials {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-image {
        margin-top: 40px;
        width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    nav ul {
        display: none;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        text-align: center;
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero p {
        font-size: 1rem;
        line-height: 1.5;
        margin-left: auto;
        margin-right: auto;
    }

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

    .app-buttons {
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }

    .app-button {
        width: 100%;
        justify-content: center;
    }

    .download-buttons, .app-buttons {
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .download-btn {
        margin-bottom: 15px;
    }
    
    /* Add space between buttons on mobile */
    .app-buttons a:first-child {
        margin-bottom: 15px;
    }
    
    /* Container adjustments for mobile */
    .container {
        padding: 0 20px;
    }
    
    /* Hero badge centered with proper width */
    .hero-badge {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .accordion-header::after {
        right: 15px;
    }

    /* Mobile spacing fix for accordion */
    .accordion-header {
        padding-right: 40px; /* Additional space for the icon */
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-content {
        padding: 0 5px;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .download-btn {
        width: 100%;
        max-width: 240px;
    }
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 8px solid #333;
    background-color: #111;
    padding: 10px 0;
    overflow: hidden;
    animation: floatIn 1.2s ease both;
    animation-delay: 0.5s;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 10px;
    background-color: #333;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #333;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: 2;
}

.phone-mockup img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .phone-mockup {
        width: 75%;
        margin: 0 auto;
        max-width: 280px;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
    }
}

/* JavaScript-related styling */
.accordion-item.active .accordion-header {
    background-color: #e9e9e9;
}

/* Header scrolled state */
header.scrolled {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Mobile Menu Button - Fix visibility */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 102;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover span {
    background-color: var(--secondary-color);
}

.mobile-menu-btn.active {
    transform: rotate(0deg);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    width: 100%;
    margin-left: 0;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    width: 100%;
    margin-left: 0;
}

/* Mobile Navigation Styles - Fix display */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    header .container {
        position: relative;
    }

    header nav {
        position: initial;
    }
    
    /* Menu backdrop is handled by body.menu-open::after */

    nav ul {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 100px 0 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
        z-index: 101;
        overflow-y: auto;
        border-radius: 0 0 0 20px;
    }
    
    nav ul::before {
        content: '';
        position: absolute;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        border-radius: 4px;
    }

    nav ul.show {
        right: 0;
    }

    nav ul li {
        margin: 15px 0;
        width: 80%;
        text-align: center;
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.4s ease;
    }
    
    nav ul li:nth-child(1) {
        margin-top: 0;
    }
    
    nav ul li:nth-child(4) {
        margin-top: 15px;
        width: 100%;
    }
    
    nav ul.show li {
        transform: translateX(0);
        opacity: 1;
    }
    
    nav ul.show li:nth-child(1) { transition-delay: 0.1s; }
    nav ul.show li:nth-child(2) { transition-delay: 0.2s; }
    nav ul.show li:nth-child(3) { transition-delay: 0.3s; }
    nav ul.show li:nth-child(4) { transition-delay: 0.4s; }
    
    nav ul li a {
        font-size: 1.3rem;
        padding: 15px;
        display: block;
        border-radius: 10px;
        transition: all 0.3s ease;
        font-weight: 500;
        width: 100%;
        color: var(--dark-color);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    
    nav ul li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: rgba(217, 26, 96, 0.08);
        transition: all 0.3s ease;
        z-index: -1;
        border-radius: 10px;
    }
    
    nav ul li a:hover {
        color: var(--primary-color);
        transform: translateX(5px);
    }
    
    nav ul li a:hover::before {
        width: 100%;
    }
    
    .download-btn-small {
        margin: 0 auto;
        padding: 12px 20px;
        width: 80%;
        max-width: 200px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border-radius: 30px;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        color: var(--light-color) !important;
    }
    
    .download-btn-small i {
        margin-right: 10px;
        font-size: 1.2rem;
    }
    
    .download-btn-small:hover {
        transform: scale(1.05);
        background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Hero Content Animations */
.hero-content h1 {
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.2s;
}

.hero-content p {
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.4s;
}

.app-buttons {
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.6s;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}



/* Premium Features Section */
.premium-features {
    margin-top: 80px;
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(217, 26, 96, 0.05) 0%, rgba(8, 176, 107, 0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.premium-features::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(8, 176, 107, 0.1) 0%, rgba(8, 176, 107, 0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.premium-features h3 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.premium-features h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.premium-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.premium-feature-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid var(--secondary-color);
}

.premium-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.premium-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #06834f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(8, 176, 107, 0.3);
}

.premium-feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Download Buttons */
.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

@media (max-width: 576px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .app-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 18px 20px;
    margin-top: 25px;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease both;
    animation-delay: 0.8s;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-badge p:first-child {
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.hero-badge p:last-child {
    font-size: 0.95rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-badge p:first-child {
        font-size: 1rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .hero-badge p:last-child {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .hero-badge {
        padding: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-badge p:first-child {
        font-size: 0.95rem;
    }
    
    .hero-badge p:last-child {
        font-size: 0.85rem;
    }
}

/* Floating QR Code */
.floating-qr {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 180px;
    padding: 15px 10px;
    transition: all 0.3s ease;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(217, 26, 96, 0.18);
    border: 1px solid rgba(217, 26, 96, 0.1);
    background: white;
}

.floating-qr:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(217, 26, 96, 0.25);
}

.qr-show-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d91a60;
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(217, 26, 96, 0.3);
    font-size: 16px;
}

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

.qr-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #d91a60;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 10px;
    box-shadow: 0 4px 8px rgba(217, 26, 96, 0.3);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.qr-close:hover {
    transform: scale(1.1);
    background-color: #c01555;
}

/* Media query to hide QR on small screens */
@media screen and (max-width: 768px) {
    .floating-qr, .qr-show-btn {
        display: none !important;
    }
}

/* Tools Section for Sitelinks */
.tools-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tools-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.tools-section > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #d91a60, #ff6b9d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d91a60, #ff6b9d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1) rotate(5deg);
}

.tool-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.tool-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tool-card h3 a:hover {
    color: #d91a60;
}

.tool-card p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tool-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d91a60, #ff6b9d);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.tool-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(217, 26, 96, 0.4);
    background: linear-gradient(135deg, #c01555, #e55a8a);
}

/* Responsive design for tools section */
@media screen and (max-width: 768px) {
    .tools-section {
        padding: 60px 0;
    }
    
    .tools-section h2 {
        font-size: 2rem;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Navigation dropdown for tools */
.nav-tools-dropdown {
    position: relative;
}

.nav-tools-dropdown .tools-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-tools-dropdown .tools-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.nav-tools-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-tools-dropdown:hover .tools-link i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #d91a60, #ff6b9d);
    color: white;
    transform: translateX(5px);
}

.dropdown-menu a i {
    font-size: 1rem;
    width: 16px;
}

/* Mobile navigation adjustments */
@media screen and (max-width: 768px) {
    .nav-tools-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 10px;
    }
    
    .nav-tools-dropdown .tools-link {
        pointer-events: none;
        color: #d91a60;
        font-weight: 600;
    }
    
    .dropdown-menu a {
        padding: 8px 20px;
        margin: 5px 0;
        border-radius: 8px;
        background: rgba(217, 26, 96, 0.1);
    }
} 