/* -------------------- */
/* Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
}

body {
    background-color: #081229;
    color: #f8f9fa;
    padding-top: 90px; /* header height */
}

/* -------------------- */
/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 60px;
    background: #081229;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 1000;
}

.logo-img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    position: relative;
    margin-left: 30px;
}

nav ul li a {
    color: #f8f9fa;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

/* Dropdown */
nav ul li ul.dropdown {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: #0f1a3b;
    list-style: none;
    padding: 10px 0;
    border-radius: 8px;
    min-width: 220px;
}

nav ul li ul.dropdown li a {
    display: block;
    padding: 10px 20px;
}

nav ul li ul.dropdown li a:hover {
    background: #FFD700;
    color: #081229;
}

nav ul li:hover ul.dropdown {
    display: block;
}

/* -------------------- */
/* Hero Section */
.hero {
    height: calc(100vh - 90px); /* full viewport minus header */
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-text .btn {
    display: inline-block;
}

/* Professional CTA Button */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #e6b800);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #FFC700, #e6b800);
}

/* -------------------- */
/* Section Headings */
.section-heading {
    font-size: 30px;
    padding: 20px 0;
    margin: 0 0 40px 0;
    text-align: center;
    color:  #ffffff;
    background: linear-gradient(135deg, #caa600, #FFD700, #e6b800);
    width: 100%;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* -------------------- */
/* Compliance Content Container */
.compliance-container {
    max-width: 1000px;
    margin: 40px auto 80px auto;
    padding: 0 30px;
    line-height: 1.8;
    color: #cbd5e1;
    font-size: 16px;
}

.compliance-container h3 {
    color: #FFD700;
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 18px;
}

.compliance-container p {
    margin-bottom: 15px;
}

.compliance-container ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.compliance-container ol li {
    margin-bottom: 12px;
}

/* -------------------- */
/* Accreditation Section (white background, no box) */
.accreditation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    justify-items: center;
    align-items: center;
    background: #ffffff; /* white background for visibility */
}

.accreditation-card img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accreditation-card img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* -------------------- */
/* Footer - same as Home page */
footer {
    background: #081229;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.contact-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal columns */
    gap: 40px;                     /* space between form and map */
    max-width: 1400px;             /* section width */
    margin: 0 auto;                /* center horizontally */
    padding: 60px 30px 120px;      /* top 60px, bottom 120px for space from footer */
    align-items: center;            /* vertically center form & map */
}

/* -------------------- */
/* -------------------- */
/* Contact Section - same as Home page */
/* -------------------- */
/* Contact Section - same as Home page */
.contact-map-section {
    display: grid;
    grid-template-columns: 1fr 1fr; /* two equal columns */
    gap: 40px;                     /* space between form and map */
    max-width: 1200px;             /* Home page width */
    margin: 0 auto;                /* center horizontally */
    padding: 60px 30px 80px;       /* spacing from top and bottom like Home */
    align-items: stretch;          /* stretch both containers to same height */
}

/* Form Container */
.contact-form-container {
    background: #0f1a3b;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    height: 100%; /* stretch to match map height */
    justify-content: flex-start;
}

/* Map Container */
.map-container {
    border-radius: 14px;
    overflow: hidden;
    height: 100%; /* stretch to match form container height */
}

/* Make iframe fill map container */
.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Form Inputs */
/* Contact Form Inputs - add space between fields */
.contact-form-container input,
.contact-form-container textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px; /* increased space between fields */
    border-radius: 6px;
    border: none;
}
/* Contact Info Text Spacing */
.contact-form-container p {
    margin-bottom: 15px; /* space between each line (Phone, Email, Website, Address) */
    line-height: 1.6;
    font-size: 16px;
    color: #cbd5e1;
}

/* Send Button */
.contact-form-container button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(135deg, #FFD700, #e6b800);
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-form-container button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* -------------------- */
/* Responsive */
@media (max-width: 1024px) {
    .compliance-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 34px;
    }

    .compliance-container {
        max-width: 90%;
        font-size: 15px;
    }

    .accreditation-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    header {
        padding: 15px 25px;
    }
}