/* ============================
   Global Color Variables
   ============================ */
:root {
    --primary: #0f766e;
    --primary-dark: #115e59;
    --accent: #f59e0b;
    --ink: #13201f;
    --muted: #667085;
    --soft: #f4f8f7;
    --line: #e3ecea;
    --dark: #0f172a;
}

/* ============================
   Global Reset
   ============================ */
* {
    letter-spacing: 0;
}

/* ============================
   Base Body & Link Styles
   ============================ */
body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    line-height: 1.7;
}

a {
    text-decoration: none;
}

/* ============================
   Navbar
   ============================ */
.navbar {
    background: rgba(15, 23, 42, .98) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
}

.navbar-brand {
    font-size: 18px;
    white-space: normal;
}

.navbar-brand img {
    height: 60px;
    width: auto;
    margin-right: 0cm;
}

.nav-link {
    font-weight: 600;
    margin-left: 8px;
}

.nav-link i {
    margin-right: 6px;
}

.nav-link.active,
.nav-link:hover {
    color: var(--accent) !important;
}

/* ============================
   Buttons
   ============================ */
.btn {
    border-radius: 6px;
    font-weight: 700;
    padding: 10px 20px;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-warning {
    background: var(--accent);
    border-color: var(--accent);
    color: #1f2937;
}

/* ============================
   Section Titles & Kickers
   ============================ */
.section-title {
    font-weight: 800;
    margin-bottom: 14px;
}

.section-kicker {
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.text-muted-custom {
    color: var(--muted);
}

/* ============================
   Page Banner (inner pages hero)
   ============================ */
.page-banner {
    min-height: 450px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, .86), rgba(15, 118, 110, .68));
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-weight: 800;
}

/* ============================
   Home Hero Carousel
   ============================ */
.hero-carousel .carousel-item {
    height: 580px;
    position: relative;
}

.hero-carousel .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-carousel .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, .86), rgba(15, 23, 42, .28));
    z-index: 1;
}

.hero-carousel .carousel-caption {
    z-index: 2;
    left: 8%;
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    max-width: 720px;
    text-align: left;
}

.hero-carousel h1 {
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.08;
}

.hero-carousel p {
    font-size: clamp(17px, 2vw, 22px);
    color: #e5e7eb;
}

/* ============================
   Shared Card Styles
   (feature / service / blog / contact / price / team / value)
   ============================ */
.feature-card,
.service-card,
.blog-card,
.contact-box,
.price-card,
.team-card,
.value-card {
    height: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover,
.service-card:hover,
.blog-card:hover,
.price-card:hover,
.team-card:hover,
.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, .11);
}

/* ============================
   Icon Boxes (feature/service/contact icons)
   ============================ */
.icon-box,
.service-icon,
.contact-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(15, 118, 110, .1);
    color: var(--primary);
    font-size: 25px;
    margin-bottom: 18px;
}

/* ============================
   Stats Band (dark counter section)
   ============================ */
.stat-band {
    height: 300px;
    background: var(--dark);
    color: #fff;
}

.stat-band h2,
.stat-band h3 {
    color: var(--accent);
    font-weight: 800;
}

/* ============================
   Process Steps (numbered circles)
   ============================ */
.process-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

/* ============================
   Fixed-height Card Images
   ============================ */
.card-img-fixed {
    height: 235px;
    object-fit: cover;
}

/* ============================
   Gallery Grid
   ============================ */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    border: 1px solid var(--line);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform .35s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, .82), rgba(15, 23, 42, .12));
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 22px;
}

/* ============================
   Call To Action Section
   ============================ */
.cta-section {
    background: linear-gradient(90deg, var(--primary-dark), var(--dark));
    color: #fff;
}

/* ============================
   Form Controls
   ============================ */
.form-control {
    min-height: 48px;
    border-radius: 6px;
}

textarea.form-control {
    min-height: 130px;
}

/* ============================
   Social Icons (general, e.g. hero/about section)
   ============================ */
.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    margin-right: 8px;
}

/* ============================
   Map Embed (contact page)
   ============================ */
.map-frame {
    width: 100%;
    height: 360px;
    border: 0;
}

/* ============================
   Site Footer
   ============================ */
.site-footer {
    background: linear-gradient(180deg, #111827 0%, #0f172a 100%);
    color: #cbd5e1;
    padding: 58px 0 24px;
}

.site-footer h4,
.site-footer h5 {
    color: #fff;
}

.site-footer h5 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
}

.site-footer h5::after {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
    display: block;
    margin-top: 8px;
}

.site-footer a {
    color: #cbd5e1;
    transition: color .2s ease, transform .2s ease, background .2s ease;
}

.site-footer a:hover {
    color: var(--accent);
}

/* ---- Footer: brand/logo block ---- */
.footer-brand {
    max-width: 430px;
}

.footer-brand h4 {
    font-weight: 800;
}

.footer-brand p,
.footer-contact p {
    color: #dbe4ef;
}

/* ---- Footer: quick links list ---- */
.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
}

.footer-links a i,
.footer-contact i {
    color: var(--accent);
    width: 18px;
}

.footer-links a:hover {
    transform: translateX(4px);
}

/* ---- Footer: contact details ---- */
.footer-contact {
    display: grid;
    gap: 12px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0;
}

/* ---- Footer: social icons ---- */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    background: var(--accent);
    color: #111827;
    transform: translateY(-3px);
}

/* ---- Footer: bottom copyright bar ---- */
.footer-bottom {
    border-top: 1px solid rgba(203, 213, 225, .18);
    margin-top: 38px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

/* ============================
   Responsive (Mobile) Adjustments
   ============================ */
@media (max-width: 767px) {
    .hero-carousel .carousel-item {
        height: 520px;
    }

    .hero-carousel .carousel-caption {
        left: 6%;
        right: 6%;
    }

    .navbar-brand {
        max-width: 245px;
        font-size: 16px;
    }

    .page-banner {
        min-height: 260px;
    }

    .site-footer {
        padding-top: 44px;
    }

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

/* ============================
   WhatsApp Floating Button
   ============================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    line-height: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* ============================
   Contact Form Icons (input group with icon)
   ============================ */
.contact-box .input-group-text {
    min-width: 50px;
    justify-content: center;
    border-radius: 6px 0 0 6px;
    border-color: #dee6e4;
    background: rgba(15, 118, 110, .1);
    color: var(--primary);
}

.contact-box .input-group .form-control {
    border-left: 0;
}

.contact-box .input-group:focus-within .input-group-text {
    border-color: var(--primary);
    background: rgba(15, 118, 110, .14);
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}