/*
Theme Name: Misho Group Theme
Author: Misho Group
Version: 1.0
Description: Eigen WordPress thema voor Misho Group
*/

/* =========================
   GOOGLE FONT
========================= */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;700&display=swap');

/* =========================
   RESET + BASIS
========================= */
html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #000;
    color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   LAYOUT (STICKY FOOTER)
========================= */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

/* =========================
   HEADER
========================= */
.site-header {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
    padding: 15px 0;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

.main-menu {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.main-menu li a:hover {
    opacity: 0.6;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo img {
    max-width: 140px;
}

.footer-info h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.footer-info p {
    color: #bdbdbd;
    font-size: 14px;
    line-height: 1.6;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 0.6;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* =========================
   HOMEPAGE (ALLEEN .homepage)
========================= */

.homepage {
    background: #000;
}

/* spacing */
.homepage section {
    padding: 70px 0;
}

/* HERO */
.homepage .hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.homepage .hero-content {
    max-width: 700px;
}

.homepage .hero-title {
    font-size: 52px;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.homepage .hero-title span:last-child {
    font-weight: 400;
}

.homepage .hero-text {
    font-size: 17px;
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 25px;
}

.homepage .hero-button {
    background: #fff;
    color: #000;
    padding: 12px 22px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
}

/* OVER ONS */
.homepage .about-section {
    background: #050505;
}

.homepage .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.homepage .about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 8px;
}

.homepage .about-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.homepage .about-content p {
    font-size: 16px;
    color: #cfcfcf;
    line-height: 1.8;
}

.homepage .about-content a {
    color: #fff;
    text-decoration: underline;
}

.homepage .about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.homepage .feature-item {
    background: #101010;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
}

/* DIENSTEN */
.homepage .services-section {
    background: #0a0a0a;
}

.homepage .services-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.homepage .services-slider {
    overflow: hidden;
}

.homepage .services-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: slider 35s linear infinite;
}

.homepage .service-slide {
    width: 250px;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
}

.homepage .service-slide img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.homepage .service-slide h3 {
    padding: 12px;
    font-size: 16px;
}

@keyframes slider {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* CONTACT */
.homepage .contact-section {
    background: #000;
}

.homepage .contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.homepage .contact-heading h2 {
    font-size: 32px;
}

.homepage .contact-heading p {
    font-size: 16px;
    color: #cfcfcf;
}

.homepage .contact-form {
    background: #101010;
    padding: 25px;
    border-radius: 8px;
}

.homepage .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.homepage .form-group input,
.homepage .form-group select,
.homepage .form-group textarea {
    padding: 12px;
    background: #181818;
    border: 1px solid #333;
    color: #fff;
}

.homepage .full-width {
    grid-column: 1 / -1;
}

.homepage .form-button {
    background: #fff;
    color: #000;
    padding: 12px;
    margin-top: 15px;
    border: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

    .header-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .main-menu {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .homepage .about-grid {
        grid-template-columns: 1fr;
    }

    .homepage .about-features {
        grid-template-columns: 1fr;
    }

    .homepage .form-grid {
        grid-template-columns: 1fr;
    }

    .homepage .hero-title {
        font-size: 36px;
    }
}

/* Diensten knop */
.homepage .services-button-wrapper {
    text-align: center;
    margin-top: 35px;
}

.homepage .services-button {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.homepage .services-button:hover {
    background: #eaeaea;
    transform: translateY(-2px);
}

.form-success {
    background: #1f3d1f;
    color: #9fff9f;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.homepage .form-success {
    background: #12301d;
    border: 1px solid #1f5a33;
    color: #b8f5c8;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.homepage .form-error-box {
    background: #351414;
    border: 1px solid #6a2222;
    color: #ffcccc;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.homepage .form-error-box ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.homepage .form-group input:focus,
.homepage .form-group select:focus,
.homepage .form-group textarea:focus {
    outline: none;
    border-color: #666;
}

/* =========================
   CONTACT SECTION
========================= */
.homepage .contact-section {
    background: #000;
    padding: 70px 0;
}

.homepage .contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.homepage .contact-heading {
    margin-bottom: 24px;
}

.homepage .contact-heading h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #fff;
}

.homepage .contact-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #cfcfcf;
    margin: 0;
}

.homepage .contact-form {
    background: #101010;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 24px;
}

.homepage .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.homepage .form-group {
    display: flex;
    flex-direction: column;
}

.homepage .full-width {
    grid-column: 1 / -1;
}

.homepage .form-group label {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 400;
}

.homepage .form-group input,
.homepage .form-group select,
.homepage .form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    background: #181818;
    color: #fff;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
}

.homepage .form-group input::placeholder,
.homepage .form-group textarea::placeholder {
    color: #8f8f8f;
}

.homepage .form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.homepage .form-group input:focus,
.homepage .form-group select:focus,
.homepage .form-group textarea:focus {
    outline: none;
    border-color: #666;
    background: #1d1d1d;
}

.homepage .form-button {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.homepage .form-button:hover {
    background: #e9e9e9;
    transform: translateY(-2px);
}

.homepage .form-success {
    background: #12301d;
    border: 1px solid #1f5a33;
    color: #b8f5c8;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.homepage .form-error-box {
    background: #351414;
    border: 1px solid #6a2222;
    color: #ffcccc;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.homepage .form-error-box strong {
    display: block;
    margin-bottom: 8px;
}

.homepage .form-error-box ul {
    margin: 0;
    padding-left: 18px;
}

.homepage .form-error-box li {
    margin-bottom: 4px;
}

/* responsive */
@media (max-width: 768px) {
    .homepage .contact-section {
        padding: 55px 0;
    }

    .homepage .contact-heading h2 {
        font-size: 28px;
    }

    .homepage .form-grid {
        grid-template-columns: 1fr;
    }

    .homepage .contact-form {
        padding: 20px;
    }
}

/* =========================
   MOBILE MENU
========================= */

.site-header {
    position: relative;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* hamburger knop */
.menu-toggle {
    display: none;
    width: 30px;
    height: 22px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 10px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

/* animatie naar kruis */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
}

/* desktop */
@media (min-width: 769px) {
    .main-navigation {
        display: block !important;
    }
}

/* mobiel */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation {
        position: absolute;
        top: calc(100% + 15px);
        left: 0;
        width: 100%;
        background: #000;
        border-top: 1px solid #1a1a1a;
        border-bottom: 1px solid #1a1a1a;
        padding: 0;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
    }

    .main-navigation.active {
        max-height: 400px;
        opacity: 1;
        visibility: visible;
    }

    .main-menu {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        padding: 12px 20px;
    }

    .main-menu li {
        width: 100%;
        margin: 0;
        border-bottom: 1px solid #111;
    }

    .main-menu li:last-child {
        border-bottom: none;
    }

    .main-menu li a {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 15px;
    }
}

/* =========================
   DIENSTEN PAGINA
========================= */

.diensten-page {
    background: #000;
    color: #fff;
}

.diensten-page section {
    padding: 70px 0;
}

.diensten-hero {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
}

.diensten-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 18px;
}

.diensten-hero p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.8;
    color: #cfcfcf;
    margin: 0;
}

.diensten-overzicht {
    background: #050505;
}

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.dienst-card {
    background: #101010;
    border: 1px solid #1d1d1d;
    border-radius: 10px;
    overflow: hidden;
}

.dienst-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.dienst-card-content {
    padding: 22px;
}

.dienst-card-content h2 {
    font-size: 26px;
    font-weight: 400;
    margin: 0 0 12px;
    color: #fff;
}

.dienst-card-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #c8c8c8;
    margin: 0 0 18px;
}

.dienst-button {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dienst-button:hover {
    background: #e9e9e9;
    transform: translateY(-2px);
}

.diensten-cta {
    background: #000;
}

.diensten-cta-box {
    background: #101010;
    border: 1px solid #1d1d1d;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.diensten-cta-box h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 14px;
}

.diensten-cta-box p {
    max-width: 700px;
    margin: 0 auto 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #cfcfcf;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e9e9e9;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .diensten-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .diensten-page section {
        padding: 55px 0;
    }

    .diensten-hero h1 {
        font-size: 36px;
    }

    .diensten-hero p {
        font-size: 16px;
    }

    .dienst-card img {
        height: 210px;
    }

    .dienst-card-content h2 {
        font-size: 22px;
    }

    .diensten-cta-box {
        padding: 28px 20px;
    }

    .diensten-cta-box h2 {
        font-size: 26px;
    }
}

/* =========================
   DIENST DETAIL PAGINA
========================= */

.dienst-detail-page {
    background: #000;
    color: #fff;
}

.dienst-detail-page section {
    padding: 70px 0;
}

.dienst-detail-hero {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
}

.dienst-detail-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.dienst-detail-hero-content h1 {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 18px;
}

.dienst-detail-hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #cfcfcf;
    margin: 0 0 24px;
    max-width: 600px;
}

.dienst-detail-hero-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.dienst-detail-button {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dienst-detail-button:hover {
    background: #e9e9e9;
    transform: translateY(-2px);
}

.dienst-detail-button.secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.dienst-detail-button.secondary:hover {
    background: #fff;
    color: #000;
}

.dienst-detail-content-section {
    background: #050505;
}

.dienst-detail-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.dienst-detail-main {
    background: #101010;
    border: 1px solid #1d1d1d;
    border-radius: 10px;
    padding: 28px;
}

.dienst-detail-main h2,
.dienst-detail-main h3 {
    color: #fff;
    font-weight: 400;
    margin-top: 0;
}

.dienst-detail-main p {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 16px;
}

.dienst-detail-main ul {
    color: #cfcfcf;
    line-height: 1.8;
    padding-left: 18px;
}

.dienst-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dienst-sidebar-box {
    background: #101010;
    border: 1px solid #1d1d1d;
    border-radius: 10px;
    padding: 24px;
}

.dienst-sidebar-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 400;
}

.dienst-sidebar-box p,
.dienst-sidebar-box li {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 15px;
}

.dienst-sidebar-box ul {
    margin: 0;
    padding-left: 18px;
}

.dienst-detail-cta {
    background: #000;
}

.dienst-detail-cta-box {
    background: #101010;
    border: 1px solid #1d1d1d;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.dienst-detail-cta-box h2 {
    font-size: 32px;
    font-weight: 400;
    margin: 0 0 14px;
}

.dienst-detail-cta-box p {
    max-width: 720px;
    margin: 0 auto 22px;
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 16px;
}

@media (max-width: 991px) {
    .dienst-detail-hero-grid,
    .dienst-detail-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dienst-detail-page section {
        padding: 55px 0;
    }

    .dienst-detail-hero-content h1 {
        font-size: 36px;
    }

    .dienst-detail-hero-image img {
        height: 260px;
    }

    .dienst-detail-main,
    .dienst-sidebar-box,
    .dienst-detail-cta-box {
        padding: 22px;
    }

    .dienst-detail-cta-box h2 {
        font-size: 26px;
    }
}

.dienst-beschikbaarheid {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
}

.dienst-beschikbaarheid.niet-beschikbaar {
    background: #2a1a1a;
    border: 1px solid #5a2a2a;
    color: #ffcccc;
}

.dienst-beschikbaarheid.beschikbaar {
    background: #12301d;
    border: 1px solid #1f5a33;
    color: #b8f5c8;
}

/* =========================
   OVER ONS PAGINA
========================= */

.over-ons-page {
    background: #000;
    color: #fff;
}

.over-ons-page section {
    padding: 70px 0;
}

.over-ons-hero {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
}

.over-ons-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 24px;
}

.over-ons-intro {
    max-width: 900px;
}

.over-ons-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: #cfcfcf;
    margin: 0 0 20px;
}

.over-ons-info-section {
    background: #050505;
}

.over-ons-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.over-ons-info-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.over-ons-info-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #cfcfcf;
    margin: 0 0 20px;
    max-width: 580px;
}

.over-ons-button {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 13px 24px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.over-ons-button:hover {
    background: #e9e9e9;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .over-ons-info-grid {
        grid-template-columns: 1fr;
    }

    .over-ons-info-image img {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .over-ons-page section {
        padding: 55px 0;
    }

    .over-ons-hero h1 {
        font-size: 36px;
    }

    .over-ons-intro p,
    .over-ons-info-content p {
        font-size: 16px;
    }

    .over-ons-info-image img {
        height: 260px;
    }
}

/* =========================
   CONTACT PAGINA
========================= */

.contact-page {
    background: #000;
    color: #fff;
}

.contact-page section {
    padding: 70px 0;
}

.contact-page-hero {
    background: #000;
    border-bottom: 1px solid #1a1a1a;
}

.contact-page-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 18px;
}

.contact-page-hero p {
    max-width: 760px;
    font-size: 17px;
    line-height: 1.8;
    color: #cfcfcf;
    margin: 0;
}

.contact-page-section {
    background: #050505;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: start;
}

.contact-page-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-box {
    background: #101010;
    border: 1px solid #1d1d1d;
    border-radius: 10px;
    padding: 24px;
}

.contact-info-box h2,
.contact-info-box h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 400;
    color: #fff;
}

.contact-info-box p,
.contact-info-box li {
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.8;
}

.contact-info-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-info-box li {
    margin-bottom: 8px;
}

.contact-page-form-area .contact-form {
    background: #101010;
    border: 1px solid #1d1d1d;
    border-radius: 10px;
    padding: 24px;
}

.contact-page-form-area .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-page-form-area .form-group {
    display: flex;
    flex-direction: column;
}

.contact-page-form-area .full-width {
    grid-column: 1 / -1;
}

.contact-page-form-area .form-group label {
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
}

.contact-page-form-area .form-group input,
.contact-page-form-area .form-group select,
.contact-page-form-area .form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    background: #181818;
    color: #fff;
    font-size: 15px;
    font-family: 'DM Sans', sans-serif;
}

.contact-page-form-area .form-group textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-page-form-area .form-group input:focus,
.contact-page-form-area .form-group select:focus,
.contact-page-form-area .form-group textarea:focus {
    outline: none;
    border-color: #666;
    background: #1d1d1d;
}

.contact-page-form-area .form-button {
    display: inline-block;
    margin-top: 20px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-page-form-area .form-button:hover {
    background: #e9e9e9;
    transform: translateY(-2px);
}

.contact-page .form-success {
    background: #12301d;
    border: 1px solid #1f5a33;
    color: #b8f5c8;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-page .form-error-box {
    background: #351414;
    border: 1px solid #6a2222;
    color: #ffcccc;
    padding: 14px 16px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-page .form-error-box strong {
    display: block;
    margin-bottom: 8px;
}

.contact-page .form-error-box ul {
    margin: 0;
    padding-left: 18px;
}

@media (max-width: 991px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-page-form-area .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-page section {
        padding: 55px 0;
    }

    .contact-page-hero h1 {
        font-size: 36px;
    }

    .contact-page-hero p {
        font-size: 16px;
    }

    .contact-info-box,
    .contact-page-form-area .contact-form {
        padding: 20px;
    }
}

/* =========================
   HOMEPAGE CTA
========================= */

.homepage-cta {
    background: #000;
}

.homepage-cta-box {
    background: #101010;
    border: 1px solid #1d1d1d;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
}

.homepage-cta-box h2 {
    font-size: 34px;
    font-weight: 400;
    margin: 0 0 14px;
    color: #fff;
}

.homepage-cta-box p {
    max-width: 720px;
    margin: 0 auto 22px;
    font-size: 16px;
    line-height: 1.8;
    color: #cfcfcf;
}

.homepage-cta .cta-button {
    display: inline-block;
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 13px 26px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.homepage-cta .cta-button:hover {
    background: #e9e9e9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .homepage-cta-box {
        padding: 30px 20px;
    }

    .homepage-cta-box h2 {
        font-size: 26px;
    }
}