/* ============================================================
   Upper Kitchens - Root / Global CSS
   Description: Base styles and CSS variables for the site
   Developer: Meshack.
   Created: April 11th 2025
   Version: 1.0
============================================================ */

/* -------------------------------
   CSS Variables
--------------------------------- */

:root {
  /* Colors */
  --primary-color: #AB2E7D;      /* Main brand color */
  --secondary-color: #333333;    /* Dark text / headings */
  --accent-color: #f5f5f5;       /* Backgrounds / sections */
  --link-color: #AB2E7D;         /* Links */
  --link-hover-color: #7a1e59;   /* Hover state */

  /* Typography */
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 20px;
  --line-height-base: 1.5;

}

/* -------------------------------
   Reset / Base Styles
--------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: var(--secondary-color);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

/* Paragraphs */
p {
  font-family: var(--font-body);
  margin-bottom: var(--space-md);
  color: var(--secondary-color);
  line-height: var(--line-height-base);
}

/* Links */
a {
  color: black !important;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: #AB2E7D;
}

/* Buttons */
button {
  font-family: var(--font-heading);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--border-radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button.primary {
  background-color: var(--primary-color);
  color: #fff;
}

button.primary:hover {
  background-color: #7a1e59;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.d-block { display: block; }
.d-flex { display: flex; }
.flex-center { display: flex; justify-content: center; align-items: center; }
.flex-column { flex-direction: column; }

/* -------------------------------
   Responsive Helpers
--------------------------------- */
@media (max-width: 992px) {
  html { font-size: 15px; }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  .flex-center { flex-direction: column; }
}

@media (max-width: 480px) {
  html { font-size: 13px; }
}

/* ======= Content ======= */

.top-bar {
  display: flex;
  justify-content: end;
  position: fixed;
  width: 100%;
  background-color: var(--primary-color) ;  
  color: #ffffff !important;                 
  padding: 6px 70px;
  font-size: 14px;
  text-align: left;
  z-index: 1000; 
  gap: 20px;
  top: 0%;
}

.top-bar p{
    color: #ffffff !important; 
}
.top-bar a{
    color: #ffffff !important; 
}

.tb-item a{
    color: #ffffff !important; 
}

.top-bar-mobile {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 4px 15px;
  padding-left: 10px;
  font-size: 13px;
  display: flex !important;       /* FORCE flex */
  flex-direction: row;
  justify-content: space-between; /* 2 columns */
  align-items: start;
  z-index: 1000;
  box-sizing: border-box;
}

.tb-item {
  color: white;
  text-align: center; /* centered text */
}

.tb-item p {
    color: white;
}

.top-bar-mobile a {
  color: #ffffff;
  text-decoration: none;
}

.top-bar-mobile a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;          /* hide desktop top bar on small screens */
  }
  .top-bar-mobile {
    display: block;         /* show mobile top bar */
  }
}

@media (min-width:768px) {
    .top-bar-mobile{
    display: none !important;
    }
}

/* ============= Menu Header ================*/

.desktop-menu{
    position: fixed;
    display: flex;
    width: 100%;
    justify-content: space-between;
    background-color: rgb(255, 255, 255);
    top: 30px;
    padding-left: 30px;
    padding-bottom: -50 !important;
    height: 60px;
    box-shadow: 3px 3px 10px 1px rgba(0,0,0,0.1);
    z-index: 1000;
}

@media (max-width:768px){
    .desktop-menu{
    display: none; 
    }
}

#service-btn{
    cursor:pointer;
}

#service-btn:hover{
font-weight: 700;
color: #4d0532;
}

#kit-icon:hover{
    transform: translateX(5px);
}
.con-info-box i{
    padding: 15px;
    border-radius: 50%;
    color: #AB2E7D;
    margin-bottom: 10px;
}



.desktop-links{
    display: flex;
    justify-content: space-between;
    padding: 20px;
    gap: 100px;
    color: black !important;
}
.desktop-links a:hover{
    font-weight: 700;
color: #4d0532;
}
#search-icon{
    position: relative;
    top: 5px;
}

.left-links{
    padding: 20px;
    padding-right: 70px;
}

.left-links{
    background-color: #7a1e59;
}

.left-links:hover{
    background-color: #AB2E7D;
}

.left-links p{
    color: white;
}

.desktop-links p{
    color: black;
}

/*========= Desktop Submenu =============*/

.services-box{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    top: 90px; 
    position: fixed; 
    gap: 5px; 
    padding: 20px;
    box-shadow: 3px 3px 10px 1px rgba(0,0,0,0.1);
    background-color: #fff;
    z-index: 1000;
}
.services-box .box img {
    border-radius: 6px;     
    margin-bottom: 10px;
}
.services-box .box h4 {
    margin: 5px 0;
    font-family: "montserrat";
}
.services-box .box a {
    margin-top: 10px;
    margin: 5px 0;
    text-decoration: none;
    color: #AB2E7D;
    font-weight: 500;
}
.services-box .box p {
    font-size: 14px;
    margin-bottom: 15px;
}
.subMenuBtn{
    width: 100%;
    font-size: 12px;
    margin-top: 100px;
    border: 1px solid #7a1e59;
    padding: 7px 14px;
    border-radius: 5px;
    color: #7a1e59;
}
.subMenuBtn:hover{
    background-color: #7a1e59;
    color: white !important;
}

/*========= Desktop Submenu =============*/

/*========= Desktop Submenu =============*/

.mobile-header{
    display: flex;
    background-color: white;
    position: fixed;
    width: 100%;
    top: 25px;
    padding-left: 10px;
    justify-content: space-between;
    box-shadow: 3px 3px 10px 1px rgba(0,0,0,0.1);
    padding-bottom: -15px;
    height: 55px;
    z-index: 1000;
}
.menu-btn{
    padding-top: 13px;
    margin-right: 10px;
    cursor: pointer;
}
 .mobile-menu {
  position: fixed;
  top: 80px;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.4s ease;
  z-index: 9999;
}
@media (min-width:768px){
    .mobile-header{
        display:none;
    }
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu a,
.mobile-menu p {
  font-size: 16px;
  padding: 10px 0;
  color: #333;
  border-bottom: 1px solid #eee;
}
.quote-btn {
    margin-top: 10px;
  background: #000;
  color: #fff !important;
  text-align: center;
  padding: 14px 0;
  border-radius: 60px;
  font-weight: 600;
  font-size: 17px;
}
.quote-btn:hover{
    background-color: #7a1e59;
    color: #fff !important;
}
/* Accordion */
.accordion-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 17px !important; 
  padding-top: 8px;
  padding-bottom: -30px;
  margin-top: 5px;
  margin-bottom: -20px;
  cursor: pointer;
}
.accordion-content {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding-top: 15px;
  margin-top: 15px;
  font-size: 17px !important; 
}
.accordion-content a {
  border-bottom: none;
  font-size: 17px;
}
.accordion.open .accordion-content {
  display: flex;
}
.accordion.open .accordion-head i {
  transform: rotate(45deg);
  transition: 0.2s;
}





/* Overlay background */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .3s ease;
}

/* Show overlay */
.search-overlay.show {
  display: flex;
  opacity: 1;
}

/* Search box */
.search-box {
  position: relative;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Input */
.search-box input {
  flex: 1;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

/* Search button */
.search-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 6px;
  cursor: pointer;
}

/* Close icon */
.close-search {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

/* ========= Showroom ==========*/

.showroom-hero {
  margin-top: 90px;
  text-align: center;
  padding: 100px 20px 80px;
  background: #eeeeee;
}

.showroom-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-family: 'Montserrat';
}

.showroom-hero p {
  font-size: 18px;
  color: #555;
   font-family: 'Montserrat';
}

/* Layout */
.showroom-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0px 8%;
  margin-top: 25px;
  margin-right: 20px;
  margin-left: 20px;
}

.showroom-details {
  flex: 1;
  min-width: 300px;
}

.showroom-details h2 {
  font-size: 30px;
  margin-bottom: 20px;
   font-family: 'Montserrat';
   margin-top: 30px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.detail-item i {
  font-size: 20px;
  color: #7a1e59;
  margin-top: 3px;
}

.directions-btn {
  display: inline-block;
  background: #7a1e59;
  color: white !important;
  padding: 12px 25px;
  border-radius: 6px;
  margin-top: 15px;
  transition: 0.3s;
}

.directions-btn:hover {
  background: #AB2E7D;
}

.showroom-map {
  flex: 1;
  min-width: 300px;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Mobile */
@media (max-width: 768px) {
  .showroom-container {
    padding: 30px 20px;
  }

  .showroom-map {
    height: 300px;
  }

  .showroom-img{
    text-align: center;
    width: 100%;
  }
}

.showroom-img{
    text-align: center;
}

/* ==================== Footer ==================== */

.footer-section {
    background: #111;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-family: 'Montserrat';
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-section img {
    margin-top: -17px;
    margin-bottom: -20px;
}

.footer-section p {
    font-family: 'Montserrat';
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    color: white !important;
}

.footer-links h2,
.newsletter h2 {
    font-size: 18px;
    font-family: 'Montserrat';
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: -20;
    margin: 0;
    margin-top: -10px;
    color: white !important;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
    color: #fff !important;
    font-family: "Montserrat", sans-serif;
    opacity: 0.7;
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    padding-left: 5px;
}

.newsletter input {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    margin-bottom: 12px;
    background: #222;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    margin-top: -20px;
}

.newsletter button {
    padding: 12px 22px;
    background: #AB2E7D;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
    font-family: 'Montserrat';
}

.newsletter button:hover {
    background: #7a1e59;
}

.footer-bottom {
    background: #0c0c0c;
    color: #ffffff !important;
    display: flex;
    justify-content: space-between;
    padding: 20px 80px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom p{
    color: #ffffff !important;
}
.footer-bottom a{
    color: #ffffff !important;
}
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

#footer-box {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7a1e59 !important;
    border: 1px solid #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s ease;
    color: white !important;
}

#footer-box a i {
    color: #ffffff !important;
    font-size: 40px;
}

#footer-box a:hover {
    background: #ffffff;
}

#footer-box a:hover i {
    color: #000;
}

@media(max-width: 900px) {
    .footer-section {
        grid-template-columns: 1fr 1fr;
        padding: 50px 30px;
        gap: 40px;
    }
}

@media(max-width: 600px) {
    .footer-section {
        grid-template-columns: 1fr;
        text-align: left;
        padding: 50px 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px 25px;
    }
}

/* ==================== Footer ==================== */


/* ============= HERO =================*/

.hero-section {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    font-family: "Syne", sans-serif;
    margin-top: 90px;
}

/* LEFT COLUMN */
.left-box {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 0px;   
}

.hero-item {
    background: #AB2E7D;
    padding: 25px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    transition: .3s ease;
    border-bottom: 1px solid white;
    cursor: pointer;
}

.hero-item h3{
    color: white;
    font-family: 'Montserrat';
    font-size: 30px;
    padding-bottom: 5px;
    font-weight: lighter;
}

.hero-item h3:hover{
    color: #AB2E7D;
}

.hero-item p{
color: white;
 font-family: 'Montserrat';
 font-size: 12px;
 padding-bottom: 10px;
 font-weight: lighter;
}

.hero-item p:hover{
  color: #AB2E7D !important;
}

.left-box .hero-item {
    text-align: left;
}

.hero-item:hover {
    background: rgb(255, 255, 255);
    color: #7a1e59 !important;
}
.hero-item:hover h3,
.hero-item:hover p {
    color: #7a1e59 !important;
}








/* RIGHT SIDE IMAGE */
.right-box {
    width: 65%;
    border-bottom: 1px solid white;
}

.right-box img {
    width: 100%;
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        gap: 0px;
        margin-top: 70px;
    }

    .left-box {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0px;
        
        justify-content: right !important;
        text-align: left !important;
    }

    .hero-item {
        background-color: white;
        width: 100%;
        padding: 20px;
        margin: 0;
        gap: 0px;
        border-bottom: 1px solid grey;
    }

    .hero-item h3{
    color: #7a1e59;
    font-family: 'Montserrat';
    font-size:20px;
    padding-bottom: 5px;
    font-weight: lighter;
    }

    .hero-item p{
    color: rgb(0, 0, 0);
    font-family: 'Montserrat';
    font-size: 12px;
    padding-bottom: 10px;
    font-weight: lighter;
    }

    .icon-circle {
    background: #AB2E7D !important; /* change to your preferred color */ 
    }

    .icon-circle i {
    color: #ffffff !important; /* icon color */
    font-size: 12px;
    }
    .right-box {
        width: 100%;
    }
}

.icon-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ffffff; /* change to your preferred color */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-circle i {
    color: #AB2E7D; /* icon color */
    font-size: 12px;
}

.intro-text{
    padding: 50px;
}

.intro-text h2{
    color: black;
    font-size: 26px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding-bottom: 20px;
}

.about-btn{
    padding: 10px;
    border: 1px solid #AB2E7D;
    color: #AB2E7D !important;
    border-radius: 5px;
    font-weight: 600;
}

.about-btn:hover{
    background-color: #AB2E7D;
    color: white !important;
    border-color: white;
}

@media (max-width:768px){
    .intro-text h2{
        font-size: 18px
    }

    .intro-text{
        padding-left: 20px;
    }
}

.stories{
   padding: 50px;
}

.three-stories{
    display: flex;
    gap: 40px;
}

.three-stories h4{
    font-family: 'Montserrat';
    font-size: 20px;
    margin-left: 15px;
}

.three-stories p{
    font-family: 'Montserrat';
    font-size: 16px;
    line-height:1;
    margin-top: 5px;
    margin-bottom: 20px;
    margin-left: 15px;
    color: #000;
}

.stories-title{
    font-family: 'Montserrat';
    text-align: center;
    font-weight: 400;
    font-size: 20px;
}

.stories-big-title{
    font-family: 'Montserrat';
    text-align: center;
    font-size: 30px;
    margin-bottom: 15px;
}

.story-btn{
    padding: 7px;
    width: 100%;
    border: 1px solid #AB2E7D;
    color: #AB2E7D !important;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 30px;
    font-size: 15px;
    padding-left: 15px;
    margin-left: 15px;
}

.story-btn:hover{
    background-color: #AB2E7D;
    color: white !important;
    border-color: white;
}

.box-one{
    background-color: rgb(250, 250, 250);
    padding-bottom: 20px;
    border-bottom: 8px solid #AB2E7D;
    
}

@media (max-width:768px) {
    .three-stories{
        display: flex;
        flex-wrap: wrap;
    }

    .stories{
   padding: 20px;
}
}

.getStarted{
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background-color: #AB2E7D;
    padding-top: 50px;
    padding-bottom: 50px;
}

.getStarted-text h3{
    font-family: 'Montserrat';
    font-size: 25px;
    color: white !important;
}

.getStartedBtn{
    padding: 7px;
    border: 1px solid #ffffff;
    color: #ffffff !important;
    border-radius: 5px;
    font-weight: 600;
    margin-top: 30px;
    font-size: 15px;
    padding-left: 15px;
    margin-left: 15px;
}

.getStartedBtn:hover{
    background-color: white;
    color:#AB2E7D !important;
}

@media(max-width:768px){
    .getStarted{
        display: flex;
        flex-wrap: wrap;
        padding: 30px;
    }

.getStarted-text h3{
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.getStartedBtn{
    margin-left: 70px;
    text-align: center;
    align-items: center;
}
}

.image-promise{
    background-image: url('images/first-story.jpg');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    background-color: #555555;
    margin: 45px;
    padding: 200px;
    color: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.title-promise-one{
    font-family: 'Montserrat';
    text-align: center;
    font-weight: 800;
    font-size: 20px;
    color: white;
}

.title-promise{
    font-family: 'Montserrat';
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    color: white;
}

.image-promise {
    min-height: 300px;
}

@media (max-width:768px) {
    .image-promise{
        margin: 15px;
        padding: 20px;
        align-content: center;
    }

   .title-promise-one{
    font-family: 'Montserrat';
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: white;
}

.title-promise{
    font-family: 'Montserrat';
    text-align: center;
    font-weight: 400;
    font-size: 17px;
    color: white;
}

}

/* =========== ABOUT US =============*/

.about-section{
    margin-top: 100px;
    padding: 50px;
}

.about-section h1{
    font-family: 'Montserrat';
    font-size:80px;
    font-weight: 400;
}

.about-section h2{
    color: black;
    font-size: 26px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding-bottom: 20px;
    margin-top: 20px;
}

.about-section-one h2{
    color: black;
    font-size: 26px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding-bottom: 20px;
    margin-top: -40px;
    padding-left: 15px;
    margin: 60px;
}
.about-img img{
    border-radius: 10px;
    
}
.about-img{
    text-align: center;
    border-radius: 5px;
}
.about-section-one {
  margin-top: -50px;
  padding-left: 10px;
  padding-right: 20px;
}
@media (max-width:768px){
    .about-section{
    margin-top: 50px;
    padding: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.about-section h1{
    font-family: 'Montserrat';
    font-size:30px;
    font-weight: 400;
}

.about-section-one {
  margin-top: 50px;
  padding: 50px;
  padding-left: 10px;
  padding-right: 20px;
}

.about-section h2{
    color: black;
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding-bottom: 20px;
    margin-top: 20px;
}

.about-section-one h2{
    color: black;
    font-size: 18px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding-bottom: -50px;
    margin-top: -40px;
    margin-left: -10px;
    margin-right: -10px;
    margin-bottom: -120px;
}

.about-section-one{
    margin: 10px;
}

.about-img{
    margin-top: -40px;
    margin-bottom: 0px;
}

.about-well{
  display:none;
  flex-wrap: wrap;  
  margin:20px;
}
.about-info-one-box{
    display: none;
}

.about-info-one{
    max-width: 500px;
}

}



@media(min-width:768px){
    .about-well{
    display:flex;
    margin: 90px;
    gap: 20px;
    margin-top: -25px;
    margin-bottom: -50px;
}

.about-info-one{
    width: 50%;
}
}


.about-info-one{
    width: 50%;
}

.about-info-one-box{
    width: 50%;
}

.kicker{
    font-family: "montserrat";
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #000;
    font-weight: 600;
}

#who-we-are{
    font-size: 15px;
    color: #000;
}

.about-info-one-box img{
    border-radius: 5px;
}

.under-image{
    margin-left: 20px;
    background-color: #e9e9e9;
    padding: 35px;
    width: 40%;
    margin-top: -200px;
    z-index: 500;
    position: absolute;
    border-radius: 5px;
}

.under-image h5{
    text-transform: uppercase;
    font-family: "montserrat";
    font-size: 30px;
    padding-right: 150px;
    font-weight: 500;
    margin-bottom: 15px;
}

.under-image p{
    margin-bottom: 15px;
}
.under-button{
    padding: 7px 14px;
    border-radius: 50px;
    background-color: #7a1e59;
    color: white !important;
}
.under-button:hover{
    background-color: #4d0532;
}



/*
.about-section{
    margin-top: 100px;
    padding: 50px;
}

.about-section-one{
    margin-top: 100px;
    padding: 50px;
}

.about-section h1{
    font-family: 'Montserrat';
    font-size:80px;
    font-weight: 400;
}

.about-section h2{
    color: black;
    font-size: 26px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding-bottom: 20px;
    margin-top: 20px;
}

.about-section-one h2{
    color: black;
    font-size: 26px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding-bottom: 20px;
    margin-top: -130px;
    padding-left: 15px;
}

.about-img img{
    border-radius: 10px;
    
}

.about-img{
    text-align: center;
    border-radius: 5px;
}

@media (max-width:768px){
    .about-section{
    margin-top: 50px;
    padding: 50px;
    padding-left: 20px;
    padding-right: 20px;
}

.about-section h1{
    font-family: 'Montserrat';
    font-size:30px;
    font-weight: 400;
}

.about-section-one {
  margin-top: 50px;
  padding: 50px;
  padding-left: 10px;
  padding-right: 20px;
}

.about-section h2{
    color: black;
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding-bottom: 20px;
    margin-top: 20px;
}

.about-section-one h2{
    color: black;
    font-size: 20px;
    font-family: 'Montserrat';
    font-weight: 500;
    padding-bottom: 20px;
    margin-top: -80px;
}

.about-img{
    margin-top: -40px;
    margin-bottom: 0px;
}
}

.about-info{
    display: flex;
    gap: 40px;
    padding: 66px; 
    margin-top: -150px;
}

.about-info-one{
    width: 50%;
    color: #000 !important;
}

@media (max-width:768px) {
    .about-info{
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 25px; 
    margin-top: -70px;
}
    .about-info-one{
    width: 100%;
    
}

.values-box{
   padding: 25px;
}
}

.values ul{
    padding-left: 20px;
    padding-top: 10px;
}

@media (min-width:768px) {
    .values-box{
    padding: 66px;
    margin-top: -100px;
     
}
}
*/

.white{
    position: relative;
    background-color: rgb(255, 255, 255) !important;
    color: #ffffff00;
    width: 100%;
    top: -5px;
    
}

@media (max-width:768px){
    .white{
        display:none;
    }
}

/*===================== SLIDE ======================*/

@media(max-width:768px){
    .service-slide{
        display: flex;
        flex-wrap: wrap;
        margin: 10px;
    }
    .slide-images{
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 75%;
}
    .slide-buttons{
        padding: 10px;
        
}
    .slide-buttons h1{
    font-family: "Montserrat";
    color: #000;
    font-size: 25px;
}
    .slide-buttons p{
    font-size: 15px;
    font-family: "Montserrat";
    color: #000;
    margin-top: 60px;
    margin-bottom: -30px;
}
    .icon-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #AB2E7D; /* change to your preferred color */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    display: none;
}
    .icon-button i {
    color: #ffffff; /* icon color */
    font-size: 12px;
}
    .slidedBtn{
   display: none;
}
.left-arrowBtn{
   background: #AB2E7D;
   padding: 9px 30px; 
   border-bottom-left-radius: 50px;
   border-top-left-radius: 50px;
   color: white;
   border-right: 1px solid white;
   font-size: 20px;
}
.right-arrowBtn{
   background: #AB2E7D;
   padding: 9px 30px; 
   border-bottom-right-radius: 50px;
   border-top-right-radius: 50px;
   color: white;
   border-left: 1px solid white;
   font-size: 20px;
}
.slider-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 5px;
  
}
.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  padding-top: -50x;
}
.slider-track img {
  width: 100%; /* 1 image fully visible */
}
.slider-track img.active {
  opacity: 1;
}
.my-arrows{
    position: absolute;
    display: inline-flex;
    margin-top: 10px;
    margin-bottom: 10px;
}
}

@media(min-width:768px){
.slide-images{
    display: inline-flex;
    gap: 20px;
    width: 75%;
}

.slide-buttons{
   width: 35%;
   border-left: 8px solid #7a1e59;
   padding: 10px;
}

.slide-buttons h1{
    padding-left: 40px;
    font-family: "Montserrat";
    color: #000;
}

.slide-buttons p{
    padding-left: 40px;
}

.icon-button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #AB2E7D; /* change to your preferred color */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.icon-button i {
    color: #ffffff; /* icon color */
    font-size: 12px;
}

.slidedBtn{
    padding: 7px 14px;
    border: 1px solid #222222 !important;
    background-color: #0c0c0c;
    color: #ffffff !important;
    border-radius: 60px;
    font-weight: 400;
    font-size: 15px;
    padding-left: 15px;
    margin-left: 40px;
    margin-top: 100px;
    text-align: center !important;
}

.slide-buttons .slidedBtn{
    margin-top: 100px;
}

.my-arrows{
    display: inline-flex;
    padding-left: 40px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.left-arrowBtn{
   background: #AB2E7D;
   padding: 9px 30px; 
   border-bottom-left-radius: 50px;
   border-top-left-radius: 50px;
   color: white;
   border-right: 1px solid white;
   font-size: 20px;
}

.right-arrowBtn{
   background: #AB2E7D;
   padding: 9px 30px; 
   border-bottom-right-radius: 50px;
   border-top-right-radius: 50px;
   color: white;
   border-left: 1px solid white;
   font-size: 20px;
}

.slider-wrapper {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-track img {
  width: 100%; /* 1 image fully visible */
}

.slider-track img.active {
  opacity: 1;
}
.service-slide{
    display: flex;
    padding: 50px;
    margin-top: -40px;
}
.my-mobile-arrows{
display: none;
}
}

/*===================== SLIDE ======================*/

.quote-img{
    border-radius: 10px;
    text-align: center;  
}
.quote-img img{
    border-radius: 10px;
}
@media (max-width:768px) {
    .quote-img img{
        border-radius: 5px;
    }
}
@media (max-width:768px){
.quote-img-mobile{
    text-align: center;
    margin: 6px;
    border-radius: 4px;
    margin-top: -15px;
}
.quote-img-mobile img{
    border-radius: 4px;
}

.quote-img{
    display: none;  
}
}
@media (min-width:768px){
    .quote-img-mobile{
        display: none;  
    }

    .mobile-slide{
        display: none;
    }
}

/* ============== CONTACT PAGE =================*/
.contact-hero{
    position: relative;
    margin-top: 90px;
    padding: 60px;
    background-image: url('../images/customer_service.jpg');
    background-color: #555;
    align-content: center;
    text-align: center;
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
}

.contact-hero h3{
    font-size: 50px;
    font-family: "montserrat";
    font-weight: 200;
    color: white;
    letter-spacing: 5px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.726); 
}

.contact-hero * {
    position: relative;
    z-index: 1;
}

@media (max-width:768px) {
    .contact-hero{
        margin-top: 60px;
        padding-bottom: 30px;
    }

    .contact-hero h3{
    font-size: 20px;
    font-weight: 400;
    }

    .second-contact-hero h3{
    font-size: 17px;
    font-family: "montserrat";
    font-weight: 400;
    color: rgb(0, 0, 0);
}
.second-contact-hero{
    background-color: #cfcfcf;
    padding: 20px;
    text-align: center;
}
}

@media(min-width:768px){
.second-contact-hero{
    background-color: #cfcfcf;
    padding: 40px;
    align-content: center;
    text-align: center;
}

.second-contact-hero h3{
    font-size: 30px;
    font-family: "montserrat";
    font-weight: 400;
    color: rgb(0, 0, 0);
}
}

.contact-box h5{
    font-size: 17px;
    font-family: "montserrat";
    font-weight: 400;
    color: black;
}


/* =========== Operating Hour ==============*/

.info-section {
    margin: 125px;
    margin-top: -30px;
}

@media (max-width:768px) {
    .info-section{
        display: none;
    }
}


.info-container {
    display: flex;
    gap: 30px;
    font-family: 'Montserrat';
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    width: 50%;
    text-align: left;
}

.card-box h5 {
    margin-bottom: 15px;
    font-size: 18px;
    font-family: 'Montserrat';
    color: #0c0c0c;
}

.chat-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #7a1e59; 
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white !important;
}

.chat-btn:hover {
    background: #1da851;
}

/* ============= BOXES ===================*/

.con-box {
    margin: 60px auto;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    margin-top: 20px;
}
.con-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-family: 'Montserrat', sans-serif;
    flex-wrap: wrap;
}
.con-info-box {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px 20px;
    width: 30%;
    min-width: 260px;
    background: #fff;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.con-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.con-info-box img {
    width: 70px;
    margin-bottom: 15px;
}
.con-info-box h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}
.con-info-box p {
    color: #555;
    line-height: 1.5;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}
/* Responsive */
@media (max-width: 768px) {
    .con-info {
        gap: 20px;
    }

    .con-info-box {
        width: 100%;
    }
}
.hello{
    text-align: center;
    margin-top: -100px;
}
/* ========= PORTFOLIO ============*/

.portfolio-hero{
    position: relative;
    margin-top: 90px;
    padding: 60px;
    background-image: url('../images/first-story.jpg');
    background-color: #555;
    align-content: center;
    text-align: center;
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
}
.portfolio-hero h3{
    font-size: 50px;
    font-family: "montserrat";
    font-weight: 200;
    color: white;
    letter-spacing: 5px;
}
.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.726); 
}
.portfolio-hero * {
    position: relative;
    z-index: 1;
}
@media (max-width:768px) {
    .portfolio-hero{
        margin-top: 50px;
        padding-bottom: 30px;
    }

    .portfolio-hero h3{
    font-size: 20px;
    font-weight: 400;
    }

    .second-portfolio-hero h3{
    font-size: 17px;
    font-family: "montserrat";
    font-weight: 400;
    color: rgb(0, 0, 0);
}
.second-portfolio-hero{
    background-color: #cfcfcf;
    padding: 20px;
    text-align: center;
}
}
@media(min-width:768px){
.second-portfolio-hero{
    background-color: #cfcfcf;
    padding: 40px;
    align-content: center;
    text-align: center;
}

.second-portfolio-hero h3{
    font-size: 30px;
    font-family: "montserrat";
    font-weight: 400;
    color: rgb(0, 0, 0);
}
}
.portfolio-section {
    padding: 20px 20px;
    text-align: center;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.portfolio-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}
.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform .3s ease;
}
/* Hover zoom */
.portfolio-item:hover img {
    transform: scale(1.1);
}
/* Responsive */
@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        
    }
}
@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* =========== KITCHENS SERVICES ===============*/
.kitchens {
    position: relative;
    background-image: url('../images/kitchens.jpg');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    margin: 40px;
    background-color: #250000;
    padding: 30px;
    border-radius: 10px;
}
.kitchen-one::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.726); 
    border-radius: 10px;
}
.kitchen-one * {
    position: relative;
    z-index: 1;
}
.kitchen-one h3{
    font-family: 'Montserrat';
    font-size: 35px;
    padding-right: 600px;
    color: white !important;
}
.kitchen-one p{
    font-family: 'Montserrat';
    font-size: 20px; 
    color: white;
    padding-right: 400px;
    margin-bottom: 50px;
}
.seemoreBtn {
    color: white !important;
    border: 1px solid white;
    padding: 7px 14px;
    border-radius: 5px;
    margin-top: -100px;
    margin-bottom: 50px;
}
.seemoreBtn:hover{
    background-color: white;
    color: black !important;
}
.kitchen-one h3,.kitchen-one p{
    margin-top: 10px;

}
@media (max-width:768px) {
    .kitchens{
        margin: 10px;
    }
    .kitchen-one h3{
    font-size: 25px;
    padding-right: 0px;
}
    .kitchen-one p{
    font-family: 'Montserrat';
    font-size: 12px; 
    color: white;
    padding-right: 0px;
    margin-bottom: 100px;
}
}
/* =========== KITCHENS SERVICES ===============*/
/* =========== BEDROOMS SERVICES ===============*/
.bedrooms {
    position: relative;
    background-image: url('../images/bedrooms.jpg');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    margin: 40px;
    background-color: #250000;
    padding: 30px;
    border-radius: 10px;
}
.bedrooms-one::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.726); 
    border-radius: 10px;
}
.bedrooms-one * {
    position: relative;
    z-index: 1;
}
.bedrooms-one h3{
    font-family: 'Montserrat';
    font-size: 35px;
    padding-right: 600px;
    color: white !important;
}
.bedrooms-one p{
    font-family: 'Montserrat';
    font-size: 20px; 
    color: white;
    padding-right: 400px;
    margin-bottom: 50px;
}
.seemoreBtn {
    color: white !important;
    border: 1px solid white;
    padding: 7px 14px;
    border-radius: 5px;
    margin-top: -100px;
    margin-bottom: 50px;
}
.seemoreBtn:hover{
    background-color: white;
    color: black !important;
}
.bedrooms-one h3,.bedrooms-one p{
    margin-top: 10px;

}
@media (max-width:768px) {
    .bedrooms{
        margin: 10px;
    }
    .bedrooms-one h3{
    font-size: 25px;
    padding-right: 0px;
}
    .bedrooms-one p{
    font-family: 'Montserrat';
    font-size: 12px; 
    color: white;
    padding-right: 0px;
    margin-bottom: 100px;
}
}
/* =========== BIC SERVICES ===============*/
.bic {
    position: relative;
    background-image: url('../images/BIC.jpg');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    margin: 40px;
    background-color: #250000;
    padding: 30px;
    border-radius: 10px;
}
.bic-one::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.726); 
    border-radius: 10px;
}
.bic-one * {
    position: relative;
    z-index: 1;
}
.bic-one h3{
    font-family: 'Montserrat';
    font-size: 35px;
    padding-right: 600px;
    color: white !important;
}
.bic-one p{
    font-family: 'Montserrat';
    font-size: 20px; 
    color: white;
    padding-right: 400px;
    margin-bottom: 50px;
}
.seemoreBtn {
    color: white !important;
    border: 1px solid white;
    padding: 7px 14px;
    border-radius: 5px;
    margin-top: -100px;
    margin-bottom: 50px;
}
.seemoreBtn:hover{
    background-color: white;
    color: black !important;
}
.bic-one h3,.bic-one p{
    margin-top: 10px;

}
@media (max-width:768px) {
    .bic{
        margin: 10px;
    }
    .bic-one h3{
    font-size: 25px;
    padding-right: 0px;
}
    .bic-one p{
    font-family: 'Montserrat';
    font-size: 12px; 
    color: white;
    padding-right: 0px;
    margin-bottom: 100px;
}
}
/* =========== BIC SERVICES ===============*/
/* =========== LIVING SPACE SERVICES ===============*/
.living-space {
    position: relative;
    background-image: url('../images/space.jpg');
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
    margin: 40px;
    background-color: #250000;
    padding: 30px;
    border-radius: 10px;
}
.space-one::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.726); 
    border-radius: 10px;
}
.space-one * {
    position: relative;
    z-index: 1;
}
.space-one h3{
    font-family: 'Montserrat';
    font-size: 35px;
    padding-right: 600px;
    color: white !important;
}
.space-one p{
    font-family: 'Montserrat';
    font-size: 20px; 
    color: white;
    padding-right: 400px;
    margin-bottom: 50px;
}
.seemoreBtn {
    color: white !important;
    border: 1px solid white;
    padding: 7px 14px;
    border-radius: 5px;
    margin-top: -100px;
    margin-bottom: 50px;
}
.seemoreBtn:hover{
    background-color: white;
    color: black !important;
}
.space-one h3,.space-one p{
    margin-top: 10px;

}
@media (max-width:768px) {
    .living-space{
        margin: 10px;
    }
    .space-one h3{
    font-size: 25px;
    padding-right: 0px;
}
    .space-one p{
    font-family: 'Montserrat';
    font-size: 12px; 
    color: white;
    padding-right: 0px;
    margin-bottom: 100px;
}

}
/* =========== LIVING SPACE SERVICES ===============*/
.centerBtn{
    text-align: center;
}

@media (max-width:768px) {
    .stick-footer{
    position: fixed;
    width: 100%;
    bottom: -6px;
}
}

@media (min-width:768px) {
    .stick-footer{
        display: none;
    }
}


/* ======= QUOTE ==========*/

.quote-hero{
    position: relative;
    margin-top: 90px;
    padding: 60px;
    background-image: url('../images/first-story.jpg');
    background-color: #555;
    align-content: center;
    text-align: center;
    background-size: cover;       
    background-position: center;  
    background-repeat: no-repeat; 
}
.quote-hero h3{
    font-size: 50px;
    font-family: "montserrat";
    font-weight: 200;
    color: white;
    letter-spacing: 5px;
}
.quote-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.726); 
}
.quote-hero * {
    position: relative;
    z-index: 1;
}
@media (max-width:768px) {
    .quote-hero{
        display: none;
    }

    .quote-section {
        max-width: 500px;
        margin: -10px auto 60px; /* overlaps upward slightly */

    }

}
@media (min-width:768px) {
    .que-image{
        display: none;
    }
}
.que-image{
    margin-top: 80px;
}
.quote-section {
    max-width: 900px;
  margin: -10px auto 60px; 
  background: #fff;
  padding: 40px 30px;
  border-radius: 5px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  position: relative;
  z-index: 2; 

}

.quote-section h3 {
  color: #AB2E7D;
  margin-bottom: 15px;
  font-family: "montserrat";
}
input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: "montserrat";
}
button {
  padding: 10px 20px;
  background: #AB2E7D;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "montserrat";
}
button:hover {
  background: #90276B;
}
.form-step {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.privacy-section{
    margin: 20px;
    text-align: center;
}
.terms-section{
    margin: 50px;
}
.terms-section h4{
    color: #000;
    font-family: "montserrat";
}
.terms-section p{
    font-size: 13px;
    color: #000;
}
.terms-section a{
    color: #7a1e59 !important;
}


@media (max-width:768px) {
    .terms-section{
    margin: 20px;
}
}




/* Hero Items */
.hero-item {
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.hero-item:hover {
  transform: translateX(5px);
}


/* Hidden before scroll */
.scroll-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* When visible */
.scroll-up.show {
    opacity: 1;
    transform: translateY(0);
}


.reviews-hero {
    text-align: center;
    padding: 90px 20px 60px;
    background: #f8f8f8;
    margin-top: 50px;
}

.reviews-hero h1 {
    font-size: 40px;
    font-weight: 700;
}

.reviews-hero p {
    font-size: 17px;
    margin-top: 10px;
    color: #555;
}

/* Grid */
.reviews-grid {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 25px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-header img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #ffcc00;
    font-size: 18px;
    margin: 10px 0;
}

.review-text {
    color: #555;
    line-height: 1.5;
}

/* Featured testimonial */
.featured-review {
    width: 85%;
    max-width: 900px;
    margin: 90px auto;
    text-align: center;
    padding: 50px;
    background: #dfdfdf;
    color: #fff;
    border-radius: 18px;
}

.featured-review p {
    font-size: 18px;
    margin: 20px 0;
    font-family: 'MONTSERRAT';
}




/* Scroll animation support */
.scroll-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.scroll-up.show {
    opacity: 1;
    transform: translateY(0);
}



/* Installation & Delivery section */
.install-delivery-section {
  padding: 60px 20px;
  background: #fff;
  color: #111;
}
.install-delivery-section .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.install-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

/* Left column */
.install-left h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.install-left .lead {
  color: #444;
  margin-bottom: 18px;
  font-size: 16px;
}
.install-highlights {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.install-highlights li {
  padding-left: 12px;
  position: relative;
  color: #333;
}
.install-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

/* Timeline */
.timeline { display: grid; gap: 16px; margin-bottom: 22px; }
.timeline-item { display: flex; gap: 14px; align-items: flex-start; }
.timeline-item .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--primary-color); margin-top: 8px;
}
.timeline-item h4 { margin: 0 0 6px 0; font-size: 16px; color: #222; }
.timeline-item p { margin: 0; color: #555; font-size: 14px; line-height: 1.5; }

/* CTA */
.install-cta { display: flex; gap: 14px; align-items: center; margin-top: 8px; }
.install-cta .quote-btn.small { padding: 10px 16px; border-radius: 40px; background: var(--primary-color); color: #fff; }
.install-cta .contact-link { color: var(--primary-color); text-decoration: underline; font-weight: 600; }

/* Right column */
.install-right { display: flex; flex-direction: column; gap: 20px; }
.accordion-group { background: #fafafa; border-radius: 10px; padding: 12px; box-shadow: 0 6px 18px rgba(0,0,0,0.04); }
.accordion-item + .accordion-item { margin-top: 8px; }

.accordion-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 15px;
  cursor: pointer;
  text-align: left;
  font-weight: 600;
  color: #222;
  transition: background .25s ease;
}
.accordion-head i { transition: transform .25s ease; color: var(--primary-color); }
.accordion-head[aria-expanded="true"] i { transform: rotate(180deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  padding: 0 15px;
  margin-top: 20px !important;
   margin-bottom: 20px !important;
  color: #444;
  font-size: 15px;
}
.accordion-body.open { padding: 10px 12px 12px 12px; }

/* Image */
.install-image img { width: 100%; border-radius: 8px; display: block; box-shadow: 0 8px 28px rgba(0,0,0,0.08); }

/* Responsive */
@media (max-width: 992px) {
  .install-grid { grid-template-columns: 1fr; }
  .install-right { order: 2; }
  .install-left { order: 1; }
  .install-left h2 { font-size: 28px; }
}

/* Scroll-up animation support (uses same classes you already have) */
.scroll-up { opacity: 0; transform: translateY(36px); transition: all 0.7s cubic-bezier(.2,.8,.2,1); }
.scroll-up.show { opacity: 1; transform: translateY(0); }


body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #2a2a2a;
}

/* Page header */
.id-header {
    text-align: center;
    padding: 60px 20px;
    background: #f6f6f6;
}

.id-header h1 {
    font-size: 34px;
    margin-bottom: 12px;
}

.id-header p {
    font-size: 16px;
    opacity: 0.8;
}

/* FAQ Section */
.id-section {
    max-width: 850px;
    margin: 50px auto;
    padding: 0 20px;
}

.section-title {
    font-size: 26px;
    margin-bottom: 30px;
    text-align: center;
}

/* FAQ Box */
.faq-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-box {
    border: 1px solid #e1e1e1;
    padding: 18px 22px;
    border-radius: 6px;
    background: #fff;
    transition: 0.3s ease;
}

.faq-box:hover {
    border-color: #7a1e59;
}

/* Question */
.faq-q {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
}

.faq-q i {
    transition: transform 0.3s ease;
}

/* Answer (hidden) */
.faq-a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    line-height: 1.6;
    transition: max-height 0.35s ease, opacity 0.3s ease;
}

/* Active */
.faq-box.active .faq-a {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.faq-box.active .faq-q i {
    transform: rotate(45deg);
    color: #7a1e59 ;
}


body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: #222;
}

/* Header */
.careers-header {
    text-align: center;
    padding: 20px 20px;
    background: #f6f6f6;
}

.careers-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.careers-header p {
    opacity: 0.8;
}

/* No jobs section */
.no-jobs {
    text-align: center;
    margin: 20px 20px;
}

.no-jobs h2 {
    font-size: 25px;
    margin-bottom: 10px;
}

.no-jobs p {
    opacity: 0.8;
    font-size: 16px;
}

/* Apply Section */
.apply-section {
    max-width: 700px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.apply-form {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.apply-form input,
.apply-form textarea {
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    font-size: 15px;
}

.apply-form button {
    background: #7a1e59;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.file-upload {
  display: inline-block;
  padding: 12px 25px;
  background-color: #202020;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload span {
  pointer-events: none;
}
