/* RESET & FONT */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

a { text-decoration: none; }

/* HEADER */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    background: linear-gradient(90deg, #004d7a, #00b4d8);
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo { display: flex; align-items: center; justify-content: center; }
header .logo img { height: 80px; margin-right: 15px; }
header .logo h1 { font-size: 2.8em; }
header nav { margin-top: 15px; }
header nav a { margin: 0 20px; color: white; font-weight: 500; font-size: 1.1em; }

/* HERO */
#home {
    background: linear-gradient(135deg, #00b4d8, #90e0ef);
    color: white;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffd60a;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 1.3em;
    max-width: 850px;
    margin: 20px auto;
}

.btn-primary {
    margin-top: 25px;
    background: #004d7a;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0077b6;
}

/* SERVICES */
#services { padding: 90px 20px; text-align: center; background: #f0f8ff; }
#services h2 { margin-bottom: 50px; font-size: 2.2em; color: #004d7a; }
.services-container { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.service {
    background: white; padding: 35px; width: 320px; border-radius: 12px; box-shadow: 0 6px 20px rgba(0,0,0,0.15); transition: transform 0.3s;
}
.service:hover { transform: translateY(-7px); }
.service h3 { color: #00b4d8; margin-bottom: 15px; }

/* TRUST / STATS */
#trust { padding: 90px 20px; text-align: center; background: #e0f7fa; }
#trust h2 { margin-bottom: 25px; font-size: 2.2em; color: #004d7a; }
.trust-text { max-width: 750px; margin: 0 auto 50px auto; font-size: 1.15em; color: #333; text-align: center; }
.stats-container { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat h3 { font-size: 2.7em; color: #00b4d8; margin: 0; }
.stat p { margin: 5px 0 0 0; }

/* GALLERY */
#gallery { 
    padding: 90px 20px; 
    text-align: center; 
    background: linear-gradient(135deg, #f5f0ec, #e0dede);
    border-radius: 20px 20px 0 0;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.05);
}

#gallery h2 { 
    font-size: 2.2em; 
    margin-bottom: 50px; 
    color: #004d7a; 
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1); 
}

.gallery { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 25px; 
}

.gallery img { 
    width: 400px; 
    border-radius: 15px; 
    transition: transform 0.4s, box-shadow 0.4s; 
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery img:hover { 
    transform: translateY(-10px) scale(1.03); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* CONTACT */
#contact { padding: 90px 20px; background: #f0f8ff; text-align: center; }
#contact h2 { font-size: 2.2em; margin-bottom: 30px; color: #004d7a; }
.contact-info p a { color: #00b4d8; }
form { margin-top: 35px; display: flex; flex-direction: column; align-items: center; }
form input, form textarea { width: 80%; max-width: 500px; padding: 18px; margin: 12px 0; border-radius: 8px; border: 1px solid #ccc; }
form button { padding: 18px 35px; border: none; border-radius: 8px; background: #004d7a; color: white; font-weight: bold; cursor: pointer; margin-top: 15px; transition: 0.3s; }
form button:hover { background: #0077b6; }

/* FOOTER */
footer { background: #004d7a; color: white; padding: 25px 50px; display: flex; justify-content: flex-start; gap: 20px; flex-wrap: wrap; text-align: left; }