/* World's Travel Hub - Global Stylesheet */

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

:root {
    --primary: #1a4d8c;
    --primary-dark: #0d2f5a;
    --primary-light: #2e6cb8;
    --accent: #ffb703;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-light: #f3f7fc;
    --white: #ffffff;
    --border: #d6e2f0;
    --shadow: 0 4px 20px rgba(26, 77, 140, 0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
}
.top-bar a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-left: 10px;
}

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    flex-wrap: wrap;
}
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}
.logo span { color: var(--accent); }

nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover { color: var(--primary); }

.call-btn {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    transition: background 0.3s;
    white-space: nowrap;
}
.call-btn:hover { background: var(--primary-dark); }

.hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}
.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.hero p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 30px;
    opacity: 0.95;
}
.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 5px;
}
.hero-cta.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.notice-strip {
    background: #fff3cd;
    color: #664d03;
    border-top: 1px solid #ffe69c;
    border-bottom: 1px solid #ffe69c;
    padding: 12px 20px;
    text-align: center;
    font-size: 14px;
}

.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}
.service-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary);
}
.service-card h3 {
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-size: 20px;
}
.service-card p {
    color: var(--text-light);
}

.features { background: var(--bg-light); padding: 60px 20px; }
.features-container { max-width: 1200px; margin: 0 auto; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}
.feature { text-align: center; padding: 20px; }
.feature-num {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent);
    display: block;
}
.feature h4 { margin: 10px 0; color: var(--primary-dark); }

.why-call {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.why-call .card {
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    padding: 25px;
    border-radius: 8px;
}
.why-call h4 { color: var(--primary-dark); margin-bottom: 8px; }
.why-call p { color: var(--text-light); font-size: 15px; }

.alt-contact {
    background: var(--bg-light);
    padding: 50px 20px;
    text-align: center;
}
.alt-contact h2 { color: var(--primary); margin-bottom: 15px; }
.alt-contact p { color: var(--text-light); max-width: 700px; margin: 0 auto 15px; }
.alt-contact .alt-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.alt-contact a.alt-btn {
    background: var(--white);
    color: var(--primary);
    padding: 12px 25px;
    border: 2px solid var(--primary);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
}
.alt-contact a.alt-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.content-wrap { max-width: 900px; margin: 0 auto; padding: 50px 20px; }
.content-wrap h1 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 36px;
}
.content-wrap h2 {
    color: var(--primary-dark);
    margin: 30px 0 15px;
    font-size: 24px;
}
.content-wrap p, .content-wrap li {
    color: var(--text-light);
    margin-bottom: 12px;
}
.content-wrap ul, .content-wrap ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.info-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 6px;
    margin: 25px 0;
}
.info-box strong { color: var(--primary-dark); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h3 { color: var(--primary); margin-bottom: 12px; }
.contact-info p { color: var(--text-light); margin-bottom: 10px; }
.contact-info a { color: var(--primary); text-decoration: none; }

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.contact-form label {
    display: block;
    margin-top: 12px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
}
.contact-form textarea { min-height: 110px; resize: vertical; }
.contact-form button {
    margin-top: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
}
.contact-form button:hover { background: var(--primary-dark); }
.form-note { font-size: 12px; color: var(--text-light); margin-top: 12px; }

.call-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
}
.call-banner h2 { font-size: 28px; margin-bottom: 10px; }
.call-banner p { margin-bottom: 25px; opacity: 0.95; }
.call-banner a.big-phone {
    display: inline-block;
    background: var(--accent);
    color: var(--text-dark);
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
}

footer {
    background: #08203d;
    color: #ccc;
    padding: 50px 20px 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col h4 { color: var(--white); margin-bottom: 15px; font-size: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-col a:hover { color: var(--accent); }
.footer-col p { color: #bbb; font-size: 14px; line-height: 1.7; }

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 0;
    border-top: 1px solid #18375f;
    font-size: 13px;
    line-height: 1.7;
    color: #aaa;
    text-align: center;
}
.footer-disclaimer strong { color: #fff; }

.copyright {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #18375f;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 28px; }
    .hero p { font-size: 16px; }
    nav ul { gap: 10px; justify-content: center; width: 100%; margin-top: 10px; }
    .nav-container { flex-direction: column; }
    .section-title { font-size: 24px; }
    .content-wrap h1 { font-size: 26px; }
}
