/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}

body {
    background: #f7fbff;
    color: #1f2937;
    line-height: 1.6;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 8%;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.logo {
    font-weight: 900;
    font-size: 22px;
    color: #0ea5e9;
}

.navbar nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #374151;
    font-weight: 600;
}

.navbar nav a:hover {
    color: #0ea5e9;
}

/* HERO */
.hero {
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: linear-gradient(rgba(14, 165, 233, .85), rgba(56, 189, 248, .85)),
        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 900;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: white;
    color: #0284c7;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
}

.cta-secondary {
    background: transparent;
    border: 2px solid white;
    padding: 14px 28px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

/* SERVICES */
.services {
    padding: 70px 8%;
    text-align: center;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: .3s;
}

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

.service-card h3 {
    color: #0284c7;
    margin-bottom: 10px;
}

/* PRICING */
.pricing {
    background: #e0f2fe;
    padding: 70px 8%;
    text-align: center;
}

.pricing h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.pricing-cards {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    padding: 35px;
    border-radius: 14px;
    width: 260px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
    border: 3px solid #0ea5e9;
    transform: scale(1.05);
}

.price-card h3 {
    margin-bottom: 10px;
}

.price {
    font-size: 32px;
    font-weight: 900;
    color: #0284c7;
    margin: 10px 0;
}

/* CONTACT FORM */
.contact {
    padding: 70px 8%;
    text-align: center;
}

.contact h2 {
    font-size: 32px;
}

.contact form {
    margin-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact input,
.contact select,
.contact textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 15px;
}

.contact textarea {
    min-height: 120px;
}

.contact button {
    background: #0284c7;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.contact button:hover {
    background: #0369a1;
}

.contact-info {
    margin-top: 35px;
    font-weight: 600;
    color: #374151;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
}

/* Footer Container */
.footer-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container p {
    font-size: 14px;
    opacity: .85;
}

/* MOBILE */
@media(max-width:768px) {

    .hero h1 {
        font-size: 34px;
    }

    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}