:root {
    --color-primary: #0a192f;
    /* Deep Navy */
    --color-accent: #c5a059;
    /* Gold */
    --color-text: #0a192f; /* Changed from #333333 to match logo/primary */
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
a.logo {
    font-family: var(--font-heading);
}

/* Header */
#main-header {
    background: var(--color-bg);
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: 50%; /* Optional: if they want it circular, but standard is usually square/rect. The coin looks round so let's make it round. */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-accent);
}

/* Hero */
/* Hero */
#hero {
    background: url('hero-bg.png'); /* Removed heavy gradient overlay */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -85px;
}

#hero .container {
    max-width: 800px;
    background: rgba(10, 25, 47, 0.4); /* Semi-transparent box */
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px); /* Glassmorphism effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

#hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: rgba(197, 160, 89, 0.6); /* Transparent Gold */
    color: white;
    padding: 6px 16px; /* Slimmer and smaller */
    font-size: 0.9rem; /* Smaller text */
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    border: 1px solid rgba(197, 160, 89, 0.4); /* Subtle border */
}

.btn-primary:hover {
    background: rgba(197, 160, 89, 0.9); /* More opaque on hover */
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 15px;
    transition: background 0.3s, color 0.3s;
}

.btn-secondary:hover {
    background: white;
    color: var(--color-primary);
}

/* Sections General */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.divider {
    height: 3px;
    width: 60px;
    background: var(--color-accent);
    margin-bottom: 30px;
}

.divider.center {
    margin: 0 auto 30px auto;
}

.section-lead {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    text-align: left;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-text .divider {
    margin: 0 auto 30px auto;
}

/* Services Section */
#services {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    border-top: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--color-accent);
}

.service-icon {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: var(--color-primary);
    color: white;
    padding: 40px;
    border-radius: 8px;
}

/* Footer */
footer {
    background: var(--color-primary);
    color: white;
    padding: 60px 0 30px;
    text-align: left; /* Changed from center for legal text readability */
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-legal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    font-size: 0.85rem;
    color: #cbd5e1;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
}

.footer-legal strong {
    color: white;
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-legal p {
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.info-item {
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.service-list li::before {
    content: "•";
    color: var(--color-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.info-item p {
    opacity: 0.9;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.contact-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    #main-header .container {
        flex-direction: column;
        gap: 15px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav-links {
        gap: 20px;
        font-size: 0.9rem;
    }

    #hero h1 {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .btn-secondary {
        margin-left: 0;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.page-header {
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 60px; /* Offset fixed header */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}

.value-card {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 200px;
    height: 200px;
    background: #e0e0e0;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member .role {
    color: var(--color-accent);
    font-weight: bold;
    margin-bottom: 5px;
}

.team-member .qualifications {
    font-size: 0.9rem;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

.accreditations-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.accreditation-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.accreditation-item i {
    color: var(--color-accent);
}

