/* css/index.css - LogiServ Homepage Styles */
:root {
    --dark-green: #27963c;
    --light-green: #80cc28;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --off-white: #fefefe;
    --dark-text: #1a1a1a;
    --medium-gray: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--dark-green);
}

.cta-nav {
    background: var(--dark-green);
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.cta-nav:hover {
    background: var(--light-green);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: var(--dark-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Full-Screen Video Background */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.hero-video.loading {
    opacity: 0.5;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
    color: var(--white);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--light-green);
    color: var(--dark-text);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.cta-primary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.cta-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
}

.cta-secondary:hover {
    background: var(--white);
    color: var(--dark-text);
    transform: translateY(-3px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-text);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    gap: 0.8rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-badge i {
    color: var(--light-green);
    font-size: 1rem;
}

/* Trust Section */
.trust-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.trust-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.trust-icon i {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-green), var(--light-green));
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto;
    font-size: 2rem;
}

.trust-item h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: 600;
    font-size: 1.3rem;
}

.trust-item p {
    font-weight: 400;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: var(--white);
}

.services-preview h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    font-family: 'Poppins', sans-serif;
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 1.4rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--medium-gray);
    font-weight: 400;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem 1.5rem;
    color: var(--light-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.service-link:hover {
    color: var(--dark-green);
    gap: 0.8rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Founder Spotlight */
.founder-spotlight {
    padding: 5rem 0;
    background: var(--light-gray);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 700;
}

.founder-text p {
    margin-bottom: 2rem;
    font-weight: 400;
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

.founder-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.founder-image:hover img {
    transform: scale(1.02);
}

/* Service Area */
.service-area {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.service-area h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
    font-weight: 700;
}

.service-area p {
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.area-map {
    width: 100%;
    max-width: 800px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.area-map iframe {
    display: block;
    border: none;
}

.area-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.area-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--light-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.area-item:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-3px);
}

.area-item i {
    color: var(--light-green);
}

.area-item:hover i {
    color: var(--white);
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--dark-green), var(--light-green));
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.final-cta .cta-primary {
    background: var(--white);
    color: var(--dark-text);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.final-cta .cta-secondary {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.final-cta .cta-secondary:hover {
    background: var(--white);
    color: var(--dark-text);
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 4rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-weight: 400;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-section h4 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 1.5rem;
    color: var(--light-green);
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--light-green);
    opacity: 1;
}

.footer-section i {
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-weight: 400;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero {
        height: 80vh;
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .service-link {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-icon i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .services-preview h2,
    .founder-text h2,
    .service-area h2,
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
    }
}

