/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header and Navigation */
.header {
    background: rgba(25, 56, 41, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
    border-bottom: 3px solid #33A550;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #33A550;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* App Store Buttons */
.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.app-store-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: scale(1.05);
}

.app-store-badge, .google-play-badge {
    height: 40px;
    width: auto;
    display: block;
}

/* Hero Section */
.hero {
    background: #E5F5EA;
    color: #333;
    padding: 120px 20px 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed #000000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 1.2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
}

.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.8;
    line-height: 1.5;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-buttons .app-store-badge,
.hero-buttons .google-play-badge {
    height: 50px;
    width: auto;
    display: block;
}

.cta-button {
    background: #fff;
    color: #667eea;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Sections */
.about, .services, .contact {
    padding: 80px 0;
}

/* About Section */
.about {
    background: linear-gradient(to bottom, #E5F5EA 0%, #F0FFF5 100%);
    padding: 80px 0;
    scroll-margin-top: 50px;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    margin-top: -23px;
    color: #666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

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

.carousel-image {
    display: none;
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.carousel-image.active {
    display: block;
}

.carousel-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: #000000;
}

.about-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-square {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    transform: scale(1);
}

.feature-square:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-square.active {
    border-color: #193829;
    background: #F3F4F6;
    color: #000000;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.feature-square h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #000000;
    text-align: center;
}

.feature-square p {
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 1;
    color: #49494A;
    text-align: left !important;
}

.feature-square.active p {
    opacity: 1;
    color: #49494A;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #F0FFF5 0%, #D5FFE2 100%);
    padding: 80px 0;
    scroll-margin-top: 50px;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact {
    background: #f8f9fa;
}

.about p, .contact p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #FFFFFF !important;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: left;
    transition: transform 0.3s ease;
    border: 3px solid #061E16;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #061E16;
    text-align: center;
}

.service-card p {
    color: #061E16;
    line-height: 1.6;
    text-align: left;
}

/* Footer */
.footer {
    background: #193829;
    color: white;
    min-height: 250px;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-brand {
    flex: 1;
    text-align: left;
    padding-top: 2rem;
}

.footer-brand .brand-logo {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 0 1rem 0;
}

.footer-brand h3 {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: normal;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}

.footer-buttons .app-store-badge,
.footer-buttons .google-play-badge {
    height: 35px;
    width: auto;
    display: block;
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 6rem;
    flex: 1;
    justify-content: flex-start;
    padding-top: 2rem;
    margin-left: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #33A550;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex: 1;
    justify-content: center;
    padding-top: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials {
    background: #1E1A24;
    padding: 80px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid .testimonial-card:nth-child(4),
.testimonials-grid .testimonial-card:nth-child(5) {
    grid-column: span 1.5;
}

.testimonial-card {
    background: #2D2934;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #374151;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
}

.profile-picture {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.user-info h4 {
    margin: 0;
    font-size: 1rem;
    color: #FFFFFF;
    font-weight: 600;
}

.review {
    color: #FFFFFF;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-buttons .app-store-badge,
    .hero-buttons .google-play-badge {
        height: 45px;
    }
    
    .placeholder-image {
        width: 300px;
        height: 200px;
    }
    
    .about-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .carousel-image {
        height: 300px;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .services h2, .contact h2 {
        font-size: 2rem;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid .testimonial-card:nth-child(4),
    .testimonials-grid .testimonial-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
        align-items: center;
    }
    
    .footer-brand {
        text-align: center;
        padding-top: 0;
    }
    
    .footer-buttons {
        justify-content: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
        margin-left: 0;
        justify-content: center;
        padding-top: 0;
    }
    
    .footer-social {
        justify-content: center;
        padding-top: 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .nav {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 15px 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .about, .services, .contact {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .footer {
        padding: 30px 0;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 0 10px;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
    
    .footer-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-buttons .app-store-badge,
    .footer-buttons .google-play-badge {
        height: 30px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 