:root {
    --gold: #D4AF37;
    --dark-gold: #aa8c2c;
    --black: #0a0a0a;
    --white: #ffffff;
    --grey-bg: #111;
    --dark-grey: #121212;
    --light-grey: #f4f4f4;
    --border: rgba(212, 175, 55, 0.3);
}

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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.8;
    overflow-x: hidden;
}

/* --- Common Container --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 5%;
}

/* --- Navigation --- */
nav {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--black);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.logo {
    font-size: 1.2rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    z-index: 1001;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active-link {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* --- Mobile Responsive Logic --- */
@media (max-width: 1200px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #111;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }
}

/* --- Hero Sections --- */
/* Home Page Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../images/header.jpeg') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
}

.hero .emergency-btn {
    padding: 15px 40px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero p {
    max-width: 700px;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ccc;
}

/* Repatriation Page Hero */
.repat-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../images/header.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;
}

.repat-hero h1 {
    font-size: 3rem;
    color: var(--gold);
}

/* About Us Page Hero */
.about-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('../images/header.jpeg');
    background-size: cover;
    border-bottom: 2px solid var(--gold);
}

.about-hero h1 {
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Generic Inner Page Header */
.hero-header {
    padding: 140px 10% 80px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)),
                url('../images/header.jpeg');
    background-size: cover;
    background-position: center;
    border-bottom: 2px solid var(--gold);
}

.hero-header h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero-header p {
    font-size: 1.1rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Page Header */
.service-header {
    padding: 120px 10% 60px;
    text-align: center;
     background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
                url('../images/header.jpeg');
                background-size: cover;
    background-position: center;
}

.service-header h1 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* --- Home Page Sections --- */
.emergency-btn {
    background: var(--gold);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: background 0.3s;
}

.emergency-btn:hover {
    background: var(--white);
}

.intro-section {
    padding: 80px 10%;
    background: var(--white);
    color: var(--black);
    text-align: center;
}

.intro-section > p {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--gold);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.pillar-card {
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.pillar-card h3 {
    margin: 15px 0;
    color: var(--dark-gold);
}

.services-section {
    padding: 80px 10%;
    background: #111;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 40px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
}

.service-card:hover {
    border-color: var(--gold);
}

.service-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.service-card a {
    display: inline-block;
    margin-top: 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

.service-card.service-card-disabled {
    opacity: 0.6;
}

.service-card.service-card-disabled a {
    cursor: not-allowed;
    color: #888;
    border-color: #444;
}

.service-card.service-card-disabled a:hover { color: #888; }

/* --- About Us Page --- */
.content-wrap {
    max-width: 900px;
    margin: -50px auto 100px;
    background: #1a1a1a;
    padding: 60px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
}

.history-item {
    margin-bottom: 50px;
    padding-left: 30px;
    border-left: 2px solid var(--gold);
    position: relative;
}

.history-item::before {
    content: '';
    position: absolute;
    left: -9px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
}

.year {
    font-weight: 600;
    color: var(--gold);
    font-size: 1.2rem;
    display: block;
    margin-bottom: 5px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.info-card {
    background: #222;
    padding: 30px;
    border-top: 3px solid var(--gold);
    transition: transform 0.3s ease;
}

.info-card h4 {
    color: var(--gold);
}

.info-card:hover {
    transform: translateY(-10px);
    background: #2a2a2a;
}

.media-marquee {
    margin-top: 80px;
    text-align: center;
    padding: 40px;
    background: #000;
    border: 1px solid #333;
}

.media-marquee > p:first-of-type {
    margin-bottom: 20px;
    color: #555;
}

.media-marquee > p:last-of-type {
    margin-top: 30px;
    font-size: 0.9rem;
    font-style: italic;
}

.media-tag {
    display: inline-block;
    margin: 10px 20px;
    color: #888;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.media-tag:hover {
    color: var(--gold);
}

.highlight {
    color: var(--gold);
    font-weight: 600;
}

.crisis-section {
    margin-top: 60px;
    text-align: center;
}

.crisis-section h3 {
    color: var(--gold);
}

/* --- Services Page --- */
.main-mission {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #bbb;
    border-left: 3px solid var(--gold);
    padding-left: 25px;
    text-align: left;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 10%;
}

.service-box {
    background: var(--dark-grey);
    padding: 40px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    background: #181818;
}

.service-box h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    color: #999;
}

.feature-list li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '•';
    color: var(--gold);
    position: absolute;
    left: 0;
}

.equipment-highlight {
    background: var(--white);
    color: var(--black);
    margin: 40px 10%;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.equipment-highlight h2 {
    font-size: 2rem;
}

.equipment-highlight > div > p {
    margin: 20px 0;
}

.equip-specs {
    background: var(--light-grey);
    padding: 20px;
    border-left: 5px solid var(--gold);
}

.data-section {
    padding: 60px 10%;
}

.data-section > h2 {
    color: var(--gold);
}

.data-section > p {
    font-size: 0.9rem;
    color: #888;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: #111;
}

th, td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid #222;
}

th { color: var(--gold); }

.note-box {
    background: rgba(212, 175, 55, 0.1);
    padding: 20px;
    font-size: 0.85rem;
    margin-top: 20px;
    border: 1px dashed var(--gold);
}

/* --- Repatriation Page --- */
.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 60px;
    color: #ccc;
    font-style: italic;
}

.service-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.repat-card {
    background: var(--grey-bg);
    padding: 40px;
    border-top: 4px solid var(--gold);
    transition: 0.3s;
}

.repat-card:hover {
    background: #1a1a1a;
    transform: translateY(-5px);
}

.repat-card > p:last-of-type {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #888;
}

.repat-card h2 {
    margin-bottom: 20px;
    color: var(--gold);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.notice-box {
    margin-top: 60px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--gold);
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.notice-box strong {
    color: var(--gold);
    display: block;
    margin-bottom: 5px;
}

.notice-box span {
    color: var(--white);
}

.notice-box i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

/* --- What To Do Page --- */
.what-to-do-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 5%;
}

.step-card {
    background: var(--grey-bg);
    padding: 40px;
    border-left: 4px solid var(--gold);
    margin-bottom: 30px;
    transition: 0.3s;
}

.step-card:hover {
    background: #1a1a1a;
    transform: translateX(5px);
}

.step-card h2 {
    color: var(--gold);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    background: var(--gold);
    color: var(--black);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.step-content ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.step-content ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.step-content ul li::before {
    content: '✓';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    background: #000;
    padding: 25px;
    border: 1px solid #333;
}

.data-grid div {
    font-size: 0.9rem;
    color: #ddd;
}

.data-grid div strong {
    display: block;
    color: var(--gold);
    margin-bottom: 5px;
}

.contact-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--gold);
}

.contact-cta h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-gold:hover {
    background: var(--white);
}

/* --- Contact Page --- */
.contact-container {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info {
    background: var(--grey-bg);
    padding: 40px;
    border-top: 4px solid var(--gold);
}

.contact-info h3 {
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #ddd;
}

.info-item strong {
    display: block;
    color: var(--white);
    margin-bottom: 5px;
}

.info-item a {
    color: #ddd;
    text-decoration: none;
}

.info-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-form {
    background: #1a1a1a;
    padding: 40px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: #000;
    border: 1px solid #333;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.submit-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
    background: var(--white);
}

/* --- Team Page --- */
.team-placeholder {
    text-align: center;
}

/* --- Footer --- */
footer {
    padding: 60px 10% 20px;
    background: var(--black);
    border-top: 1px solid #222;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-content h5 {
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.85rem;
    transition: 0.3s;
}

.footer-content ul li a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #444;
    border-top: 1px solid #222;
    padding-top: 20px;
}

/* --- WhatsApp Floating Button --- */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #1DA851;
    transform: scale(1.05);
    color: white;
}

/* --- Call Floating Button --- */
.call-button {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

.call-button:hover {
    background-color: var(--white);
    transform: scale(1.05);
}

/* --- General Mobile Responsive --- */
@media (max-width: 768px) {
    .hero h1, .about-hero h1 { font-size: 2.2rem; }
    .hero-header h1, .service-header h1, .repat-hero h1 { font-size: 2rem; }
    .container { padding: 40px 5%; }
    .service-split { grid-template-columns: 1fr; }
    .info-grid { grid-template-columns: 1fr; }
    .content-wrap { margin: 20px; padding: 30px; }
    .equipment-highlight { grid-template-columns: 1fr; padding: 30px; }
    .contact-container { grid-template-columns: 1fr; gap: 30px; }
    .step-card { padding: 25px; }
}