/* GLOBAL STYLES */
:root {
    --primary-color: #D32F2F; /* Red */
    --secondary-color: #333;
    --dark-blue: #0d1b2a;
    --light-bg: #f8f9fa;
    --white: #fff;
    --text-color: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    scroll-behavior: smooth;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a { text-decoration: none; }
ul { list-style: none; }
.text-center { text-align: center; }

/* TOP BAR */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}
.top-bar span { margin-right: 20px; }

/* NAVBAR */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 55px;
    margin-right: 15px;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.1;
}
.logo-text small {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--secondary-color);
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover { color: var(--primary-color); }

.btn-consult {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-consult:hover { background: #b71c1c; }

/* HERO SECTION */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://source.unsplash.com/1600x900/?airport,travel,student');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight { color: #ff5252; }

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: bold;
}

.btn-main:hover { background: #b71c1c; }
.btn-secondary:hover { background: var(--white); color: var(--secondary-color); }

/* SECTIONS */
.section { padding: 70px 0; }
.bg-light { background: var(--light-bg); }
.bg-dark-blue { background: var(--dark-blue); color: var(--white); }

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: inherit;
}
.text-white { color: var(--white); }

/* CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border-top: 5px solid var(--primary-color);
}

.card:hover { transform: translateY(-8px); }

.card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card p { margin-bottom: 15px; color: #555; }

.flag-icon { font-size: 3rem; margin-bottom: 15px; display: block; }
.icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 20px; }

/* SERVICE LIST IN CARDS */
.service-list {
    text-align: left;
    margin-top: 15px;
}
.service-list li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}
.service-list li:before {
    content: "✓";
    color: var(--primary-color);
    margin-right: 8px;
    font-weight: bold;
}

/* WHY US GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.feature-item i {
    font-size: 2.5rem;
    color: #4fc3f7; /* Light Blue accent */
    margin-bottom: 15px;
}

.feature-item span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

/* CONTACT */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.phone-large {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* FOOTER */
footer {
    background: #111;
    color: #aaa;
    text-align: center;
    padding: 30px 0;
}
.seo-footer { font-size: 0.85rem; margin-top: 10px; opacity: 0.7; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .nav-links { display: none; }
    .contact-layout { grid-template-columns: 1fr; }
    .top-bar { text-align: center; justify-content: center; }
}