@media (min-width: 1400px) {
    .service-page .container {
        max-width: 1300px;
    }

}

/* SERVICE HERO */
.service-hero {
    position: relative;
    height: 60vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Ensures image doesn't bleed out */
    z-index: 1;
}

/* New Image Class */
.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
    filter: brightness(90%);

}

/* Overlay */
.service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
    /* Above the image, below the text */
}

/* Content */
.service-hero-content {
    position: relative;
    z-index: 2;
    /* Highest level */
    max-width: 920px;
    color: #ffffff;
}

.service-hero-content h1 {
    font-size: clamp(34px, 5vw, 36px);
    font-weight: 500;
    margin-bottom: 20px;
}

.service-hero-content p {
    font-size: 15px;
    line-height: 1.7;
    max-width: 920px;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        height: auto;
        padding: 100px 0 80px;
    }

    .service-hero-content {
        text-align: left;
    }
}



.service-page {
    padding: 60px 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;


}

/* LEFT */

.service-content {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 50px;
}


.service-content h1 {
    font-size: 34px;
    margin-bottom: 20px;
}

.service-content .lead {
    font-weight: 500;
    margin-bottom: 20px;
}

.service-content p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 20px;
}

/* FEATURES */
.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 30px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 14px;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: #f2f4f6;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-color);
}

/* PROCESS */


/* SIDEBAR */
.service-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;


}

.sidebar-panel {
    background-color: var(--dark-bg);
    padding: 30px;
    margin-bottom: 30px;
    color: #fff;
}

.sidebar-panel h4 {
    margin-bottom: 25px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar-links a {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
}

/* DOWNLOAD */
.sidebar-download {
    background: linear-gradient(180deg, var(--dark-bg), #162026);
}

.download-row {
    display: grid;
    grid-template-columns: 30px 1fr auto;
    gap: 12px;
    padding: 14px 0;
    color: #fff;
    text-decoration: none;
}

.download-row small {
    opacity: 0.7;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: relative;
        top: auto;
    }

}

@media (max-width: 575px) {
    .service-feature-grid {
        grid-template-columns: 1fr;
    }

    .process-row {
        flex-direction: column;
    }

    .service-content {
        padding: 20px;
    }
}



.service-faq h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.faq-intro {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 720px;
}

/* FAQ LIST */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ITEM */
.faq-item {
    border: 1px solid #e6e8eb;
    border-radius: 6px;
    background: #f7f7f7;
    overflow: hidden;
}

/* QUESTION */
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

/* NUMBER */
.faq-number {
    font-weight: 700;
}

/* ICON (CSS ARROW) */
.faq-icon {
    margin-left: auto;
    width: 10px;
    height: 10px;
    border-right: 2px solid #111;
    border-bottom: 2px solid #111;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f7f7f7;
    transition: max-height 0.35s ease;
    padding: 0 22px;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(-135deg);
}

.contact-section {
    padding: 100px 0;
}

/* Title */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 36px;
    font-weight: 700;
}

/* Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* LEFT PANEL */
.contact-info {
    background: #1e2a30;
    color: #ffffff;
    padding: 60px 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    text-decoration: inherit;

}

/* LEFT PANEL */
.contact-info a:link {

    text-decoration: inherit;
    color: white;

}

.info-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 52px;
    height: 52px;
    background: #ffffff;
    color: #1e2a30;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.info-item small {
    display: block;
    opacity: 0.8;
    margin-bottom: 4px;
}

.info-item strong {
    font-size: 16px;
    font-weight: 600;
}

/* RIGHT FORM */
.contact-form {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 50px;
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* FORM */
.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    font-size: 14px;
}

.form-group textarea {
    resize: none;
    height: 120px;
}

.btn-custom {
    background: var(--dark-bg);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    font-weight: 600;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .contact-form {
        padding: 40px 30px;
    }
}

.iframe-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    /* The magic: 56.25% maintains a 16:9 aspect ratio (9/16 = 0.5625) */
    padding-top: 56.25%;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    /* Optional: removes the default iframe border */
}