/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #22c55e;
    --secondary-color: #16a34a;
    --accent-color: #fbbf24;
    --text-dark: #000000;
    --text-light: #4b5563;
    --bg-light: #fefce8;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #22c55e;
    --yellow-bg: #fef9c3;
    --green-bg: #dcfce7;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border-radius: 5px;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: url('images/background-img.png') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.75) 0%, rgba(34, 197, 94, 0.70) 50%, rgba(251, 191, 36, 0.75) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: #f59e0b;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Stats Section */
.stats-section {
    background: var(--bg-white);
    padding: 60px 0;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: var(--yellow-bg);
    border-radius: 10px;
    transition: transform 0.3s;
    border: 2px solid var(--accent-color);
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h2 {
    font-size: 48px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-card p {
    color: var(--text-light);
    font-size: 18px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 40px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.features-category {
    margin-bottom: 60px;
}

.features-category h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: var(--green-bg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.feature-card h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background: white;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    margin: 0 30px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.timeline-content {
    flex: 1;
    background: var(--green-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.timeline-content h4 {
    font-size: 18px;
    color: var(--text-dark);
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--green-bg) 0%, white 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-align: center;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    background: var(--yellow-bg);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.why-card h4 {
    font-size: 22px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Clients Section */
.clients-section {
    padding: 80px 0;
    background: white;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.client-card {
    background: var(--yellow-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--accent-color);
}

.client-card:hover {
    border-color: var(--primary-color);
    background: var(--green-bg);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.2);
}

.client-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.client-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Full Width Client Card */
.client-card-full {
    background: var(--yellow-bg);
    padding: 50px;
    border-radius: 15px;
    border: 3px solid var(--accent-color);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    max-width: 100%;
}

.client-card-full:hover {
    border-color: var(--primary-color);
    background: var(--green-bg);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

.client-info {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
}

.client-info h3 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-branches {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 600;
}

.client-marketing {
    text-align: left;
}

.client-marketing p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--yellow-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--green-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--yellow-bg);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.testimonial-author h5 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--yellow-bg);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 2px solid var(--accent-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Fixed Download Buttons */
.download-buttons-fixed {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    background: transparent;
    z-index: 1000;
    box-shadow: none;
    pointer-events: none;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    pointer-events: auto;
}

.download-btn i {
    font-size: 20px;
}

.download-btn span {
    white-space: nowrap;
}

.ios-btn {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
}

.ios-btn:hover {
    background: linear-gradient(135deg, #333333, #000000);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.android-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.android-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    border-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        padding: 6px 0;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .contact-info {
        font-size: 12px;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-info span {
        font-size: 11px;
    }

    .contact-info span i {
        font-size: 12px;
    }

    .social-links {
        gap: 8px;
    }

    .social-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .menu-toggle {
        display: flex;
    }

    .download-buttons-fixed {
        right: 10px;
        bottom: 10px;
        gap: 8px;
        padding: 0;
    }

    .download-btn {
        width: auto;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
    }

    .download-btn span {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        gap: 15px;
    }

    .nav-menu.active {
        left: 0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 10px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .timeline::before {
        left: 60px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
    }

    .timeline-year {
        width: 80px;
        height: 80px;
        font-size: 18px;
        margin: 0 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .why-grid,
    .clients-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .top-bar {
        padding: 5px 0;
    }

    .top-bar-content {
        gap: 5px;
    }

    .contact-info {
        font-size: 10px;
        gap: 10px;
    }

    .contact-info span {
        font-size: 10px;
    }

    .contact-info span i {
        font-size: 11px;
    }

    .social-btn {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .hero {
        padding: 80px 0;
    }

    .contact-form {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

