:root {
    --primary: #D4AF37;
    /* Gold */
    --secondary: #0f172a;
    /* Dark Blue */
    --accent: #3b82f6;
    /* Bright Blue */
    --bg-white: #ffffff;
    --bg-light: #ffffff;
    /* Changed to white */
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --radius: 12px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: 0.3s;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--primary);
}

.bg-light {
    background-color: var(--bg-white);
    /* Enforced white */
}

.bg-dark {
    background-color: var(--secondary);
    color: white;
}

.text-white {
    color: white;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #bfa030;
    transform: translateY(-2px);
    color: white !important;
}

.btn-primary.large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary.full-width {
    width: 100%;
    border: none;
    cursor: pointer;
}

/* Header */
header {
    background-color: #ffffff;
    padding-bottom: 0px;
    /* SPACE REMOVED */
    /* Space above the lines */
    border-bottom: 4px solid var(--primary);
    /* Yellow line */
    /* First shadow creates a 2px white gap, second shadow is the blue line */
    box-shadow: 0 2px 0 var(--bg-white), 0 6px 0 #005596;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0 0 0;
    /* Removed bottom padding */
}

.logo-img {
    height: 160px;
    /* Enlarge X and Y dimensions */
    width: auto;
    object-fit: contain;
    display: block;
    /* Removes inline spacing */
}

.contact-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-mini i {
    color: var(--primary);
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
}

/* Hero */
.hero {
    padding: 6rem 0;
    background: #ffffff;
    /* Removed gradient */
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Sections */
.section {
    padding: 6rem 0;
    /* Increased visual spacing */
    scroll-margin-top: 250px;
    /* Increased offset for comfortable navigation */
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Cards & Grids */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    /* Removed box-shadow */
    border: 1px solid #f0f0f0;
    /* Added subtle border */
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    /* Keep hover effect */
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Additional Offerings */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.feature-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    /* Changed to white */
    border: 1px solid #f0f0f0;
    border-radius: var(--radius);
    padding: 1rem;
    gap: 1.5rem;
}

.feature-box img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius);
    object-fit: cover;
}

.feature-text h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

/* Contact Form */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.contact-logo {
    max-width: 220px;
    height: auto;
    background: white;
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.contact-details {
    margin-top: 0;
    font-size: 1.1rem;
}

.contact-details li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    /* Fixed typo */
    gap: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    color: var(--text-dark);
}

.form-title {
    margin-bottom: 1.5rem;
    color: var(--primary);
    text-align: center;
}

.map-container {
    /* Removed grid-column span to fit in left column */
    width: 100%;
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    height: 250px;
    /* Square-ish small size */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
    /* Replaced ring */
}

/* Footer */
footer {
    padding: 2rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px solid #e2e8f0;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}