:root {
     --primary: #FF5252;
     --primary-dark: #e04848;
     --white: #FFFFFF;
     --bg-dark: #0f0f12;
     --bg-light: #1a1a21;
     --text-light: #e0e0e0;
     --neon-glow: 0 0 10px rgba(255, 82, 82, 0.7), 0 0 20px rgba(255, 82, 82, 0.5);
 }

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

 body {
     font-family: 'Poppins', sans-serif;
     background-color: var(--bg-dark);
     color: var(--text-light);
     overflow-x: hidden;
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.7);
     }

     70% {
         box-shadow: 0 0 0 15px rgba(255, 82, 82, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(255, 82, 82, 0);
     }
 }

 /* Glassmorphism effect */
 .glass {
     background: rgba(26, 26, 33, 0.6);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     border-radius: 16px;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 header {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     padding: 20px 0;
     transition: all 0.3s ease;
 }

 header.scrolled {
     background: rgba(15, 15, 18, 0.9);
     backdrop-filter: blur(10px);
     padding: 15px 0;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
 }

 .container {
     width: 90%;
     max-width: 1400px;
     margin: 0 auto;
 }

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

 .logo {
     font-size: 28px;
     font-weight: 700;
     background: linear-gradient(to right, var(--primary), #ff8a8a);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     text-shadow: var(--neon-glow);
 }

 .nav-links {
     display: flex;
     gap: 30px;
 }

 .nav-links a {
     position: relative;
     text-decoration: none;
     color: var(--text-light);
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .nav-links a::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 0;
     background-color: var(--primary);
     transition: width 0.3s ease;
 }

 .nav-links a:hover {
     color: var(--primary);
 }

 .nav-links a:hover::after {
     width: 100%;
 }

 .btn {
     padding: 12px 30px;
     border-radius: 30px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     z-index: 1;
 }

 .btn-primary {
     background-color: var(--primary);
     color: var(--white);
     border: none;
     box-shadow: 0 5px 15px rgba(255, 82, 82, 0.4);
 }

 .btn-primary:hover {
     background-color: var(--primary-dark);
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(255, 82, 82, 0.6);
 }

 .btn-outline {
     background-color: transparent;
     color: var(--primary);
     border: 2px solid var(--primary);
 }

 .btn-outline:hover {
     background-color: var(--primary);
     color: var(--white);
 }

 .hero {
     height: 100vh;
     display: flex;
     align-items: center;
     position: relative;
     overflow: hidden;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 82, 82, 0.1) 0%, rgba(15, 15, 18, 0) 70%);
     z-index: -1;
 }

 .hero-content {
     display: flex;
     align-items: center;
     justify-content: space-between;
     width: 100%;
 }

 .hero-text {
     max-width: 600px;
 }

 .hero h1 {
     font-size: 60px;
     margin-bottom: 20px;
     background: linear-gradient(to right, #fff, #e0e0e0);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
     line-height: 1.2;
 }

 .hero h1 span {
     color: var(--primary);
     background: none;
     -webkit-background-clip: initial;
     background-clip: initial;
 }

 .hero p {
     font-size: 20px;
     margin-bottom: 40px;
     opacity: 0.9;
     line-height: 1.6;
 }

 .hero-btns {
     display: flex;
     gap: 20px;
 }

 .hero-image {
     position: relative;
     width: 50%;
     display: flex;
     justify-content: center;
 }

 .app-mockup {
     width: 500px;
     animation: float 6s ease-in-out infinite;
     filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
 }

 .floating-icons {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     pointer-events: none;
 }

 .floating-icon {
     position: absolute;
     opacity: 0.6;
     filter: drop-shadow(0 0 5px var(--primary));
 }

 .features {
     padding: 120px 0;
     position: relative;
 }

 .features::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,82,82,0.03)" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>');
     background-size: 100% auto;
     background-repeat: no-repeat;
     background-position: top center;
     z-index: -1;
 }

 .section-title {
     text-align: center;
     margin-bottom: 80px;
 }

 .section-title h2 {
     font-size: 42px;
     margin-bottom: 15px;
     background: linear-gradient(to right, var(--primary), #ff8a8a);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
 }

 .section-title p {
     max-width: 700px;
     margin: 0 auto;
     font-size: 18px;
     opacity: 0.8;
 }

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

 .feature-card {
     padding: 40px 30px;
     border-radius: 20px;
     transition: all 0.5s ease;
     position: relative;
     overflow: hidden;
 }

 .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(135deg, rgba(255, 82, 82, 0.1) 0%, rgba(26, 26, 33, 0.5) 100%);
     z-index: -1;
     border-radius: 20px;
 }

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

 .feature-icon {
     width: 70px;
     height: 70px;
     background: rgba(255, 82, 82, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     font-size: 28px;
     color: var(--primary);
 }

 .feature-card h3 {
     font-size: 22px;
     margin-bottom: 15px;
 }

 .feature-card p {
     opacity: 0.8;
     line-height: 1.6;
 }

 .app-showcase {
     padding: 120px 0;
     position: relative;
 }

 .showcase-container {
     display: flex;
     align-items: center;
     gap: 50px;
 }

 .showcase-text {
     flex: 1;
 }

 .showcase-text h2 {
     font-size: 42px;
     margin-bottom: 25px;
     line-height: 1.3;
 }

 .showcase-text p {
     font-size: 18px;
     margin-bottom: 30px;
     opacity: 0.8;
     line-height: 1.6;
 }

 .showcase-image {
     flex: 1;
     position: relative;
 }

 .app-screens {
     position: relative;
     width: 100%;
     max-width: 500px;
     margin: 0 auto;
 }

 .screen {
     position: absolute;
     border-radius: 25px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
     transition: all 0.5s ease;
 }

 .screen-1 {
     width: 85%;
     left: 0;
     top: -120px;
     z-index: 3;
     animation: float 4s ease-in-out infinite;
 }

 .screen-2 {
     width: 80%;
     right: 0;
     top: -80px;
     z-index: 2;
     animation: float 5s ease-in-out infinite 1s;
 }

 .screen-3 {
     width: 80%;
     left: -20px;
     top: -60px;
     z-index: 1;
     animation: float 6s ease-in-out infinite 0.5s;
 }

 .download {
     padding: 120px 0;
     text-align: center;
     position: relative;
 }

 .download::before {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,82,82,0.03)" d="M0,100 L100,100 L100,0 Q50,20 0,0 Z"></path></svg>');
     background-size: 100% auto;
     background-repeat: no-repeat;
     background-position: bottom center;
     z-index: -1;
 }

 .download-content {
     max-width: 800px;
     margin: 0 auto;
 }

 .app-buttons {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 40px;
     flex-wrap: wrap;
 }

 .app-btn {
     display: flex;
     align-items: center;
     padding: 15px 25px;
     border-radius: 12px;
     text-decoration: none;
     transition: all 0.3s ease;
     background: var(--bg-light);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .app-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
 }

 .app-btn i {
     font-size: 30px;
     margin-right: 15px;
 }

 .app-btn-text {
     text-align: left;
 }

 .app-btn-text div:first-child {
     font-size: 12px;
     opacity: 0.8;
 }

 .app-btn-text div:last-child {
     font-size: 18px;
     font-weight: bold;
 }

 footer {
     background-color: var(--bg-light);
     padding: 80px 0 30px;
     position: relative;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 40px;
     margin-bottom: 60px;
 }

 .footer-column h3 {
     color: var(--primary);
     margin-bottom: 25px;
     font-size: 20px;
     position: relative;
     display: inline-block;
 }

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

 .footer-column ul {
     list-style: none;
 }

 .footer-column ul li {
     margin-bottom: 12px;
 }

 .footer-column ul li a {
     color: var(--text-light);
     text-decoration: none;
     opacity: 0.8;
     transition: all 0.3s ease;
     position: relative;
 }

 .footer-column ul li a::before {
     content: '';
     position: absolute;
     width: 0;
     height: 1px;
     bottom: -2px;
     left: 0;
     background: var(--primary);
     transition: width 0.3s ease;
 }

 .footer-column ul li a:hover {
     opacity: 1;
     color: var(--primary);
 }

 .footer-column ul li a:hover::before {
     width: 100%;
 }

 .legal-column a {
     color: var(--text-light);
     text-decoration: none;
     opacity: 0.8;
     transition: all 0.3s ease;
     position: relative;
 }

 .legal-column a::before {
     content: '';
     position: absolute;
     width: 0;
     height: 1px;
     bottom: -2px;
     left: 0;
     background: var(--primary);
     transition: width 0.3s ease;
 }

 .legal-column a:hover {
     opacity: 1;
     color: var(--primary);
 }

 .legal-column a:hover::before {
     width: 100%;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.05);
     color: var(--text-light);
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: var(--primary);
     color: var(--white);
     transform: translateY(-3px);
 }

 .footer-bottom {
     text-align: center;
     padding-top: 30px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .copyright {
     opacity: 0.7;
     font-size: 14px;
 }

 /* Floating particles */
 .particle {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 82, 82, 0.3);
     pointer-events: none;
 }

 /* Responsive styles */
 @media (max-width: 992px) {
     .hero-content {
         flex-direction: column;
         text-align: center;
     }

     .hero-text {
         margin-bottom: 50px;
     }

     .hero-btns {
         justify-content: center;
     }

     .hero-image {
         width: 100%;
     }

     .showcase-container {
         flex-direction: column;
     }
 }

 @media (max-width: 768px) {
     .hero h1 {
         font-size: 48px;
     }

     .section-title h2,
     .showcase-text h2 {
         font-size: 36px;
     }

     .nav-links {
         display: none;
     }
 }

/* ===== Business Page Styles ===== */
.business-hero {
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.business-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 82, 82, 0.1) 0%, rgba(15, 15, 18, 0) 70%);
    z-index: -1;
}

.business-hero h1 span {
    color: var(--primary);
}

.business-features {
    padding: 100px 0;
    background: rgba(255, 82, 82, 0.03);
}

.business-signup {
    padding: 100px 0;
}

.signup-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px;
}

.signup-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.signup-text p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.signup-text ul {
    list-style: none;
}

.signup-text li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.signup-text i {
    color: var(--primary);
    margin-right: 10px;
}

.signup-form {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.signup-form h3 {
    margin-bottom: 30px;
    font-size: 24px;
    text-align: center;
}

.business-testimonials {
    padding: 80px 0;
}

/* ===== Contact Page Styles ===== */
.contact-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 82, 82, 0.1) 0%, rgba(15, 15, 18, 0) 70%);
    z-index: -1;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

.contact-content {
    padding: 80px 0;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    padding: 40px;
}

.contact-form h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    padding: 40px;
}

.contact-info h2 {
    margin-bottom: 30px;
    color: var(--primary);
}

.info-card {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 82, 82, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
    color: var(--primary);
}

.info-text h3 {
    margin-bottom: 5px;
    font-size: 18px;
}

.info-text p {
    margin-bottom: 5px;
    opacity: 0.9;
}

.info-text a {
    color: var(--primary);
    text-decoration: none;
}

/* ===== FAQ Page Styles ===== */
.faq-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 82, 82, 0.1) 0%, rgba(15, 15, 18, 0) 70%);
    z-index: -1;
}

.faq-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.faq-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    opacity: 0.9;
}

.faq-content {
    padding: 80px 0;
    position: relative;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.faq-category-btn {
    padding: 10px 20px;
    background: rgba(255, 82, 82, 0.1);
    border-radius: 30px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-category-btn:hover,
.faq-category-btn.active {
    background: var(--primary);
    color: var(--white);
}

.faq-section {
    margin-bottom: 60px;
    display: none;
}

.faq-section:first-of-type {
    display: block;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--primary);
    bottom: -8px;
    left: 0;
}

.faq-accordion {
    display: grid;
    gap: 20px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p,
.faq-answer ol,
.faq-answer ul {
    margin-bottom: 20px;
}

.faq-answer ol,
.faq-answer ul {
    padding-left: 20px;
}

.faq-support {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
}

.faq-support i {
    font-size: 50px;
    color: var(--primary);
    margin-bottom: 20px;
}

.faq-support h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.faq-support p {
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .contact-grid,
    .signup-container {
        grid-template-columns: 1fr;
    }

    .signup-container {
        padding: 40px;
    }
}

@media (max-width: 768px) {

    .contact-hero h1,
    .faq-hero h1 {
        font-size: 36px;
    }

    .contact-form,
    .contact-info,
    .signup-form {
        padding: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
}