body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* HERO */

.hero-section {
    color: white;
    text-align: center;
}

/* IMAGES */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   SERVICE PAGE IMAGE FIXES
========================================================= */

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    height: 500px;
    background: #eee;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .4s ease;
}

.service-image-wrapper:hover .service-image {
    transform: scale(1.03);
}

/* Better section spacing */

.service-content {
    overflow: hidden;
}

.service-content .row {
    align-items: center;
}

/* Text alignment */

.service-text {
    padding: 20px;
}

.service-text h2 {
    margin-bottom: 20px;
    font-size: 2.4rem;
    font-weight: 800;
}

.service-text p {
    font-size: 1.05rem;
    color: #555;
}

/* Mobile */

@media (max-width: 991px) {

    .service-image-wrapper {
        height: 350px;
    }

}

@media (max-width: 768px) {

    .service-image-wrapper {
        height: 280px;
    }

    .service-text {
        padding: 10px 0 0;
    }

}

/* SERVICE CONTENT */

.service-section {
    padding: 80px 0;
}

/* FAQ */

.accordion-button {
    font-weight: bold;
}

/* CONTACT FORM */

form input,
form textarea,
form select {
    border-radius: 10px !important;
}

/* MOBILE */

@media (max-width: 768px) {

    .hero-section h1 {
        font-size: 2rem;
    }

}

/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #222;
    background: #ffffff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

section {
    position: relative;
}

/* =====================================================
   HEADER
===================================================== */

header {
    background: #111111 !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

header .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin-left: 15px;
    transition: .3s ease;
}

header .nav-link:hover {
    color: #ff6b35 !important;
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero-section {
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-section p {
    font-size: 1.35rem;
    max-width: 900px;
    margin: 0 auto 40px;
    opacity: .95;
}

/* =====================================================
   BUTTONS
===================================================== */

.btn {
    border-radius: 999px !important;
    padding: 14px 32px !important;
    font-weight: 700 !important;
    transition: .3s ease;
}

.btn-danger {
    background: #ff6b35 !important;
    border-color: #ff6b35 !important;
}

.btn-danger:hover {
    transform: translateY(-2px);
}

.btn-dark:hover,
.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* =====================================================
   INTRO SECTION
===================================================== */

section.py-5 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.display-5,
.display-6 {
    font-weight: 800;
    line-height: 1.15;
    color: #111;
}

.lead {
    color: #555;
}

/* =====================================================
   SERVICE CONTENT BLOCKS
===================================================== */

.service-content {
    background: #ffffff;
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
}

.service-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-image-wrapper:hover img {
    transform: scale(1.03);
}

.service-text {
    padding: 10px;
}

.service-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
}

.service-text p {
    font-size: 1.08rem;
    color: #555;
    margin-bottom: 20px;
}

/* =====================================================
   CARDS
===================================================== */

.card {
    border: none !important;
    border-radius: 28px !important;
    overflow: hidden;
    transition: .35s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    height: 320px;
    object-fit: cover;
}

.card-body {
    padding: 35px;
}

.card h3 {
    font-weight: 800;
    margin-bottom: 15px;
}

/* =====================================================
   FAQ SECTION
===================================================== */

.accordion-item {
    border: none !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.accordion-button {
    padding: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    background: #ffffff;
}

.accordion-button:not(.collapsed) {
    background: #111;
    color: #fff;
}

.accordion-body {
    padding: 25px;
    color: #555;
}

/* =====================================================
   MAP SECTION
===================================================== */

iframe {
    width: 100%;
    border: 0;
}

/* =====================================================
   CONTACT SECTION
===================================================== */

#contact {
    background: #fff !important;
}

form {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 30px;
}

.form-control,
.form-select {
    min-height: 58px;
    border-radius: 16px !important;
    border: 1px solid #333 !important;
    background: #222 !important;
    color: #fff !important;
    padding-left: 18px;
}

textarea.form-control {
    min-height: 150px;
    padding-top: 18px;
}

.form-control::placeholder,
textarea::placeholder {
    color: #aaa !important;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
    border-color: #ff6b35 !important;
}

/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #000 !important;
}

footer p {
    opacity: .9;
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .hero-section {
        min-height: auto;
        padding: 120px 20px 90px;
    }

    .hero-section h1 {
        font-size: 2.7rem;
    }

    .service-image-wrapper img {
        height: 380px;
    }

    .service-text {
        padding-top: 30px;
    }

}

@media (max-width: 768px) {

    header .nav {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .hero-section h1 {
        font-size: 2.1rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    section.py-5 {
        padding-top: 70px !important;
        padding-bottom: 70px !important;
    }

    .display-5,
    .display-6 {
        font-size: 2rem;
    }

    .service-text h2 {
        font-size: 2rem;
    }

    .service-image-wrapper img {
        height: 300px;
    }

    form {
        padding: 30px 20px;
    }

    .btn {
        width: 100%;
    }

}

/* =====================================================
   UTILITIES
===================================================== */

.shadow-lg {
    box-shadow: 0 20px 50px rgba(0,0,0,.12) !important;
}

.rounded-4 {
    border-radius: 28px !important;
}

.bg-light {
    background: #f7f7f7 !important;
}
