/* =========================================
   GLOBAL VARIABLES
========================================= */
:root {
    --accent: #9ead44;
    --accent-dark: #9ead44;
    --text-dark: #222;
    --text-muted: #777;
    --bg-light: #F8F9FA;
    --transition: 0.3s ease;
}

/* =========================================
   GLOBAL RESET
========================================= */
* {
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: var(--text-dark);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* =========================================
   NAVBAR
========================================= */
.navbar {
    padding: 12px 0;
    background: #fff !important;
    
}

/* Navbar brand container */
.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

/* Logo image */
.navbar-logo {
  height: 60px;        /* desktop size */
  width: auto;         /* keep aspect ratio */
  display: block;
  object-fit: cover;
}

/* Improve rendering on some browsers */
.navbar-logo {
  image-rendering: -webkit-optimize-contrast;
}

/* Tablet */
@media (max-width: 992px) {
  .navbar-logo {
    height: 54px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .navbar-logo {
    height: 38px;
  }
}


/* normal menu links */
.nav-link {
    color: #444 !important;
    padding: 8px 16px !important;
    font-size: 0.95rem;
    border-radius: 6px;
}

/* ACTIVE NAV PAGE */
.nav-link.active-page {
    background: var(--accent);
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 16px !important;
}

/* CONTACT button in navbar */
.btn-primary-solid {
    background: var(--accent);
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary-solid:hover {
    background: var(--accent-dark);
    color: #fff !important;
}

.nav-btn {
    padding: 8px 16px !important;
}


/* =========================================
   ROOT VARIABLES
========================================= */
:root {
    --accent: #9ead44;
    --accent-light: #9ead44;
    --accent-dark: #9ead44;
    --transition: 0.3s ease;
}

/* =========================================
   GENERAL RESET
========================================= */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

section {
    position: relative;
    width: 100%;
}

/* =========================================
   NAVBAR STYLES
========================================= */
.navbar {
    padding: 12px 0;
    background: #fff !important;
}

.nav-link {
    margin-right: 18px;
    font-weight: 500;
    color: #333 !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent) !important;
}

.nav-link.active-page {
    background: var(--accent);
    color: #fff !important;
    border-radius: 6px;
    padding: 6px 14px !important;
}

/* Primary button in navbar */
.nav-btn {
    padding: 8px 20px;
    border-radius: 6px;
    background: var(--accent);
    color: white !important;
}

.nav-btn:hover {
    background: var(--accent-dark);
}


/* =========================================
   HERO SECTION — FULL WIDTH SLIDER
========================================= */

.hero-section {
    width: 100%;
    height: 95vh;
    position: relative;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    
}

.hero-slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
    
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

/* Overlay */
.hero-overlay {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 5;
    color: #fff;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Arrows */
.hero-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    border: none;
    padding: 12px 18px;
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.hero-btn:hover {
    background: rgba(0,0,0,0.55);
}

.hero-btn.left { left: 20px; }
.hero-btn.right { right: 20px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.hero-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.45);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-dot.active {
    background: white;
    width: 14px;
    height: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section,.hero-slider { height: 95vh; }
    .hero-overlay h1 { font-size: 1.9rem; }
    .hero-overlay p { font-size: 1rem; }
}




/* =========================================
   SERVICE CARDS
========================================= */
/* Make all service cards equal height */
.service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;     
    text-align: center;
    padding-bottom: 20px;
}




.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.service-card img {
    filter: brightness(0.8);
}


/* =========================================
   WHY CHOOSE US
========================================= */

.accent-text {
    color: var(--accent);
    font-size: 2.5rem;
    margin-bottom: 8px;
    font-weight: 700;
}

@media (max-width:768px) {
    .accent-text { font-size: 1.9rem; }
}

/* =========================================
   FULL-WIDTH FEATURED PROJECT SLIDER
========================================= */

.featured-section {
    width: 100%;
    padding-top: 40px;
}

.featured-slider {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
    border-radius: 0; /* full width – no rounding */
}

/* Slides wrapper */
.featured-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.featured-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.9s ease-in-out;
}

.featured-slide.active {
    opacity: 1;
    z-index: 2;
}

.featured-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.featured-overlay {
    position: absolute;
    bottom: 120px;
    left: 150px;
    right: 0;
    padding: 13px;
    color: white;
}
.featured-overlay {
    background: rgba(0,0,0,0.35);
    width: fit-content;
    border-radius: 8px;
}

.featured-overlay h3 {
    margin: 0;
    font-size: 1.9rem;
    font-weight: 600;
}

@media (max-width: 991.2px) {
    .featured-overlay {
        left: 80px;
        bottom: 60px;
        padding: 16px;
    }
    .featured-overlay h3 { font-size: 1.4rem; }
}

@media (max-width: 768px) {
    .featured-overlay {
        left: 20px;
        bottom: 20px;
        padding: 16px;
    }
    .featured-overlay h3 { font-size: 1.4rem; }
}


/* Arrows */
.featured-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.35);
    border: none;
    padding: 12px 18px;
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
}

.featured-btn:hover {
    background: rgba(0,0,0,0.6);
}

.featured-btn.left { left: 20px; }
.featured-btn.right { right: 20px; }



/* Dots */
.featured-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.featured-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.featured-dot.active {
    background: white;
    width: 14px;
    height: 14px;
}



/* =========================================
   RESPONSIVE FIXES
========================================= */

@media (max-width: 768px) {
    .featured-slider {
        height: 50vh;
    }

    .featured-btn {
        font-size: 1.3rem;
        padding: 8px 10px;
    }

    .featured-overlay h3 {
        font-size: 1.4rem;
    }
}



/* =========================================
   DESIGN PROCESS – PREVIEW CARDS
========================================= */

.process-preview-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover */
.process-preview-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Image */
.process-preview-card img {
    width: 100%;
    max-width: 220px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Step Title */
.process-preview-card h5 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1d;
}

/* Description */
.process-preview-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

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

@media (max-width: 991px) {
  .process-preview-card img {
        max-width: 200px;
        height: 140px;
  }
}

@media (max-width: 767px) {
  .process-preview-card {
        padding: 28px 22px;
  }

  .process-preview-card img {
        max-width: 100%;
        height: 160px;
  }
}




/* =========================================
   TESTIMONIALS
========================================= */

.carousel-item blockquote {
    font-size: 1.1rem;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    transition: 0.3s ease;
}


/* =========================================
   CTA SECTION
========================================= */

.cta-section {
    background: #c1a058 !important;
    padding: 70px 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0px -10px 30px rgba(0,0,0,0.1);
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 600;
}

.btn-cta {
    background: #fff;
    color: #9ead44 !important;
    padding: 12px 32px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-cta:hover {
    background: #eaeaea;
    color: #738318 !important;
    transform: translateY(-3px);
}

@media (max-width:768px) {
    .cta-section h3 { font-size: 1.5rem; }
}


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

.footer {
    background: #30382c;
    color: #fff;
    padding: 70px 0;
}

.footer h4,
.footer h6 {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-link {
    color: white !important;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--accent-dark) !important;
    transform: translateX(4px);
}

.footer .border-top {
    border-color: rgba(255,255,255,0.12) !important;
}

@media (max-width: 768px) {

  /* Center everything inside footer */
  .footer {
    text-align: center;
  }

  /* Force columns to center content */
  .footer .row > div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Center logo */
  .footer .brand-image {
    margin: 0 auto 20px;
    display: block;
  }

  /* Fix UL alignment */
  .footer ul {
    padding-left: 0;
    margin: 0;
  }

  /* Center list items */
  .footer ul li {
    text-align: center;
  }
}





/* =========================================
   ABOUT PAGE — HERO BANNER
========================================= */

.about-hero {
    height: 95vh;
    min-height: 350px;
    background-image: url("../images/projects/webp/about-hero-bg.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

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



/* =========================================
   ABOUT PAGE — WHO WE ARE SECTION
========================================= */

.about-text {
    font-size: 1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--accent);
}

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

/* ===============================
   VALUES SECTION – PREMIUM STYLE
================================ */

.values-section {
    padding: 100px 0;
    background: radial-gradient(circle at top, #f4f8f8, #ffffff);
}

.values-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 70px;
    color: #111;
}

/* ICON ABOVE CARD */
.value-icon {
    width: 320px;
    height: 120px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon img {
    width: 140px;
    height: auto;
    opacity: 0.9;
}

/* CARD */
.value-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 30px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.value-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #555e24;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* HOVER EFFECT */
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(0,0,0,0.12);
}

/* MOBILE */
@media (max-width: 768px) {

    .values-section {
        padding: 40px 0;
    }

    .values-title {
        font-size: 1.9rem;
        margin-bottom: 20px;
    }

    /* Make image BIG */
    .value-icon {
        width: 35%;
        height: auto;
        max-width: 60%;
        margin-bottom: 20px;
    }

    .value-icon img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        border-radius: 12px;
    }
}



/* =========================================
   TEAM SECTION
========================================= */
/* ===========================
   BASE TEAM CARD
=========================== */

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Default Team Image (RECTANGULAR) */
.team-card img {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: 6px; /* very subtle – remove if you want sharp edges */
  margin-bottom: 16px;
}

/* Name */
.team-card h5 {
  font-size: 1.05rem;
  margin-top: 8px;
  letter-spacing: 0.4px;
}

/* ===========================
   FEATURED MANAGING PARTNER
=========================== */

.team-card--featured {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  padding: 48px 32px;
}

.team-card--featured img {
  width: 260px;
  height: 320px;
  margin-bottom: 24px;
}

.team-card--featured h5 {
  font-size: 1.45rem;
  font-weight: 700;
}

.team-card--featured p {
  font-size: 1rem;
}

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

@media (max-width: 768px) {
  .team-card img {
    width: 140px;
    height: 180px;
  }

  .team-card--featured img {
    width: 200px;
    height: 260px;
  }  

}
@media (max-width: 998px) {

  .team-card {
    padding: 16px 14px;
  }

  .team-card img {
    width: 130px;
    height: 160px;
    margin-bottom: 12px;
  }

  .team-card h5 {
    font-size: 1rem;
  }

  .team-card .role {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .team-card p {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {

  .team-card {
    padding: 16px 14px;
  }

  .team-card img {
    width: 130px;
    height: 160px;
    margin-bottom: 12px;
  }

  .team-card h5 {
    font-size: 1rem;
  }

  .team-card .role {
    font-size: 0.8rem;
    margin-bottom: 8px;
  }

  .team-card p {
    font-size: 1rem;
  }
}


/* =========================================
   PORTFOLIO HERO BANNER
========================================= */

.portfolio-hero {
  height: 95vh;
  min-height: 330px;
  position: relative;
  overflow: hidden;
}

.portfolio-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Optional overlay for readability */
.portfolio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

/* Ensure text stays above image */
.portfolio-hero .container {
  position: relative;
  z-index: 1;
}




/* =========================================
   UNIVERSAL PORTFOLIO SLIDER SECTION
========================================= */

/* =========================================================
   SLIDER SECTION WRAPPER (TRANSLUCENT OVERLAY)
========================================================= */

.living-slider-section,
.portfolio-slider-section {
    width: 100%;
    padding: 20.5px 0;
}

/* Section headings */
.living-slider-section h2,
.portfolio-slider-section h2 {
    color: #ffffff;
    
}

/* =========================================================
   BASE SLIDER STRUCTURE (ALL SLIDERS)
========================================================= */

.living-slider,
.bed-slider,
.kitchen-slider,
.accessory-slider {
    position: relative;
    width: 90%;
    max-width: 1200px;          /* FIXED WIDTH */
    height: 70vh;
    margin: 0 auto;
    background: #111;           /* LETTERBOX BACKGROUND */
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

/* Slides wrapper */
.living-slides,
.bed-slides,
.kitchen-slides,
.accessory-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide */
.living-slide,
.bed-slide,
.kitchen-slide,
.accessory-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.9s ease-in-out;
}

.living-slide.active,
.bed-slide.active,
.kitchen-slide.active,
.accessory-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Slide images – FULL IMAGE VISIBLE */
.living-slide img,
.bed-slide img,
.kitchen-slide img,
.accessory-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #111;
}

/* =========================================================
   ARROWS (ALL SLIDERS)
========================================================= */

.living-btn,
.bed-btn,
.kitchen-btn,
.accessory-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    border: none;
    padding: 10px 14px;
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s ease;
    backdrop-filter: blur(6px);
}

.living-btn:hover,
.bed-btn:hover,
.kitchen-btn:hover,
.accessory-btn:hover {
    background: rgba(0,0,0,0.8);
}

.living-btn.left,
.bed-btn.left,
.kitchen-btn.left,
.accessory-btn.left {
    left: 18px;
}

.living-btn.right,
.bed-btn.right,
.kitchen-btn.right,
.accessory-btn.right {
    right: 18px;
}

/* =========================================================
   DOTS (ALL SLIDERS)
========================================================= */

.living-dots,
.bed-dots,
.kitchen-dots,
.accessory-dots {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.living-dot,
.bed-dot,
.kitchen-dot,
.accessory-dot {
    width: 11px;
    height: 11px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

.living-dot.active,
.bed-dot.active,
.kitchen-dot.active,
.accessory-dot.active {
    background: #fff;
    width: 14px;
    height: 14px;
}

/* =========================================================
   ACCESSORIES TEXT OVERLAY
========================================================= */

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.65),
        transparent
    );
    color: #fff;
}

.featured-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

/* =========================================================
   RESPONSIVE FIXES
========================================================= */

@media (max-width: 992px) {
    .living-slider,
    .bed-slider,
    .kitchen-slider,
    .accessory-slider {
        height: 50vh;
        max-width: 92%;
    }
}

@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .living-slider-section,
    .portfolio-slider-section {
        padding: 50px 0;
        
    }

    .living-slider,
    .bed-slider,
    .kitchen-slider,
    .accessory-slider {
        height: 40vh;
        border-radius: 10px;
    }

    .living-btn,
    .bed-btn,
    .kitchen-btn,
    .accessory-btn {
        padding: 6px 10px;
        font-size: 1.3rem;
    }

    .living-dot,
    .bed-dot,
    .kitchen-dot,
    .accessory-dot {
        width: 10px;
        height: 10px;
    }

    .living-dot.active,
    .bed-dot.active,
    .kitchen-dot.active,
    .accessory-dot.active {
        width: 12px;
        height: 12px;
    }
    .featured-overlay {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: none !important;
        padding: 16px;
        
    }
}




/* =========================================
   CONTACT PAGE — HERO SECTION
========================================= */

.contact-hero {
    height: 95vh;
    min-height: 350px;
    background-image: url('../images/projects/webp/contact-hero.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

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

/* =========================================
   CONTACT FORM CARD
========================================= */

form .form-control {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px rgba(13,110,110,0.15);
}

form label {
    font-size: 0.95rem;
    color: #333;
}

form button {
    padding: 10px 22px;
    font-size: 1rem;
}

/* =========================================
   CONTACT INFO SIDEBAR
========================================= */

.contact-info-card {
    border-radius: 10px;
    background: #f7f9fa;
    padding: 25px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.contact-info-card p {
    font-size: 0.95rem;
    color: #555;
}

.contact-info-card strong {
    color: var(--accent);
    font-weight: 600;
}

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

.map-section iframe {
    width: 100%;
    height: 580px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .map-section iframe {
        height: 300px;
    }
}

/* =========================================
   BUTTON FIX FOR CONTACT PAGE
========================================= */

.btn-primary-solid {
    display: inline-block;
}


/* =========================================
   PROCESS PAGE — HERO SECTION
========================================= */

.process-hero {
    height: 95vh;
    min-height: 360px;
    background-image: url('../images/projects/webp/process-bg.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.process-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(24, 23, 23, 0.45);
}

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





/* =========================================
   CTA BUTTON FIX
========================================= */

.btn-cta {
    background: #fff;
    color: var(--accent) !important;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    border: none;
    transition: 0.3s ease;
}

.btn-cta:hover {
    background: #eaeaea;
    color: var(--accent-dark) !important;
}


/* =========================================
   RESPONSIVE FIXES
========================================= */



@media (max-width: 768px) {
    .process-hero {
        height: 95vh;
        min-height: 260px;
    }
}




/* =========================================
   FORM PAGE HERO (Quotation + Consultation)
========================================= */

.form-hero {
    height: 87vh;
    min-height: 300px;
    background-image: url('../images/about-hero-bg.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.form-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.form-hero .container,
.form-hero h1 {
    position: relative;
    z-index: 2;
}


/* =========================================
   FORM CONTAINER
========================================= */

.form-wrapper {
    max-width: 800px;
    margin: auto;
}

.form-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Inputs */
form .form-control {
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(8,79,79,0.15);
}

/* Labels */
form label {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
}

/* Submit Button */
.form-card .btn-primary-solid {
    padding: 12px 26px;
    font-size: 1rem;
    font-weight: 600;
}


/* =========================================
   CTA BUTTONS ON HOME THAT LINK HERE
========================================= */

.btn-cta {
    background: #fff;
    color: var(--accent) !important;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    border: none;
    transition: 0.3s ease;
}

.btn-cta:hover {
    background: #eaeaea;
}


/* =========================================
   RESPONSIVENESS
========================================= */

@media (max-width: 768px) {

    .form-card {
        padding: 25px;
    }

    .form-hero {
        height: 90vh;
        min-height: 220px;
    }

    .form-hero h1 {
        font-size: 1.8rem;
    }
}

/* Highlighted Quotation Button */
.quotation-btn {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 18px !important;
    border-radius: 6px;
    font-weight: 600;
    margin-left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
    
}


.arrow-up {
    transform: rotate(-45deg);   /* slanted upward */
    display: inline-block;
    transition: transform 0.3s ease;
}

.quotation-btn:hover .arrow-up {
    transform: rotate(-45deg) translate(4px, -4px); /* smooth slide */
}


@media (max-width: 991px) {

    
    .navbar-nav .nav-item {
        width: 100%;
        
    }

    
    .navbar-nav .nav-link {
        width: 30%;
        padding: 12px 20px !important;
        margin: 0 !important;
        border-radius: 6px;
        display: block;
        text-align: left;
    }

    
    .navbar-nav .quotation-btn {
        width: auto !important;             
        display: inline-flex !important;    
        align-items: center;
        gap: 6px;
        background: var(--accent) !important;
        color: #fff !important;
        padding: 10px 18px !important;
        border-radius: 6px;
        margin: 12px 0 8px 5px !important; 
        text-align: center !important;
    }

    /* Arrow stays slanted upward */
    .navbar-nav .quotation-btn .arrow-up {
        transform: rotate(-45deg);
        transition: 0.3s ease;
    }
}

/* Brand block container */
.brand-block {
    text-align: left;
}

/* Brand image styling */
.brand-image {
  height: 200px;
  width: auto;
  border-radius: 12px;   /* ⬅ adjust curve */
  display: block;
}

/* Optional: dark footer polish */
.brand-block h4 {
    color: #ffffff;
}

.brand-block p {
    max-width: 300px;
    line-height: 1.6;
}

