/* ========= FlowMaster Corporate Styles ========= */

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

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

/* Header */
header {
    background: #0d2240;
    padding: 20px;
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
}

nav .logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Hero */
.hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom right, #e9f0ff, #bed4ff);
    position: relative;
    overflow: hidden;
}

.hero-home {
    background: linear-gradient(to bottom right, rgba(233, 240, 255, 0.95), rgba(190, 212, 255, 0.95)), 
                url('../images/travel-2650303_1280.jpg') center/cover no-repeat;
}

.hero-product {
    background: linear-gradient(to bottom right, rgba(233, 240, 255, 0.95), rgba(190, 212, 255, 0.95)), 
                url('../images/weather-1568687_1280.jpg') center/cover no-repeat;
}

.hero-about {
    background: linear-gradient(to bottom right, rgba(233, 240, 255, 0.95), rgba(190, 212, 255, 0.95)), 
                url('../images/map-5911003_1280.jpg') center/cover no-repeat;
}

.hero-whitelabel {
    background: linear-gradient(to bottom right, rgba(233, 240, 255, 0.95), rgba(190, 212, 255, 0.95)), 
                url('../images/business-4859127_1280.png') center/cover no-repeat;
}

.hero-contact {
    background: linear-gradient(to bottom right, rgba(233, 240, 255, 0.95), rgba(190, 212, 255, 0.95)), 
                url('../images/telephone-612061_1280.jpg') center/cover no-repeat;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #0d2240;
}

.hero p {
    font-size: 20px;
    max-width: 700px;
    margin: auto;
}

.hero .lead {
    color: #16314e;
    margin-bottom: 20px;
}

.hero-ctas {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    background: transparent;
    color: #0d2240;
    border: 2px solid #0d2240;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.btn.primary {
    background: #0d2240;
    color: #fff;
}

/* Sections */
.section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 20px;
}

.section h2 {
    font-size: 32px;
    color: #0d2240;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    margin-bottom: 15px;
}

.section-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 8px rgba(13, 34, 64, 0.15);
}

.features {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.feature {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(13,34,64,0.08);
    flex: 1;
}

.feature img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 12px;
}

.feature h3 {
    color: #0d2240;
    margin-bottom: 8px;
}

.more {
    margin-top: 18px;
}

/* Footer */
footer {
    background: #0d2240;
    color: white;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: underline;
}

.footer-inner {
    max-width: 1100px;
    margin: auto;
}

.footer-links {
    margin-top: 8px;
}

.footer-note {
    margin-top: 12px;
    font-size: 14px;
    color: #cfe0ff;
}

/* Responsive */
@media (max-width: 800px) {
    .features { flex-direction: column; }
    .hero h1 { font-size: 32px; }
    nav ul { display: none; }
}
