:root {
    --navy: #301d44;
    --navy-dark: #1c1128;
    --navy-light: #5a3ac7;
    --gold: #fba311;
    --gold-dark: #d98a0a;
    --gray-50: #f7f8fa;
    --gray-100: #eef1f5;
    --gray-300: #cbd3dd;
    --gray-500: #6b7787;
    --gray-700: #3a4453;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 8px 24px rgba(48, 29, 68, 0.12);
    --shadow-lg: 0 16px 40px rgba(48, 29, 68, 0.2);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    color: var(--navy);
    line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top bar */
.top-bar {
    background: var(--navy-dark);
    color: var(--gray-300);
    font-size: 13px;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 24px;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-badge {
    color: var(--gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Header */
.site-header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    gap: 24px;
}
.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.logo span { color: var(--gold); }
.main-nav {
    display: flex;
    gap: 18px;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}
.main-nav a {
    font-weight: 500;
    font-size: 14px;
    color: var(--gray-700);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: 0.2s;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
}
.header-cta { white-space: nowrap; padding: 11px 20px; font-size: 14px; }
.nav-cta-mobile { display: none; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--navy);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: 0.25s;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy-dark);
}
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy {
    background: var(--navy);
    color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); }
.btn-block { width: 100%; }

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, var(--navy-light));
    color: var(--white);
    padding: 90px 0 110px;
    position: relative;
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 163, 17, 0.15);
    border: 1px solid rgba(251, 163, 17, 0.4);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}
.hero h1 {
    color: var(--white);
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
}
.hero h1 span { color: var(--gold); }
.hero p { font-size: 17px; color: var(--gray-300); margin-bottom: 28px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 28px; color: var(--gold); font-family: 'Poppins', sans-serif; }
.hero-stat span { font-size: 13px; color: var(--gray-300); }

.hero-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* Forms */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    color: var(--gray-700);
    background: var(--white);
    transition: 0.2s;
}
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(251, 163, 17, 0.15);
}
textarea { resize: vertical; min-height: 100px; }

/* Sections */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-tag {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-head h2 { font-size: 32px; margin-bottom: 12px; }
.section-head p { color: var(--gray-500); font-size: 16px; }
.bg-gray { background: var(--gray-50); }

/* Services / cards grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 26px;
    box-shadow: var(--shadow);
    transition: 0.25s;
    border: 1px solid var(--gray-100);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--gray-500); font-size: 14.5px; }

/* Service cards with photo */
.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: 0.25s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { height: 170px; object-fit: cover; width: 100%; }
.service-card-body { padding: 26px; }
.service-card-body h3 { font-size: 19px; margin-bottom: 10px; }
.service-card-body p { color: var(--gray-500); font-size: 14.5px; margin-bottom: 14px; }
.service-card-body a { color: var(--gold-dark); font-weight: 600; font-size: 14px; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { text-align: center; position: relative; }
.step-num {
    width: 52px; height: 52px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin: 0 auto 16px;
}
.step h4 { font-size: 16px; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--gray-500); }

/* Trust badge */
.trust-band {
    background: var(--navy);
    color: var(--white);
    padding: 44px 0;
}
.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
    text-align: center;
}
.trust-item strong { display: block; font-size: 30px; color: var(--gold); font-family: 'Poppins', sans-serif; }
.trust-item span { font-size: 13px; color: var(--gray-300); }

/* About */
.about-imgs { position: relative; }
.about-img-main { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 420px; object-fit: cover; }
.about-img-small {
    position: absolute;
    bottom: -30px; right: -30px;
    width: 45%;
    border: 6px solid var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.about-content ul { margin: 20px 0; }
.about-content ul li { margin-bottom: 14px; display: flex; gap: 10px; }
.about-content ul li i { color: var(--gold-dark); margin-top: 4px; }

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.testimonial-stars { color: var(--gold); margin-bottom: 12px; font-size: 14px; }
.testimonial-card p.quote { font-style: italic; color: var(--gray-700); flex: 1; margin-bottom: 18px; }
.testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}
.testimonial-name { font-weight: 600; color: var(--navy); font-size: 14.5px; }
.testimonial-loc { font-size: 12.5px; color: var(--gray-500); }
.testimonial-delay {
    display: inline-block;
    margin-top: 8px;
    background: rgba(251, 163, 17, 0.12);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Blog */
.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    transition: 0.25s;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card img { height: 190px; object-fit: cover; width: 100%; }
.blog-card-body { padding: 22px; }
.blog-cat {
    display: inline-block;
    background: rgba(48, 29, 68, 0.08);
    color: var(--navy);
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.blog-card h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card p { color: var(--gray-500); font-size: 14px; margin-bottom: 14px; }
.blog-meta { font-size: 12.5px; color: var(--gray-500); display: flex; gap: 14px; }

.article-hero {
    background: var(--navy-dark);
    color: var(--white);
    padding: 60px 0 40px;
}
.article-hero .blog-cat { background: rgba(251,163,17,0.15); color: var(--gold); }
.article-hero h1 { color: var(--white); font-size: 34px; margin: 16px 0; }
.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 50px 24px;
    font-size: 17px;
    color: var(--gray-700);
}
.article-body img { border-radius: var(--radius); margin: 24px 0; }
.article-body p { margin-bottom: 18px; }
.article-body h2, .article-body h3 { margin: 30px 0 14px; }

.comments-section { max-width: 760px; margin: 0 auto; padding: 0 24px 60px; }
.comment-item {
    background: var(--gray-50);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 14px;
}
.comment-head { display: flex; justify-content: space-between; margin-bottom: 6px; }
.comment-name { font-weight: 600; color: var(--navy); font-size: 14.5px; }
.comment-date { font-size: 12.5px; color: var(--gray-500); }
.comment-text { font-size: 14.5px; color: var(--gray-700); }

.sidebar-box {
    background: var(--gray-50);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-box h4 { font-size: 16px; margin-bottom: 14px; }
.sidebar-box ul li { margin-bottom: 10px; }
.sidebar-box ul li a { font-size: 14px; color: var(--gray-700); }
.sidebar-box ul li a:hover { color: var(--gold-dark); }

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-radius: var(--radius);
    margin: 0 24px;
}
.cta-band h2 { color: var(--white); font-size: 28px; margin-bottom: 12px; }
.cta-band p { color: var(--gray-300); margin-bottom: 24px; }

/* Star rating input */
.star-select { display: flex; gap: 6px; font-size: 24px; color: var(--gray-300); cursor: pointer; }
.star-select i.active { color: var(--gold); }

/* Alerts */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14.5px;
    font-weight: 500;
}
.alert-success { background: #e6f6ec; color: #1a7a3f; border: 1px solid #b7e6c8; }
.alert-error { background: #fdecec; color: #b3261e; border: 1px solid #f5c2bf;}

/* Page hero (interior pages) */
.page-hero {
    background: var(--navy-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 36px; }
.page-hero p { color: var(--gray-300); margin-top: 10px; }

/* Footer */
.site-footer { background: var(--navy-dark); color: var(--gray-300); padding: 60px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { color: var(--white); margin-bottom: 14px; }
.footer-col p { font-size: 14px; color: var(--gray-300); margin-top: 6px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--gray-300); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { display: flex; align-items: center; gap: 8px; font-size: 13.5px; margin-top: 8px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray-500);
}

/* Admin quick styles */
.admin-body { background: var(--gray-50); font-family: 'Inter', sans-serif; }
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--navy-dark); color: var(--white); padding: 24px 0; flex-shrink: 0; }
.admin-sidebar .logo { color: var(--white); padding: 0 24px 24px; font-size: 20px; }
.admin-sidebar a { display: block; padding: 12px 24px; color: var(--gray-300); font-size: 14.5px; }
.admin-sidebar a:hover, .admin-sidebar a.active { background: rgba(255,255,255,0.08); color: var(--gold); }
.admin-main { flex: 1; padding: 32px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th, .admin-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.admin-table th { background: var(--gray-50); color: var(--navy); font-weight: 700; }
.badge { padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-pending { background: #fff4e0; color: #b3760e; }
.badge-approved { background: #e6f6ec; color: #1a7a3f; }
.badge-rejected { background: #fdecec; color: #b3261e; }
.admin-login { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--navy-dark); }
.admin-login-card { background: var(--white); padding: 40px; border-radius: var(--radius); width: 380px; box-shadow: var(--shadow-lg); }

/* Responsive */
@media (max-width: 1060px) {
    .main-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 12px 24px;
        display: none;
        box-shadow: var(--shadow);
        white-space: normal;
    }
    .main-nav.open { display: flex; }
    .nav-toggle { display: block; }
    .header-cta { display: none; }
    .nav-cta-mobile {
        display: block;
        text-align: center;
        margin-top: 10px;
        padding: 12px;
        background: var(--gold);
        color: var(--navy-dark);
        font-weight: 700;
        border-radius: 8px;
    }
}
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .grid-3, .steps { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-img-small { width: 50%; }
}
@media (max-width: 720px) {
    .hero h1 { font-size: 30px; }
    .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .top-bar-inner { justify-content: center; text-align: center; }
    .admin-wrap { flex-direction: column; }
    .admin-sidebar { width: 100%; display: flex; align-items: center; overflow-x: auto; padding: 10px 0; }
    .admin-sidebar .logo { padding: 0 16px; margin-bottom: 0; white-space: nowrap; }
    .admin-sidebar a { padding: 10px 14px; white-space: nowrap; }
    .admin-main { padding: 20px 16px; }
    .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
    .about-img-small { position: static; width: 100%; margin-top: 16px; border: none; }
}
