/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7fa;
}

/* Navigation */
nav {
    background-color: #1a73e8;
    color: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #34a853;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #2d8f46;
    transform: scale(1.05);
}

/* Services */
.services {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #5f6368;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #e8eaed;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    color: #202124;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #5f6368;
    max-width: 700px;
    margin: 0 auto;
}

/* Services */
.services {
    padding: 6rem 5% 5rem;
    background: #ffffff;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2.8rem 2.2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(26, 115, 232, 0.12);
}

.service-icon {
    font-size: 3.2rem;
    margin-bottom: 1.8rem;
}

.service-card h3 {
    font-size: 1.45rem;
    margin-bottom: 1rem;
    color: #202124;
}

.service-features {
    margin-top: 1.5rem;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    color: #5f6368;
}

.service-features li {
    margin-bottom: 0.4rem;
    position: relative;
}

.service-features li::before {
    content: "•";
    color: #1a73e8;
    position: absolute;
    left: -1.2rem;
}

/* Why Us Split Section */
.why-us {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.split-text h2 {
    font-size: 2.6rem;
    line-height: 1.2;
    margin-bottom: 1.8rem;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1;
}

.stat-label {
    color: #5f6368;
    margin-top: 0.5rem;
    font-size: 1rem;
}

.feature-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Testimonials */
.testimonials {
    padding: 5rem 5%;
    background: #f8f9fa;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: #1a73e8;
    font-weight: 600;
}

/* FAQ */
.faq {
    padding: 5rem 5%;
    background: #ffffff;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.8rem 2rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 2rem;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 2rem 2rem;
    color: #5f6368;
}

/* Footer / Contact */
footer {
    background-color: #202124;
    color: #e8eaed;
    padding: 4rem 5% 2rem;
    text-align: center;
}

.footer-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #8ab4f8;
}

.contact-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    min-width: 280px;
    justify-content: center;
}

.email-btn {
    background-color: #000000;
    color: white;
}

.email-btn:hover {
    background-color: #2c2c2c;
    transform: translateY(-3px);
}

.form-btn {
    background-color: #000000;
    color: white;
}

.form-btn:hover {
    background-color: #2c2c2c;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #5f6368;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #202124;
    color: #e8eaed;
    padding: 5rem 5% 2rem;
    text-align: center;
}

.footer-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #8ab4f8;
}

.contact-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.25rem 3rem;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 300px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.email-btn {
    background: linear-gradient(135deg, #15205e, #525252);
    color: white;
}

.form-btn {
    background: linear-gradient(135deg, #450061, #15205e);
    color: white;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #5f6368;
    font-size: 0.95rem;
    opacity: 0.85;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .split-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    
    nav ul {
        gap: 1.2rem;
        font-size: 0.95rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        min-width: 280px;
    }
}