:root {
    --bg-dark: #0f172a;
    --bg-card: rgba(255, 255, 255, 0.05);
    --gold: #c5a059;
    --gold-gradient: linear-gradient(to bottom, #d4af37, #8c6d31);
    --blue-gradient: linear-gradient(to bottom, #2563eb, #1e40af);
    --text-light: #f8fafc;
    --text-gray: #cbd5e1;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Times New Roman', serif; }

body { background-color: var(--bg-dark); color: var(--text-light); overflow-x: hidden; }

/* --- Hero Wrapper (Background spans first two sections) --- */
.hero-outer-wrapper {
    background: linear-gradient(rgb(15 23 42 / 22%), rgb(15 23 42 / 38%)), url("../images/1.jpg");
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* --- Header --- */
header { padding: 20px 0; border-bottom: 2px solid rgb(162 130 51); }
.top-logo { font-size: 1.2rem; font-weight: normal; }

/* --- Hero Content --- */
.hero-section {
    display: flex;
    align-items: center;
    padding: 80px 0;
    gap: 40px;
}
.hero-text { flex: 1.2; }
.hero-text h1 { font-size: 2.8rem; margin-bottom: 5px; font-weight: 500; }

/* The decorative line under the title */
.title-divider {
    width: 150px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 15px;
    position: relative;
}
.title-divider::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -2px;
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.hero-text p { font-style: italic; color: var(--text-gray); margin-bottom: 40px; font-size: 1.2rem; }

/* Larger Buttons */
.btn-group { display: flex; gap: 20px; }
.btn {
    padding: 18px 45px; /* Increased size */
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.btn-gold { background: var(--gold-gradient); }
.btn-blue { background: var(--blue-gradient); }
.btn:hover { transform: scale(1.05); filter: brightness(1.2); }

/* Container for the entire bar */
.trust-bar-horizontal {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0.3); /* Matches your hero style */
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    gap: 20px;
}

/* Individual row item */
.trust-item-row {
    display: flex;
    flex-direction: row; /* Forces horizontal alignment */
    align-items: center; /* Vertically centers icon with text */
    gap: 12px;           /* Space between icon and text */
}

/* Icon specific styling */
.trust-item-row i {
    color: #c5a059;      /* Using your gold variable */
    font-size: 1.5rem;
    flex-shrink: 0;      /* Prevents icon from squishing */
}

/* Text specific styling */
.trust-item-row span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;      /* Using your text-gray variable */
    line-height: 1.2;
}

/* Mobile Adjustment */
@media (max-width: 768px) {
    .trust-bar-horizontal {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2x2 grid on mobile */
        padding: 20px;
    }
}

/* --- Section Dividers --- */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0 40px;
    color: var(--gold);
    font-size: 1.5rem;
}
.section-label::before, .section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 0 30px;
}

/* --- Cards & Content --- */
.about-box {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}
.about-text { flex: 1; font-size: 1.1rem; line-height: 1.8; color: var(--text-gray); }
.about-img { flex: 1; border-radius: 8px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.about-img img { width: 100%; display: block; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.service-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}
.service-card:hover { background: rgba(255,255,255,0.07); }
.service-card i { font-size: 2.5rem; color: var(--gold); margin-bottom: 20px; }


/* --- Our Reports Section --- */
.reports-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}
.report-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: 0.3s;
}
.report-card:hover { border-color: var(--gold); transform: scale(1.02); }
.report-thumb { width: 140px; border-radius: 2px; box-shadow: 5px 5px 15px rgba(0,0,0,0.5); }
.report-info h3 { font-size: 1.4rem; margin-bottom: 10px; font-weight: normal; color: white; }
.report-info .card-line { width: 60px; height: 1px; background: var(--gold); margin-bottom: 15px; }
.report-info ul { list-style: none; }
.report-info li { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 8px; display: flex; align-items: center; }


.verify-section {
    text-align: center;
    padding-bottom: 100px;
    max-width: 700px;
    margin: 0 auto;
}
.verify-section p { margin-bottom: 30px; color: var(--text-gray); font-size: 1.1rem; }

.verify-input-group {
    display: flex;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2), 0 10px 30px rgba(0,0,0,0.5);
}
.verify-input-group input {
    flex: 1;
    padding: 20px 25px;
    border: 2px solid;
    outline: none;
    font-size: 1.1rem;
    color: #c5a056;
    background: #0f172a;
}
.verify-input-group button {
    background: #bc9935;
    color: #0f172a;
    border: none;
    padding: 0 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}
.verify-input-group button:hover { filter: brightness(1.2); }


/* Footer Base Styles */
.custom-footer {
    background-color: #161d26; /* Dark navy/charcoal */
    background-image: radial-gradient(circle at center, #1c2530 0%, #161d26 100%);
    color: #ffffff;
    padding: 60px 20px 40px 20px;
    font-family: 'Georgia', serif; /* Elegant serif font */
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-heading {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #ffffff;
}

/* Horizontal Lines */
.gold-line {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, #d4af37, transparent);
    margin-bottom: 30px;
}

.dark-line {
    border: 0;
    height: 1px;
    background: #2a3441;
    margin: 30px 0 20px 0;
}

/* Main Layout: Flex for Mobile-First */
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-left, .footer-right {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.contact-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-icon {
    margin-right: 15px;
    font-size: 20px;
}

.footer-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
}

/* Bottom Section */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bbbbbb;
}

.diamond-icon {
    margin-right: 5px;
}

/* Desktop View (768px and up) */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        align-items: center;
    }

    .vertical-divider {
        width: 1px;
        height: 80px;
        background-color: #2a3441;
        margin: 0 40px;
    }

    .footer-right {
        max-width: 400px;
    }
}

/* --- Responsive Design --- */
@media (max-width: 850px) {
    .hero-section, .about-box { flex-direction: column; text-align: center; }
    .btn-group { justify-content: center; flex-direction: column; }
    .hero-text h1 { font-size: 2rem; }
    .title-divider { margin: 0 auto 15px; }
    .reports-grid { grid-template-columns: 1fr; }
}

/* Container Grid */
.reports-grid {
    display: grid;
    grid-template-columns: 1fr; /* Stack cards on mobile */
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Card Base Styles (Mobile First) */
.report-card {
    display: flex;
    flex-direction: column; /* Image on top, text on bottom */
    background-color: #0f172a;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.report-image-wrapper {
    width: 100%;
    height: 200px; /* Fixed height for mobile image */
}

.report-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-info {
    padding: 1.5rem;
}

.report-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.card-line {
    width: 3rem;
    height: 4px;
    background-color: #d4af37; /* Gold color */
    margin-bottom: 1rem;
}

.report-list {
    list-style: none;
    padding: 0;
    color: #4a5568;
}

.report-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.icon {
    color: #c5a059;
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Desktop & Tablet View (768px and up) */
@media (min-width: 768px) {
    .reports-grid {
        grid-template-columns: 1fr 1fr; /* Side-by-side cards */
    }

    .report-card {
        flex-direction: row; /* Image left, text right */
    }

    .report-image-wrapper {
        width: 50%; /* Image takes 1/3 of the card */
        height: auto;  /* Let height match text content */
    }

    .report-info {
        width: 50%;
    }
}
