/* =================================== */
/* SERVICES PAGE: MAIN LAYOUT          */
/* =================================== */
.services-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    padding: 4rem 20px;
}

/* --- Left Column: Side Navigation --- */
.side-nav {
    position: sticky;
    top: 120px;
    height: calc(100vh - 140px);
    overflow-y: auto;
}
.side-nav h4 {
    font-size: 1.5rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}
.side-nav ul { list-style: none; padding: 0; }
.side-nav ul a {
    display: block; padding: 0.8rem 1rem; margin-bottom: 0.5rem;
    text-decoration: none; font-weight: 500; color: var(--text-secondary);
    border-radius: 8px; transition: background-color 0.3s ease, color 0.3s ease;
}
.side-nav ul a:hover {
    color: var(--text-primary);
    background-color: var(--bg-card);
}
.side-nav ul a.active {
    background-color: var(--color-accent); /* Orange for active link */
    color: var(--text-primary);
    font-weight: 600;
}

/* --- Right Column: Service Content --- */
.service-block {
    background-color: var(--bg-card); /* Lighter navy background for each block */
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}
.service-block img {
    width: 100%;
    max-width: 600px; /* ADDED: This sets a maximum width */
    display: block;   /* ADDED: Required for centering */
    margin-left: auto;   /* ADDED: Centers the image */
    margin-right: auto;  /* ADDED: Centers the image */
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.service-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.service-block p {
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* --- Action Buttons within Service Blocks --- */
.service-actions {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.btn-call {
    font-weight: 600; padding: 0.8rem 1.8rem; border-radius: 8px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.75rem;
    border: 2px solid var(--color-accent); /* Orange outline */
    color: var(--color-accent);
    background-color: transparent;
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Border must be solid and transparent */
    border-image: var(--gradient-main) 1;
    color: var(--text-primary); /* Change text to white for better contrast */
    background-image: none; /* Ensure no background image initially */
    background-clip: padding-box;
}
.btn-call:hover {
    background-image: var(--gradient-main);
    color: var(--text-primary);
    border-image: none;
}

/* =================================== */
/* ALL-INCLUSIVE SERVICES GRID         */
/* =================================== */
.all-services-section {
    padding: 6rem 0;
    background-color: var(--bg-primary); /* Darkest navy background */
}
.all-services-grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.service-category {
    background-color: var(--bg-card); /* Lighter navy cards */
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.service-category h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}
.services-list { list-style: none; padding: 0; }
.services-list li {
    display: flex; align-items: center; gap: 0.75rem;
    margin-bottom: 1rem; color: var(--text-secondary);
}
.services-list li i {
    background-image: var(--gradient-main);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* =================================== */
/* FULL FAQ SECTION                    */
/* =================================== */
.full-faq-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}
.faq-container {
    max-width: 800px;
    margin: 4rem auto 0 auto;
    border-top: 1px solid var(--border-color);
}

/* =================================== */
/* RESPONSIVE STYLES (for Services Page) */
/* =================================== */
@media (max-width: 992px) {
    .services-page-layout { grid-template-columns: 1fr; }
    .side-nav { position: static; height: auto; margin-bottom: 3rem; padding-bottom: 2rem; }
    .all-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .all-services-grid { grid-template-columns: 1fr; }
}