/* ============================================================
   GLOBAL
============================================================ */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
}

.section {
    padding: 90px 10%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section.light {
    background: #f7f7f7;
}

.section.dark {
    background: #1a1a1a;
    color: #fff;
}

.section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* ============================================================
   HEADER (STATIC)
============================================================ */
header {
    position: fixed;          /* stays visible */
    top: 0;
    left: 0;
    width: 100%;              /* ← REQUIRED TO PREVENT DISAPPEARING */
    z-index: 9999;

    background: #fff;
    color: #000;
    padding: 10px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d9a464;
    box-sizing: border-box;
    height: 80px;
}

.logo-img {
    height: 100%;
    max-height: 55px; /* resize logo only */
}

.desktop-nav a {
    margin-left: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    color: #000;
}

.desktop-nav a:hover {
    color: #d9a464;
}

/* ============================================================
   HERO (ROTATING IMAGES)
============================================================ */
.hero {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: background-image 1.2s ease-in-out;
    margin-top: 95px; /* accounts for fixed header */
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.25);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    top: 45%;
    transform: translateY(-45%);
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin: 0;
}

.hero-content p {
    font-size: 22px;
    margin-top: 10px;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    padding: 12px 26px;
    border-radius: 6px;
    font-size: 18px;
    margin: 10px;
    text-decoration: none;
    display: inline-block;
}

.btn.gold {
    background: #d9a464;
    color: #000;
}

.btn.outline {
    border: 2px solid #d9a464;
    color: #fff;
}

/* ============================================================
   FLOATING CONTACT BUTTON
============================================================ */
.floating-contact-btn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #d9a464;
    color: #000;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    z-index: 99999;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-text {
    max-width: 900px;
    margin: 0 auto 50px auto;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.why-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    border-left: 6px solid #d9a464;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}

.why-box h3 {
    margin-top: 0;
    font-size: 24px;
}

.why-box p {
    font-size: 18px;
    line-height: 1.6;
}

/* ============================================================
   EXTRA SECTION
============================================================ */
.why-extra-box {
    background: #fff;
    padding: 45px 55px;
    border-radius: 12px;
    border-left: 6px solid #d9a464;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.why-extra-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
}

.why-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.why-two-col ul {
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.7;
}

/* ============================================================
   WHAT SETS US APART
============================================================ */
.prestige-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-between;
}

.prestige-card {
    width: 32%;
    background: #faf5ee;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #d9a464;
    text-align: center;
}

.prestige-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
}

/* ============================================================
   SERVICES ACCORDION
============================================================ */
.accordion .item {
    background: #222;
    border-radius: 10px;
    border: 2px solid #d9a464;
    margin-bottom: 15px;
}

.accordion .title {
    padding: 18px;
    width: 100%;
    text-align: left;
    color: #d9a464;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.accordion .content {
    display: none;
    padding: 20px;
    background: #d9a464;
    color: #000;
}

/* ============================================================
   CASE LAW
============================================================ */
.case-law-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.case-law-box {
    width: 260px;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 2px solid #d9a464;
    cursor: pointer;
    transition: .3s;
    color: #fff;
}

.case-law-box:hover {
    background: #d9a464;
    color: #000;
}

/* ============================================================
   MODALS
============================================================ */
.modal {
    display: none;
    position: fixed;
    top: 0; left:0;
    width: 100%; height:100%;
    background: rgba(0,0,0,0.65);
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.modal-content {
    background: #fff;
    width: 60%;
    padding: 30px;
    border-radius: 12px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    float: right;
    font-size: 28px;
    cursor: pointer;
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.review {
    background: #1a1a1a;
    color: #fff;
    border: 2px solid #d9a464;
    padding: 25px;
    border-radius: 12px;
    transition: .3s;
}

.review:hover {
    background: #d9a464;
    color: #000;
}

.stars {
    color: #d9a464;
    font-size: 22px;
}

/* ============================================================
   RTM SUPPORT
============================================================ */
.rtm-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.rtm-box {
    width: 48%;
    background: #faf5ee;
    border: 2px solid #d9a464;
    border-radius: 12px;
    padding: 25px;
}

/* ============================================================
   CONTACT
============================================================ */
.contact-grid {
    display: flex;
    justify-content: space-between;
}

.contact-form {
    width: 45%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
}

.footer-info {
    width: 45%;
    line-height: 1.8;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-top: 3px solid #d9a464;
}

.footer-links span {
    cursor: pointer;
    color: #d9a464;
}

/* ============================================================
   MOBILE RESPONSIVE
============================================================ */
@media(max-width: 900px) {

    .desktop-nav { display: none; }

    .hamburger {
        display: block;
        cursor: pointer;
    }

    .why-grid { grid-template-columns: 1fr; }

    .why-two-col { grid-template-columns: 1fr; }

    .prestige-card { width: 100%; }

    .reviews-grid { grid-template-columns: 1fr; }

    .contact-grid { flex-direction: column; }
    .contact-form, .footer-info { width: 100%; }

    .rtm-grid { flex-direction: column; }
    .rtm-box { width: 100%; }

    .modal-content { width: 90%; }
}
/* Timeline Styles */
.timeline-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.timeline-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: normal;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: none;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    padding-left: 0;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.month-label {
    width: 300px;
    font-size: 1.5rem;
    font-weight: normal;
    color: #2c2c2c;
    letter-spacing: 2px;
    text-align: right;
    padding-right: 30px;
}

.circle-container {
    width: 80px;
    height: 80px;
    background: #d4a024;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    flex-shrink: 0;
    margin: 0 30px;
}

.circle-inner {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    color: #2c2c2c;
}

.content-box {
    flex: 1;
    max-width: 550px;
    background: white;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    position: relative;
}

.content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 100%;
    background: #d4a024;
}

.content-text {
    margin-left: 35px;
}

.content-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a4a4a;
}

@media (max-width: 968px) {
    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-wrap: wrap;
        padding-left: 100px;
    }

    .circle-container {
        position: absolute;
        left: 0;
        margin: 0;
    }

    .month-label {
        width: 100%;
        text-align: left;
        padding: 0 0 10px 0;
    }

    .content-box {
        width: 100%;
        max-width: 100%;
        margin-top: 10px;
    }
}
