/* ==========================================================================
   Stilmall för Landningssida: arlanda-taxi.se
   ========================================================================== */

/* === GRUNDLÄGGANDE STIL & FÄRGVARIABLER === */
:root {
    --at-primary: #1a73e8; /* En modern blå färg */
    --at-secondary: #1e8e3e; /* En förtroendeingivande grön */
    --at-dark: #202124;
    --at-text: #5f6368;
    --at-text-light: #ffffff;
    --at-background: #f8f9fa;
    --white-bg: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    color: var(--at-text);
    background-color: var(--at-background);
    font-size: 16px;
    line-height: 1.7;
}

.container {
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

/* === HEADER === */
.at-header {
    background-color: var(--white-bg);
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.at-header .logo {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--at-dark);
}
.header-button {
    background-color: var(--at-secondary);
    color: var(--at-text-light);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s;
}
.header-button:hover {
    background-color: #1a73e8;
}


/* === HERO-SEKTION === */
.at-hero {
    background-image: linear-gradient(rgba(26, 115, 232, 0.8), rgba(26, 115, 232, 0.8)), url('https://images.unsplash.com/photo-1579546929518-9e396f3cc809?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    color: var(--at-text-light);
    padding: 80px 20px;
    text-align: center;
}
.at-hero h1 {
    font-size: 3em;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.at-hero p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}
.hero-button {
    background-color: var(--at-secondary);
    color: var(--at-text-light);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1em;
    transition: transform 0.2s, background-color 0.3s;
    display: inline-block;
}
.hero-button:hover {
    transform: scale(1.05);
    background-color: var(--white-bg);
    color: var(--at-secondary);
}

/* === BOKNINGSFORMULÄR === */
.booking-form-container {
    padding: 50px 0;
}
.section-box {
    background: var(--white-bg);
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}
.section-box h2 {
    text-align: center;
    color: var(--at-dark);
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 2rem;
}
.form-row { display: flex; flex-wrap: wrap; gap: 20px; }
.form-group { flex: 1 1 250px; margin-bottom: 1rem; }
label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: #3c4043; }
input, textarea { width: 100%; padding: 12px; border: 1px solid #dadce0; border-radius: 8px; font-size: 1rem; box-sizing: border-box; }
input:focus, textarea:focus { border-color: var(--at-primary); box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2); outline: none; }
.submit-button { border: none; border-radius: 8px; cursor: pointer; font-weight: 700; transition: background-color 0.3s; width: 100%; padding: 15px; font-size: 18px; margin-top: 10px; background-color: var(--at-primary); color: white; }
.submit-button:hover { background-color: #185abc; }
.success-message { padding: 15px; background-color: #e6f4ea; color: #1e8e3e; border-radius: 8px; font-weight:bold; text-align: center; }


/* === "VARFÖR VÄLJA OSS" === */
.why-us-section {
    padding: 60px 20px;
    background-color: var(--white-bg);
}
.section-title {
    text-align:center;
    font-size: 2.5em;
    color: var(--at-dark);
    margin-bottom: 2.5rem;
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.why-us-item {
    text-align: center;
}
.why-us-item .icon {
    font-size: 2.5em;
    color: var(--at-primary);
}
.why-us-item h3 {
    font-size: 1.3em;
    margin-top: 0.5rem;
    color: var(--at-dark);
}
.why-us-item p {
    font-size: 1em;
}

/* === FOOTER === */
.at-footer {
    background-color: var(--at-dark);
    color: #9aa0a6;
    padding: 20px;
    text-align: center;
}

/* === MOBILANPASSNING === */
@media (max-width: 768px) {
    .at-hero h1 { font-size: 2.2em; }
    .at-hero p { font-size: 1.1em; }
    .header-content { flex-direction: column; gap: 15px; }
}
