/* 
   FlowFactorAI - Main Stylesheet
   A modern, professional design for a services website
*/

/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #4a6cf7;
    --primary-dark: #3a56d4;
    --secondary-color: #6c757d;
    --dark-color: #212529;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --body-color: #f5f8ff;
    --text-color: #333;
    --border-color: #e9ecef;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    
    /* Font sizes for responsive text */
    --h1-size: 3rem;
    --h2-size: 2.5rem;
    --h3-size: 1.8rem;
    --p-size: 1rem;
    --btn-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--body-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 500;
    text-transform: capitalize;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: var(--btn-size);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.pull-right {
    float: right;
}

.section-title {
    font-size: var(--h2-size);
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary-color);
}

/* ===== HEADER ===== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: relative;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

/* Language switcher nav integration */
nav ul li.language-switcher {
    display: flex;
    margin-left: 30px;
}

nav ul li.language-switcher a::after {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(74, 108, 247, 0.75), rgba(58, 86, 212, 1)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-position: center 50%;
    color: white;
    padding: 150px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 108, 247, 0.4) 0%, rgba(58, 86, 212, 0) 70%);
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

.hero .btn {
    background-color: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero .btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 25px;
}

.hero p {
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    margin-bottom: 35px;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 100px 0;
    background-color: white;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* ===== CTA SECTION ===== */
.cta {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: var(--h2-size);
    margin-bottom: 20px;
}

.cta p {
    font-size: calc(var(--p-size) * 1.2);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn:hover {
    background-color: var(--light-color);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(rgba(74, 108, 247, 0.75), rgba(58, 86, 212, 1)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-position: center 50%;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(74, 108, 247, 0.4) 0%, rgba(58, 86, 212, 0) 70%);
    animation: pulse-header 8s infinite alternate;
}

@keyframes pulse-header {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.page-header h1 {
    font-size: var(--h1-size);
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header p {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    margin: 0 auto;
}

/* Page-specific header backgrounds */
.services-header {
    background: linear-gradient(rgba(74, 108, 247, 0.75), rgba(58, 86, 212, 1)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-position: center 50%;
}

.about-header {
    background: linear-gradient(rgba(74, 108, 247, 0.75), rgba(58, 86, 212, 1)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-position: center 50%;
}

.contact-header {
    background: linear-gradient(rgba(74, 108, 247, 0.75), rgba(58, 86, 212, 1)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-position: center 50%;
}

.privacy-header {
    background: linear-gradient(rgba(74, 108, 247, 0.75), rgba(58, 86, 212, 1)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-position: center 50%;
}

.use-cases-header {
    background: linear-gradient(rgba(74, 108, 247, 0.75), rgba(58, 86, 212, 1)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    background-position: center 50%;
}

/* ===== SERVICES PAGE ===== */
.services {
    padding: 100px 0;
    background-color: white;
}

.service-card {
    display: flex;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-icon {
    flex: 0 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
}

.service-icon i {
    font-size: 3rem;
}

.service-content {
    flex: 1;
    padding: 30px;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-features {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

/* ===== ABOUT PAGE ===== */
.about-story {
    padding: 100px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
}

.about-image {
    flex: 1;
}

.mission-vision {
    padding: 80px 0;
    background-color: var(--light-color);
}

.mission-vision .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission, .vision, .values {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.mission .icon, .vision .icon, .values .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.team {
    padding: 100px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    overflow: hidden;
}

.member-image img {
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 1.5rem;
    margin: 20px 0 5px;
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member .bio {
    padding: 0 20px 20px;
}

.social-links {
    margin: 20px 0;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background-color: var(--light-color);
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 100px 0;
    background-color: white;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info, .contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.contact-info h2, .contact-form h2 {
    /* font-size: 2rem; */
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item .icon {
    flex: 0 0 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
}

.info-item .text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.map-section {
    padding: 50px 0 100px;
    background-color: white;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: white;
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-social .social-icons {
    display: flex;
    gap: 10px;
}

.footer-social .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    :root {
        --h1-size: 2.8rem;
        --h2-size: 2.3rem;
        --h3-size: 1.6rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-icon {
        flex: 0 0 100px;
        width: 100%;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --h1-size: 2.5rem;
        --h2-size: 2rem;
        --h3-size: 1.5rem;
        --p-size: 0.95rem;
        --btn-size: 0.95rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    nav {
        align-items: center;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        overflow-y: auto;
        z-index: 99;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: inline-block;
        width: auto;
        padding: 10px 20px;
    }
    
    nav ul li.language-switcher {
        display: flex;
        margin: 15px 0;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    
    .hero h1 {
        font-size: var(--h1-size);
    }
    
    .section-title {
        font-size: var(--h2-size);
    }
}

@media (max-width: 576px) {
    :root {
        --h1-size: 2rem;
        --h2-size: 1.8rem;
        --h3-size: 1.4rem;
        --p-size: 0.9rem;
        --btn-size: 0.9rem;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .hero h1 {
        font-size: var(--h1-size);
    }
    
    .feature-card, .mission, .vision, .values {
        padding: 30px 20px;
    }
    
    .contact-info, .contact-form {
        padding: 30px 20px;
    }
    
    /* Improve feature card responsiveness */
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card i {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    /* Improve mission-vision section responsiveness */
    .mission-vision .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Improve contact section responsiveness */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 320px) {
    :root {
        --h1-size: 1.7rem;
        --h2-size: 1.5rem;
        --h3-size: 1.2rem;
        --p-size: 0.85rem;
        --btn-size: 0.85rem;
    }
    
    header .container {
        padding: 10px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .menu-toggle {
        font-size: 1.2rem;
    }
    
    nav ul {
        top: 58px;
        height: calc(100vh - 60px);
        padding-top: 20px;
    }
    
    nav ul.active {
        padding-top: 20px;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    nav ul li a {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    /* Improve feature card responsiveness at 320px */
    .feature-card, .mission, .vision, .values {
        padding: 15px 12px;
        border-radius: 8px;
    }
    
    .feature-card i {
        font-size: 2rem;
        margin-bottom: 8px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 0;
    }
    
    /* Improve mission-vision section responsiveness at 320px */
    .mission .icon, .vision .icon, .values .icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .mission p, .vision p, .values p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 0;
    }
    
    /* Improve contact section responsiveness at 320px */
    .contact-info, .contact-form {
        padding: 15px 12px;
        border-radius: 8px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
    
    .info-item .icon {
        flex: 0 0 40px;
        height: 40px;
        line-height: 40px;
        margin-right: 10px;
    }
    
    .info-item .text h3 {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group label {
        margin-bottom: 3px;
    }
    
    .form-group input, .form-group textarea {
        padding: 8px 12px;
    }
    
    /* Adjust section padding for better spacing on small screens */
    .features, .services, .about-story, .team, .contact-section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .page-header {
        padding: 60px 0;
    }
    
    /* Adjust service cards for better display on small screens */
    .service-card {
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    .service-icon {
        flex: 0 0 80px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .service-features {
        margin-top: 10px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .service-features li {
        font-size: 0.8rem;
        display: flex;
        align-items: flex-start;
    }
    
    .service-features li i {
        margin-right: 5px;
        margin-top: 3px;
        font-size: 0.7rem;
    }
    
    /* Adjust team section for better display on small screens */
    .team-member h3 {
        font-size: 1.1rem;
        margin: 15px 0 3px;
    }
    
    .team-member .position {
        margin-bottom: 10px;
        font-size: 0.8rem;
    }
    
    .team-member .bio {
        padding: 0 15px 15px;
        font-size: 0.8rem;
    }
    
    .social-links a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
    
    /* Further improve feature grid for very small screens */
    .feature-grid {
        gap: 20px;
        margin-top: 30px;
    }
    
    /* Further improve mission-vision section for very small screens */
    .mission-vision {
        padding: 50px 0;
    }
    
    .mission-vision .container {
        gap: 15px;
    }
    
    /* Further improve contact section for very small screens */
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-container {
        gap: 25px;
    }
    
    .service-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
}

/* Logo styles */
.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover {
    text-decoration: none;
}

/* Footer logo styles */
.footer-logo a {
    text-decoration: none;
    color: inherit;
}

.footer-logo a:hover {
    text-decoration: none;
}

/* Utility classes */
.menu-open {
    overflow: hidden;
}

/* Update all heading and text elements to use the responsive font size variables */
h1, .h1 {
    font-size: var(--h1-size);
}

h2, .h2, .section-title {
    font-size: var(--h2-size);
}

h3, .h3 {
    font-size: var(--h3-size);
}

p, .p, li, label, input, textarea, button {
    font-size: var(--p-size);
}

.hero h1 {
    font-size: var(--h1-size);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: calc(var(--p-size) * 1.2);
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-header h1 {
    font-size: var(--h1-size);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cta h2 {
    font-size: var(--h2-size);
    margin-bottom: 20px;
}

.cta p {
    font-size: calc(var(--p-size) * 1.2);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Flow Section */
.process-flow {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.process-flow .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.process-flow .section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
    font-size: 1.2rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon i {
    font-size: 2rem;
    color: #007bff;
}

.process-step h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive styles for process flow */
@media (max-width: 992px) {
    .process-steps {
        gap: 20px;
    }
    
    .process-step {
        min-width: calc(50% - 10px);
    }
    
    .process-steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-step {
        min-width: 100%;
    }
    
    .process-flow {
        padding: 60px 0;
    }
    
    .process-flow .section-subtitle {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .process-step {
        padding: 20px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 1000;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification i {
    font-size: 1.2rem;
}

.notification.success {
    border-left: 4px solid var(--success-color);
}

.notification.success i {
    color: var(--success-color);
}

.notification.error {
    border-left: 4px solid var(--danger-color);
}

.notification.error i {
    color: var(--danger-color);
}

.notification-close {
    background: none;
    border: none;
    padding: 0;
    margin-left: 15px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: #333;
}

/* Form Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spinner {
    margin-right: 8px;
}

/* ===== USE CASES SECTION ===== */
.use-cases {
    padding: 80px 0;
    background-color: #f8faff;
}

.use-cases .section-subtitle {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.use-case-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.use-case-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.use-case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    padding-left: 35px;
}

.use-case-card h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    width: 25px;
    height: 25px;
    background-color: var(--primary-color);
    opacity: 0.2;
    border-radius: 50%;
}

.use-case-card h3::after {
    content: '→';
    position: absolute;
    left: 3px;
    top: 1px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.use-case-card p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.use-case-benefit {
    background-color: rgba(74, 108, 247, 0.1);
    padding: 8px 15px;
    border-radius: 5px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: auto;
    display: inline-block;
}

.use-cases-button {
    text-align: center;
    margin-top: 40px;
}

/* Use Cases Page */
.use-cases-page {
    padding: 80px 0;
}

.use-cases-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .use-cases-grid,
    .use-cases-page-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .use-cases {
        padding: 60px 0;
    }
    
    .use-case-card h3 {
        font-size: 1.3rem;
    }
    
    .use-cases-grid {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .use-cases {
        padding: 40px 0;
    }
    
    .use-cases-grid,
    .use-cases-page-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-card {
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Add new styles for SVG illustrations */
.use-case-illustration {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.use-case-illustration i {
    font-size: 3rem;
    color: #4a6cf7;
    transition: transform 0.3s ease;
}

.use-case-card:hover .use-case-illustration i {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .use-case-illustration i {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .use-case-illustration i {
        font-size: 2rem;
    }
}

/* ===== AI DISCLAIMER SECTION ===== */

/* Disclaimer Button */
.disclaimer-button-container {
    text-align: center;
    margin: 30px 0;
}

.disclaimer-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* padding: 12px 24px; */
    padding: 6px 14px;
    background-color: rgba(74, 108, 247, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    /* font-size: 1rem; */
    font-size: .8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.disclaimer-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.disclaimer-button i {
    font-size: 1.2rem;
}

/* Disclaimer Modal */
.disclaimer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.disclaimer-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.disclaimer-modal-content {
    background-color: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.disclaimer-modal.show .disclaimer-modal-content {
    transform: translateY(0);
}

.disclaimer-modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(74, 108, 247, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.disclaimer-modal-header h3 {
    color: var(--dark-color);
    margin: 0;
    font-size: 1.4rem;
}

.disclaimer-modal-close {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.disclaimer-modal-close:hover {
    color: var(--primary-color);
}

.disclaimer-modal-body {
    padding: 30px;
}

.disclaimer-modal-body .disclaimer-icon {
    text-align: center;
    margin-bottom: 20px;
}

.disclaimer-modal-body .disclaimer-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.disclaimer-modal-body p {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.disclaimer-modal-body ul {
    margin: 20px 0;
    padding-left: 20px;
}

.disclaimer-modal-body ul li {
    color: var(--secondary-color);
    margin-bottom: 10px;
    position: relative;
    line-height: 1.6;
}

.disclaimer-modal-body ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: -20px;
}

.disclaimer-modal-body .disclaimer_footer {
    margin-top: 1.5rem;
    font-style: italic;
}

/* Privacy Section Styles */
.privacy-section {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(74, 108, 247, 0.05);
    border-radius: 8px;
    border-left: 4px solid #4a6cf7;
}

.privacy-section h4 {
    color: #4a6cf7;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.privacy-section p {
    margin-bottom: 1rem;
    color: #333;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
    color: #555;
    position: relative;
}

.privacy-section ul li::before {
    content: "•";
    color: #4a6cf7;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.privacy-section .privacy_footer {
    margin-top: 1.5rem;
    color: var(--text-muted);
}

.privacy-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--primary-color-dark);
}

@media (max-width: 768px) {
    .privacy-section {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    .privacy-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .privacy-section {
        padding: 0.8rem;
        margin: 1rem 0;
    }

    .privacy-section h4 {
        font-size: 1rem;
    }
}

/* Privacy Policy Page Styles */
.privacy-content {
    padding: 60px 0;
    background: #fff;
}

.privacy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.privacy-section h2 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy-section h3 {
    color: #4a6cf7;
    font-size: 1.4rem;
    margin: 25px 0 15px;
    font-weight: 500;
}

.privacy-section p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 20px;
}

.privacy-section ul li {
    color: #555;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.5;
}

.privacy-section ul li::before {
    content: "•";
    color: #4a6cf7;
    font-weight: bold;
    position: absolute;
    left: -20px;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 40px 0;
    }

    .privacy-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .privacy-section h2 {
        font-size: 1.6rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .privacy-content {
        padding: 30px 0;
    }

    .privacy-section {
        padding: 15px;
        margin-bottom: 25px;
    }

    .privacy-section h2 {
        font-size: 1.4rem;
    }

    .privacy-section h3 {
        font-size: 1.1rem;
    }
} 