/* --- General Setup & Variables --- */
:root {
    --primary-color: #0A2240; /* Deep Navy Blue */
    --secondary-color: #FFFFFF;
    --accent-color: #D4AF37;   /* Gold Accent */
    --text-color: #333;
    --light-gray: #f4f4f4;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Lora', serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    background-color: var(--secondary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Header & Navigation --- */
.main-header {
    background-color: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

/* --- Buttons --- */
.btn {
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #c5a02e;
}

/* --- Hero Section --- */
.hero-section {
    background: url('../images/hero-background.jpg') no-repeat center center/cover;
    color: var(--secondary-color);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero-section::after { /* Overlay for readability */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 34, 64, 0.7); /* Dark Navy Blue Overlay */
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-cta input[type="search"] {
    width: 350px;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

/* --- Sections General Styling --- */
section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}


/* --- Featured Countries Grid --- */
.featured-section {
    background-color: var(--light-gray);
}
.featured-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.feature-item {
    background: var(--secondary-color);
    padding: 20px 40px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* --- Why Choose Us Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* --- Contact Form Section --- */
.contact-form-section {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.contact-form-section h2 {
    color: var(--secondary-color);
    text-align: center;
    font-size: 2.5rem;
}
.contact-form-section p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.quote-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row input, .form-row select {
    flex: 1;
}

.quote-form input, .quote-form select, .quote-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 1rem;
    box-sizing: border-box; /* Important for consistent sizing */
}

.quote-form button {
    align-self: center;
    width: 300px;
    font-size: 1.1rem;
}

#form-status {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
}

/* --- Footer --- */
.main-footer {
    background-color: #333;
    color: var(--secondary-color);
    text-align: center;
    padding: 20px 0;
}

.main-footer a {
    color: var(--accent-color);
    text-decoration: none;
}