   /* Reset and Base Styles */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100vw;
  }
  
  body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    padding-top: 123px;
    background-color: #000;
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }
  
  /* Ensure no element causes horizontal scroll */
  img, video, iframe, .container, .hero-section, .offer-section, 
  .who-section, .showroom-section, .experience-section, .steps-section,
  .sections-wrapper, .full-width-green-wrapper {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* Navbar hide/show on scroll */
  .hide-nav {
    transform: translateY(-123px);
    transition: transform 0.3s ease;
  }
  
  .navbar, .top-bar {
    transition: transform 0.3s ease, background-color 0.3s ease, backdrop-filter 0.3s ease;
  }
  
  /* Make navbar background transparent when hidden */
  .navbar.transparent-bg {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .top-bar.transparent-bg {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Top Bar Styles */
  .top-bar {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    color: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 48px;
    display: flex;
    align-items: center;
  }
  
  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
  }
  
  .social-icons {
    display: flex;
    gap: 0.8rem;
    flex: 0 0 auto;
    align-items: center;
    height: 100%;
  }
  
  .social-icon {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .social-icon:hover {
    color: #4CAF50;
  }
  
  .booking-link {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    line-height: normal;
    white-space: nowrap;
    padding: 0 0.5rem;
    cursor: pointer;
    font-weight: 500;
  }
  
  .booking-link:hover {
    color: #fff;
  }
  
  .top-bar-spacer {
    flex: 0 0 auto;
    width: 100px;
    height: 100%;
  }

  /* Form Messages */
.form-message {
  padding: 15px 20px;
  border-radius: 12px;
  margin-top: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-message.success {
  background: rgba(139, 195, 74, 0.15);
  border: 1px solid #8BC34A;
  color: #8BC34A;
}

.form-message.error {
  background: rgba(255, 68, 68, 0.1);
  border: 1px solid #ff4444;
  color: #ff8888;
}

.form-message i {
  font-size: 1.1rem;
}
  
  /* Main Navbar Styles */
  .navbar {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    color: #fff;
    position: fixed;
    width: 100%;
    top: 48px;
    z-index: 999;
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: 75px;
    display: flex;
    align-items: center;
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
  }
  
  .navbar .logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    flex: 0 0 auto;
  }
  
  .navbar .logo-img {
    height: 75px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
  }
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    height: 100%;
    align-items: center;
  }
  
  .navbar .nav-links li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .navbar .nav-links li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
  }
  
  .navbar .nav-links li a:hover {
    color: #4CAF50;
  }
  
  /* Dropdown Menu */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 150px;
    border-radius: 4px;
    z-index: 999;
    margin-top: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }
  
  .dropdown::after {
    content: '';
    position: absolute;
    height: 20px;
    width: 100%;
    bottom: -20px;
    left: 0;
    background: transparent;
  }
  
  .dropdown-menu li {
    height: auto;
    display: block;
  }
  
  .dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    height: auto;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 500;
  }
  
  .dropdown-menu li a:hover {
    background-color: rgba(51, 51, 51, 0.6);
    color: #4CAF50 !important;
  }
  
  .dropdown:hover .dropdown-menu,
  .dropdown-menu:hover {
    display: block;
  }
   /* ===== DROPDOWN FIXES ===== */

/* Ensure navbar has proper z-index and overflow */
.navbar {
    overflow: visible !important;
    z-index: 1000;
  }
  
  .navbar .container {
    overflow: visible !important;
    position: relative;
  }
  
  /* Fix dropdown positioning */
  .dropdown {
    position: relative;
    overflow: visible !important;
  }
  
  /* Make sure dropdown menu appears above everything */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 10000 !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 0;
  }
  
  /* Fix hover trigger area - add a bridge so menu doesn't disappear */
  .dropdown::after {
    content: '';
    position: absolute;
    height: 20px;
    width: 100%;
    bottom: -20px;
    left: 0;
    background: transparent;
  }
  
  /* Desktop hover functionality */
  @media (min-width: 769px) {
    .dropdown:hover .dropdown-menu,
    .dropdown-menu:hover {
      display: block !important;
    }
  }
  
  /* Ensure dropdown items are clickable */
  .dropdown-menu li {
    display: block !important;
    width: 100%;
    height: auto !important;
  }
  
  .dropdown-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .dropdown-menu li a:hover {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50 !important;
    padding-left: 25px !important;
  }
  
  /* Fix for mobile - make sure dropdown doesn't break */
  @media (max-width: 768px) {
    .dropdown {
      position: static;
    }
    
    .dropdown-menu {
      position: static;
      display: none;
      width: 100%;
      padding-left: 2rem;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: none;
      margin-top: 0;
    }
    
    .dropdown.active .dropdown-menu {
      display: block !important;
    }
    
    .dropdown::after {
      display: none;
    }
  }
  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    height: 100%;
    justify-content: center;
    flex: 0 0 auto;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  }
  

  
  /* Hero Section */
  .hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    z-index: 1;
    overflow-x: hidden;
  }
  
  /* Fixed background container */
  .hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    transition: position 0.1s linear;
    will-change: transform;
    overflow-x: hidden;
  }
  
  .hero-background-wrapper.fixed {
    position: fixed;
    top: 0;
    height: 100vh;
  }
  
  #home {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
  }
  
  .hero-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
  }
  
  /* Gradient overlay at top */
  .hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, 
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.5) 50%,
      rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    pointer-events: none;
  }
  
  /* Fixed hero images */
  .hero-img {
    position: absolute;
    width: 100%;
    height: 110%;
    top: -5%;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation-duration: 8s, 8s;
    animation-timing-function: ease-in-out, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-play-state: running;
  }
  
  /* Images */
  .img1 { 
    background-image: url("../images/1.png"); 
    animation-delay: 0s; 
    animation-name: fadeCycle, panLeftToRight; 
  }
  .img2 { 
    background-image: url("../images/8.jpg"); 
    animation-delay: 2.67s; 
    animation-name: fadeCycle, panTopToBottom; 
  }
  .img3 { 
    background-image: url("../images/10.png"); 
    animation-delay: 5.34s; 
    animation-name: fadeCycle, panDiagonal; 
  }
  
  /* Fade animation */
  @keyframes fadeCycle {
    0% { opacity: 0; }
    4% { opacity: 1; }
    33% { opacity: 1; }
    37% { opacity: 0; }
    100% { opacity: 0; }
  }
  
  /* Fixed pan animations */
  @keyframes panLeftToRight {
    0% { transform: scale(1.05) translateX(-2%); }
    100% { transform: scale(1.15) translateX(2%); }
  }
  
  @keyframes panTopToBottom {
    0% { transform: scale(1.05) translateY(-5%); }
    100% { transform: scale(1.15) translateY(5%); }
  }
  
  @keyframes panDiagonal {
    0% { transform: scale(1.05) translate(-2%, -2%); }
    100% { transform: scale(1.15) translate(2%, 2%); }
  }
  
  /* Hero Content - Updated for proper centering */
  .hero-content {
      position: absolute; /* Changed from relative to absolute */
    z-index: 5;
    max-width: 800px;
    transition: opacity 0.2s ease-out;
    will-change: opacity;
    text-align: center;
    width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); /* Perfect centering */
    padding: 0;
  }
  
  .hero-content h5 {
      font-size: 2.9rem;
    margin-bottom: 0;
    text-shadow: 0 3px 10px rgba(0,0,0,0.2);
    font-weight: 200;
    line-height: 1.2;
    padding: 0.2rem 1rem;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: inline-block;
  }
  
  .hero-content p {
      font-size: 1.2rem;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0 1rem 0.2rem 1rem;
    margin: 0;
  }
  
  /* Contact Section */
  .contact-section {
    position: relative;
    top: 20vh;
    left: 0;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 5% 20px 5%;
    z-index: 20;
    pointer-events: none;
    overflow: hidden;
    margin-top: -20vh;
    transition: position 0.1s linear;
  }
  
  .contact-section.fixed {
    position: fixed;
    top: 123px;
    left: 0;
    width: 100%;
    height: calc(100vh - 123px);
    margin-top: 0;
    pointer-events: none;
    overflow: hidden;
  }
  
  /* Unified blur container */
  .contact-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    pointer-events: auto;
    
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.5);
    
    transform: translateY(100%);
    transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.3, 1);
    will-change: transform;
    
    max-height: 75vh;
    overflow: hidden;
    position: relative;
    z-index: 25;
  }
  
  .contact-container.visible {
    transform: translateY(0);
  }
  
  /* Make both sides equal width */
  .contact-container.with-left {
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
  }
  
  /* Left and right now take equal width */
  .contact-left {
    flex: 1;
    width: 50%;
    max-width: none;
    padding: 50px 50px;
    color: white;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .contact-left h1 {
    font-size: 72px;
    font-weight: 200;
    line-height: 1.1;
    margin-bottom: 15px;
    width: 100%;
    white-space: normal;
    word-break: break-word;
  }
  
  .contact-left p {
    font-size: 20px;
    line-height: 1.4;
    opacity: 0.95;
    font-weight: 400;
    width: 100%;
    max-width: 100%;
  }
  
  .contact-form {
    width: 50%;
    max-width: none;
    padding: 50px 50px;
    color: white;
    max-height: 75vh;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .contact-form::-webkit-scrollbar {
    width: 4px;
  }
  
  .contact-form::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
  }
  
  .contact-form::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  
  .contact-form label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px 20px;
    border-radius: 40px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    font-size: 15px;
    transition: all 0.3s ease;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.5);
  }
  
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .contact-form textarea {
    border-radius: 24px;
    resize: vertical;
    min-height: 80px;
    max-height: 150px;
  }
  
  .service-title {
    margin-top: 4px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .services {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 4px;
    background: rgba(0, 0, 0, 0.2);
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  .services label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    color: white;
    font-weight: 500;
  }
  
  .services input {
    width: auto;
    accent-color: #4CAF50;
    cursor: pointer;
    transform: scale(1.1);
  }
  
  button {
    margin-top: 8px;
    padding: 16px;
    border: none;
    border-radius: 40px;
    background: white;
    color: black;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  button:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }
  
  /* ===== WHAT WE OFFER Section ===== */
  .offer-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    z-index: 30;
    margin-top: 60vh;
    pointer-events: auto;
    box-shadow: 0 -20px 30px rgba(0, 0, 0, 0.5);
    overflow-x: hidden;
  }
  
  .offer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .offer-title {
    font-size: 56px;
    font-weight: 200;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: 2px;
    color: white;
  }
  
  /* Hide title on mobile */
  @media (max-width: 768px) {
    .offer-title {
      display: none;
    }
  }
  
  .offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    width: 100%;
  }
  
  .offer-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 10/9;
    display: block;
    text-decoration: none;
    color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #111;
  }
  
  .offer-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  }
  
  .offer-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .offer-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    bottom: 0;
    left: 0;
    will-change: transform;
  }
  
  .offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0.7) 100%);
    transition: background 0.4s ease;
    z-index: 2;
    pointer-events: none;
  }
  
  .offer-card:hover .offer-overlay {
    background: linear-gradient(to bottom, 
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.8) 100%);
  }
  
  .offer-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 30px 25px;
    width: 100%;
  }
  
  .offer-content h3 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }
  
  .learn-more {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-decoration: none;
  }
  
  .learn-more::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4CAF50;
    transition: width 0.3s ease;
  }
  
  .offer-card:hover .learn-more {
    color: #4CAF50;
  }
  
  .offer-card:hover .learn-more::after {
    width: 100%;
  }
  
  .landscape-img {
    background-image: url('../images/LL2.png');
  }
  
  .hardscape-img {
    background-image: url('../images/H.png');
  }
  
  .concrete-img {
    background-image: url('../images/D4.PNG');
  }
  
  /* Tablet Styles */
  @media (max-width: 992px) {
    body {
      padding-top: 110px;
    }
    
    #home {
      top: 110px;
    }
  
    .hero-background-wrapper.fixed {
      top: 0;
      height: 100vh;
    }
    
    .contact-section.fixed {
      top: 110px;
      height: calc(100vh - 110px);
    }
  
    .top-bar {
      height: 40px;
    }
    
    .navbar {
      top: 40px;
      height: 70px;
    }
  
    .offer-image {
      height: 140%;
    }
    
    .offer-section {
      margin-top: 38vh;
    }
  
    .contact-container {
      max-height: 70vh;
      max-width: 90%;
      transform: translateY(100%);
    }
  
    .contact-container.with-left {
      flex-direction: column;
      justify-content: flex-start;
      padding: 20px;
    }
  
    .contact-left {
      width: 100%;
      max-width: 100%;
      padding: 25px 20px 15px 20px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
  
    .contact-left h1 {
      font-size: 52px;
      white-space: normal;
      line-height: 1.1;
      margin-bottom: 10px;
    }
  
    .contact-left p {
      max-width: 100%;
      font-size: 18px;
    }
  
    .contact-form {
      width: 100%;
      padding: 25px 20px 30px 20px;
      border-left: none;
    }
    
    .contact-section {
      padding: 15px 4%;
    }
    
    .contact-container {
      border-radius: 28px;
    }
    
    .navbar .nav-links {
      position: absolute;
      top: 100%;
      left: -100%;
      flex-direction: column;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      transition: left 0.3s ease-in-out;
      padding: 0;
      margin: 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      max-height: calc(100vh - 110px);
      overflow-y: auto;
      height: auto;
      align-items: stretch;
    }
    
    .nav-links.active {
      left: 0;
    }
    
    .nav-links li {
      width: 100%;
      height: auto;
      display: block;
    }
    
    .nav-links li a {
      padding: 1rem 1.5rem;
      display: block;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      height: auto;
      font-size: 1rem;
      font-weight: 600;
    }
    
    .dropdown-menu {
      position: static;
      display: none;
      width: 100%;
      padding-left: 2rem;
      background-color: rgba(0, 0, 0, 0.9);
    }
    
    .dropdown.active .dropdown-menu {
      display: block;
    }
    
    .hamburger {
      display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
  }
  
  /* Mobile Styles - Updated for hero centering */
  @media (max-width: 768px) {
    .hero-content {
      position: absolute;
      left: 50%;
      top: 30%;
      transform: translate(-50%, -50%);
      width: 90%;
      padding: 0;
      margin: 0;
    }
    
    .hero-content h5 {
      font-size: 2.2rem;
      width: 100%;
      margin-bottom: 0.5rem;
    }
    
    .hero-content p {
      font-size: 0.95rem;
    }
  
    .contact-section {
      top: 15vh;
      margin-top: -15vh;
      padding: 15px 4%;
      min-height: 55vh;
    }
    
    .contact-section.fixed {
      top: 110px;
      height: calc(100vh - 110px);
    }
    
    .contact-container {
      background: rgba(0, 0, 0, 0.35);
      backdrop-filter: blur(12px) saturate(180%);
      -webkit-backdrop-filter: blur(12px) saturate(180%);
      max-height: 70vh;
      border-radius: 24px;
      max-width: 95%;
      transform: translateY(100%);
      transition: transform 1.2s cubic-bezier(0.3, 0.8, 0.4, 1);
    }
  
    .contact-left h1 {
      font-size: 42px;
      white-space: normal;
      margin-bottom: 8px;
    }
  
    .contact-left p {
      font-size: 16px;
    }
  
    .contact-form {
      padding: 20px 15px 25px 15px;
    }
    
    .services {
      gap: 12px;
      padding: 12px 16px;
    }
    
    .contact-form label {
      font-size: 12px;
    }
    
    .contact-form input,
    .contact-form textarea {
      padding: 12px 16px;
      font-size: 14px;
    }
    
    .service-title {
      font-size: 14px;
    }
    
    .services label {
      font-size: 13px;
    }
    
    button {
      padding: 14px;
      font-size: 15px;
    }
  
    .offer-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 450px;
      margin: 0 auto;
    }
    
    .offer-image {
      height: 200%;
    }
    
    .offer-content h3 {
      font-size: 32px;
    }
    
    .offer-card {
      aspect-ratio: 10/9;
      margin-bottom: 35px;
    }
    
    .offer-section {
      margin-top: 35vh;
    }
  }
  
  /* Small Mobile Styles */
  @media (max-width: 480px) {
  
      .hero-content {
          position: absolute;
      left: 50%;
      top: 20%;
      transform: translate(-50%, -50%);
    }
  
    .hero-content h5 {
      font-size: 1.8rem;
    }
    
    .hero-content p {
      font-size: 0.9rem;
    }
  
    .contact-section {
      padding: 8px 4%;
      top: 10vh;
      margin-top: -10vh;
      min-height: 50vh;
    }
  
    .contact-container {
      border-radius: 20px;
      max-height: 75vh;
      transform: translateY(100%);
    }
  
    .contact-container.with-left {
      padding: 12px;
    }
  
    .contact-left h1 {
      font-size: 32px;
    }
  
    .contact-left p {
      font-size: 14px;
      line-height: 1.4;
    }
  
    .contact-form {
      padding: 15px 12px 20px 12px;
    }
  
    .services {
      gap: 10px;
      padding: 10px 12px;
    }
    
    button {
      padding: 12px;
      font-size: 14px;
    }
    
    .services label {
      font-size: 12px;
      gap: 6px;
    }
    
    .services input {
      transform: scale(1);
    }
    
    .contact-form input,
    .contact-form textarea {
      padding: 10px 14px;
      font-size: 13px;
    }
    
    .offer-section {
      padding: 40px 4%;
    }
    
    .offer-image {
      height: 220%;
    }
    
    .offer-content {
      padding: 20px 15px;
    }
    
    .offer-content h3 {
      font-size: 28px;
      margin-bottom: 5px;
    }
    
    .learn-more {
      font-size: 14px;
    }
  }
  
      /* ===== WHO WE ARE Section ===== */
      .who-section {
        position: relative;
        width: 100%;
        background: #000;
        color: white;
        padding: 100px 5%;
        z-index: 30;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        overflow-x: hidden;
      }
  
      .who-container {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
      }
  
      .who-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
      }
  
      .who-video {
        position: relative;
      }
  
      .video-wrapper {
        position: relative;
        width: 100%;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
  
      .who-video-element {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 16/9;
        object-fit: cover;
        background: #111;
      }
  
      .who-content {
        padding: 20px 0;
      }
  
      .who-title {
        font-size: 56px;
        font-weight: 200;
        margin-bottom: 30px;
        letter-spacing: 2px;
        color: white;
        line-height: 1.1;
      }
  
      .who-text {
        font-size: 18px;
        line-height: 1.6;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.9);
        font-weight: 400;
      }
  
      .who-team-link {
        display: inline-block;
        color: #fff;
        font-weight: 600;
        font-size: 18px;
        letter-spacing: 0.5px;
        padding: 14px 32px;
        position: relative;
        transition: all 0.3s ease;
        text-decoration: none;
        margin-top: 10px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        background: transparent;
      }
  
      .who-team-link::after {
        display: none;
      }
  
      .who-team-link:hover {
        background: white;
        color: black;
        border-color: white;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
      }
  
      @media (max-width: 992px) {
        .who-section {
          padding: 80px 5%;
        }
        
        .who-grid {
          gap: 40px;
        }
        
        .who-title {
          font-size: 48px;
          margin-bottom: 25px;
        }
        
        .who-text {
          font-size: 17px;
          margin-bottom: 20px;
        }
        
        .who-team-link {
          font-size: 17px;
          padding: 13px 30px;
        }
      }
  
      @media (max-width: 768px) {
        .who-section {
          padding: 30px 0;
        }
        
        .who-grid {
          grid-template-columns: 1fr;
          gap: 25px;
          display: flex;
          flex-direction: column;
        }
        
        .who-content {
          order: 1;
          padding: 0 5%;
          text-align: center;
        }
        
        .who-video {
          order: 2;
          width: 100%;
        }
        
        .who-title {
          font-size: 42px;
          margin-bottom: 20px;
          text-align: center;
        }
        
        .who-text {
          font-size: 16px;
          margin-bottom: 18px;
          text-align: center;
        }
        
        .video-wrapper {
          border-radius: 0;
          border-left: none;
          border-right: none;
          width: 100%;
          box-shadow: none;
        }
        
        .who-video-element {
          width: 100%;
          border-radius: 0;
        }
        
        .who-team-link {
          font-size: 16px;
          margin-top: 15px;
          margin-bottom: 25px;
          display: inline-block;
          padding: 14px 32px;
          border: 2px solid rgba(255, 255, 255, 0.3);
          border-radius: 50px;
          background: transparent;
          color: white;
          font-weight: 600;
          letter-spacing: 0.5px;
          transition: all 0.3s ease;
          text-decoration: none;
        }
        
        .who-team-link::after {
          display: none;
        }
        
        .who-team-link:hover {
          background: white;
          color: black;
          border-color: white;
          transform: translateY(-2px);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
      }
  
      @media (max-width: 480px) {
        .who-section {
          padding: 20px 0;
        }
        
        .who-content {
          padding: 0 4%;
          text-align: center;
        }
        
        .who-title {
          font-size: 32px;
          margin-bottom: 15px;
          text-align: center;
        }
        
        .who-text {
          font-size: 15px;
          line-height: 1.5;
          margin-bottom: 15px;
          text-align: center;
        }
        
        .who-grid {
          gap: 20px;
        }
        
        .who-team-link {
          font-size: 15px;
          padding: 12px 28px;
          margin-bottom: 20px;
        }
      }
  
      /* ===== SHOWROOM Section ===== */
      .showroom-section {
        position: relative;
        width: 100%;
        background: #000;
        color: white;
        padding: 100px 5%;
        z-index: 30;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 50vh;
        display: flex;
        align-items: center;
        overflow-x: hidden;
      }
  
      .showroom-container {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
      }
  
      .showroom-content {
        width: 50%;
      }
  
      .showroom-title {
        font-size: 38px;
        font-weight: 700;
        letter-spacing: 2px;
        line-height: 1.2;
        color: white;
        text-transform: uppercase;
      }
  
      @media (max-width: 768px) {
        .showroom-section {
          padding: 60px 5%;
          min-height: 30vh;
        }
        
        .showroom-content {
          width: 100%;
          text-align: left;
        }
        
        .showroom-title {
          font-size: 22px;
        }
      }
  
      @media (max-width: 480px) {
        .showroom-title {
          font-size: 22px;
        }
      }
  
      /* ===== SHOWROOM EXPERIENCE Section ===== */
      .experience-section {
        position: relative;
        width: 100%;
        background: #000;
        color: white;
        padding: 100px 5%;
        z-index: 40;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: -1px;
        overflow-x: hidden;
      }
  
      .experience-container {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
      }
  
      .experience-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
      }
  
      .experience-image {
        position: relative;
      }
  
      .image-wrapper {
        position: relative;
        width: 100%;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
  
      .showroom-img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        background: #111;
      }
  
      .experience-cards {
        display: flex;
        flex-direction: column;
        gap: 30px;
      }
  
      .experience-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 35px;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
      }
  
      .experience-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        background: rgba(255, 255, 255, 0.05);
      }
  
      .card-number {
        font-size: 14px;
        font-weight: 600;
        color: #4CAF50;
        letter-spacing: 2px;
        margin-bottom: 15px;
      }
  
      .card-text {
        font-size: 17px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 25px;
        font-weight: 400;
      }
  
      .card-icon {
        text-align: right;
        font-size: 28px;
        color: #4CAF50;
        opacity: 0.7;
        transition: opacity 0.3s ease;
      }
  
      .experience-card:hover .card-icon {
        opacity: 1;
      }
  
      @media (max-width: 992px) {
        .experience-section {
          padding: 80px 5%;
        }
        
        .experience-grid {
          gap: 40px;
        }
        
        .experience-card {
          padding: 30px;
        }
        
        .card-text {
          font-size: 16px;
          line-height: 1.6;
        }
        
        .card-icon {
          font-size: 26px;
        }
      }
  
      @media (max-width: 768px) {
        .experience-section {
          padding: 50px 0;
          position: relative;
          z-index: 50;
          background: #000;
          min-height: auto;
        }
        
        .experience-grid {
          grid-template-columns: 1fr;
          gap: 30px;
          display: flex;
          flex-direction: column;
        }
        
        .experience-image {
          order: 1;
          width: 100%;
          padding: 0 5%;
        }
        
        .image-wrapper {
          border-radius: 20px;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        }
        
        .showroom-img {
          aspect-ratio: 16/9;
        }
        
        .experience-cards {
          order: 2;
          width: 100%;
          padding: 0 5%;
          gap: 20px;
        }
        
        .experience-card {
          padding: 30px 25px;
          border-radius: 20px;
          background: rgba(0, 0, 0, 0.95);
          backdrop-filter: blur(10px);
          -webkit-backdrop-filter: blur(10px);
          border: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .card-text {
          font-size: 15px;
          margin-bottom: 20px;
        }
        
        .card-icon {
          font-size: 24px;
        }
      }
  
      @media (max-width: 480px) {
        .experience-section {
          padding: 40px 0;
        }
        
        .experience-image {
          padding: 0 4%;
        }
        
        .experience-cards {
          padding: 0 4%;
          gap: 15px;
        }
        
        .experience-card {
          padding: 25px 20px;
        }
        
        .card-number {
          font-size: 12px;
          margin-bottom: 10px;
        }
        
        .card-text {
          font-size: 14px;
          line-height: 1.5;
          margin-bottom: 18px;
        }
        
        .card-icon {
          font-size: 22px;
        }
      }
  
      /* ===== LAST SECTION ===== */
      .last-section {
        position: relative;
        width: 100%;
        background: #000;
        color: white;
        padding: 100px 5%;
        z-index: 45;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        visibility: visible;
        opacity: 1;
        min-height: 100vh;
      }
  
      .last-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
      }
  
      .last-card-wrapper {
        width: 100%;
      }
  
      .last-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 24px;
        padding: 40px;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        width: 100%;
        box-sizing: border-box;
      }
  
      .last-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        background: rgba(255, 255, 255, 0.05);
      }
  
      .last-image-wrapper {
        position: relative;
        width: 100%;
      }
  
      .last-image {
        position: relative;
        width: 100%;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.1);
      }
  
      .last-img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        background: #111;
      }
  
      @media (max-width: 992px) {
        .last-section {
          padding: 80px 5%;
        }
        
        .last-grid {
          gap: 40px;
        }
        
        .last-card {
          padding: 35px;
        }
      }
  
      @media (max-width: 768px) {
        .last-section {
          padding: 50px 5%;
          min-height: auto;
        }
        
        .last-grid {
          grid-template-columns: 1fr;
          gap: 30px;
          display: flex;
          flex-direction: column;
        }
        
        .last-card-wrapper {
          order: 1;
          width: 100%;
          margin: 0;
          padding: 0;
        }
        
        .last-image-wrapper {
          order: 2;
          width: 100%;
          margin: 0;
          padding: 0;
        }
        
        .last-card {
          padding: 30px 25px;
        }
        
        .last-img {
          aspect-ratio: 16/9;
        }
      }
  
      @media (max-width: 480px) {
        .last-section {
          padding: 40px 4%;
        }
        
        .last-card {
          padding: 25px 20px;
        }
      }
  
  /* Last section image max height - responsive */
  .last-section .last-image-wrapper .showroom-img.last-img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  /* Adjust for smaller screens if needed */
  @media (max-width: 768px) {
    .last-section .last-image-wrapper .showroom-img.last-img {
      max-height: 250px;
    }
  }
  
  @media (max-width: 480px) {
    .last-section .last-image-wrapper .showroom-img.last-img {
      max-height: 200px;
    }
  }
      /* ===== STEP BY STEP Section ===== */
      .steps-section {
        position: relative;
        width: 100%;
        background: #000;
        color: white;
        padding: 100px 5%;
        z-index: 30;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        overflow-x: hidden;
      }
  
      .steps-container {
        max-width: 1400px;
        width: 100%;
        margin: 0 auto;
      }
  
      .steps-title {
        font-size: 56px;
        font-weight: 200;
        margin-bottom: 60px;
        text-align: center;
        letter-spacing: 2px;
        color: white;
      }
  
      .steps-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        width: 100%;
      }
  
      .step-card {
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 24px;
        padding: 40px 30px;
        transition: all 0.3s ease;
        text-align: left;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
      }
  
      .step-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        background: rgba(255, 255, 255, 0.02);
      }
  
      .step-icon {
        font-size: 48px;
        color: white;
        margin-bottom: 25px;
        opacity: 0.9;
      }
  
      .step-heading {
        font-size: 22px;
        font-weight: 600;
        margin-bottom: 15px;
        color: white;
        letter-spacing: 1px;
      }
  
      .step-text {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 400;
      }
  
      @media (max-width: 992px) {
        .steps-section {
          padding: 80px 5%;
        }
        
        .steps-title {
          font-size: 48px;
          margin-bottom: 50px;
        }
        
        .steps-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
        }
        
        .step-card {
          padding: 35px 25px;
        }
        
        .step-icon {
          font-size: 42px;
        }
        
        .step-heading {
          font-size: 20px;
        }
      }
  
      @media (max-width: 768px) {
        .steps-section {
          padding: 60px 5%;
        }
        
        .steps-title {
          font-size: 42px;
          margin-bottom: 40px;
        }
        
        .steps-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        
        .step-card {
          padding: 30px 25px;
        }
        
        .step-icon {
          font-size: 40px;
          margin-bottom: 20px;
        }
        
        .step-heading {
          font-size: 20px;
          margin-bottom: 12px;
        }
        
        .step-text {
          font-size: 15px;
          line-height: 1.5;
        }
      }
  
      @media (max-width: 480px) {
        .steps-section {
          padding: 50px 4%;
        }
        
        .steps-title {
          font-size: 32px;
          margin-bottom: 30px;
        }
        
        .step-card {
          padding: 25px 20px;
        }
        
        .step-icon {
          font-size: 36px;
          margin-bottom: 15px;
        }
        
        .step-heading {
          font-size: 18px;
          margin-bottom: 10px;
        }
        
        .step-text {
          font-size: 14px;
        }
      }
  
      /* ===== FULL WIDTH GREEN WRAPPER ===== */
      .full-width-green-wrapper {
        width: 100%;
        position: relative;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
        background: transparent;
        overflow-x: hidden;
        display: block;
        visibility: visible;
        opacity: 1;
      }
  /* ===== FULL WIDTH GREEN WRAPPER ===== */
  .full-width-green-wrapper {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    background: transparent;
    overflow: visible;
    display: block;
    visibility: visible;
    opacity: 1;
    z-index: 100;
  }
  /* ===== DESIGN PROCESS Section - Black to Green Gradient with Images ===== */
  .design-process-section {
    width: 100%;
    background: linear-gradient(180deg, #000000 0%, #0a2e0a 15%, #1a4a1a 40%, #2a6b2a 70%, #000000 100%);
    color: white;
    padding: 100px 5% 60px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    display: block;
    visibility: visible;
    opacity: 1;
    position: relative;
    z-index: 101;
    min-height: auto;
  }
  
  .design-process-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 102;
  }
  
  .design-process-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .design-process-text {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto 50px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  .design-process-button-wrapper {
    text-align: center;
    margin-bottom: 80px;
  }
  
  .design-process-button {
    display: inline-block;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1.5px;
    padding: 18px 45px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    background: transparent;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .design-process-button:hover {
    background: white;
    color: #1e4a1e;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }
  
  /* Image Container - Two images side by side */
  .design-process-images {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  
  .design-process-img-wrapper {
    flex: 1;
    min-width: 250px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: transform 0.4s ease;
  }
  
  .design-process-img-wrapper:hover {
    transform: translateY(-10px);
  }
  
  .design-process-img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .design-process-section {
      padding: 70px 5% 50px 5%;
    }
    
    .design-process-title {
      font-size: 32px;
      margin-bottom: 25px;
    }
    
    .design-process-text {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 35px;
    }
    
    .design-process-button {
      font-size: 15px;
      padding: 14px 30px;
    }
    
    .design-process-button-wrapper {
      margin-bottom: 50px;
    }
    
    .design-process-images {
      gap: 20px;
    }
    
    .design-process-img-wrapper {
      min-width: 200px;
    }
  }
  
  @media (max-width: 480px) {
    .design-process-section {
      padding: 60px 4% 40px 4%;
    }
    
    .design-process-title {
      font-size: 26px;
      margin-bottom: 20px;
    }
    
    .design-process-text {
      font-size: 15px;
      line-height: 1.5;
      margin-bottom: 30px;
    }
    
    .design-process-button {
      font-size: 14px;
      padding: 12px 25px;
    }
    
    .design-process-button-wrapper {
      margin-bottom: 40px;
    }
    
    .design-process-images {
      flex-direction: column;
      gap: 15px;
      align-items: center;
    }
    
    .design-process-img-wrapper {
      width: 100%;
      max-width: 350px;
    }
  }
  
  
  
  
  
  
  
  
  
  /* ===== TESTIMONIALS Section ===== */
  .testimonials-section {
    position: relative;
    width: 100%;
    background: #000;
    color: white;
    padding: 100px 5%;
    z-index: 30;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: hidden;
  }
  
  .testimonials-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
  }
  
  .testimonials-title {
    font-size: 56px;
    font-weight: 200;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: 2px;
    color: white;
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
  }
  
  .testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(76, 175, 80, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
  }
  
  .testimonial-quote {
    font-size: 60px;
    line-height: 1;
    color: #4CAF50;
    opacity: 0.3;
    margin-bottom: 20px;
    font-family: serif;
  }
  
  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-style: italic;
  }
  
  .testimonial-stars {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 18px;
    letter-spacing: 3px;
  }
  
  .testimonial-author {
    font-weight: 600;
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
  }
  
  .testimonial-location {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* Tablet Styles */
  @media (max-width: 992px) {
    .testimonials-section {
      padding: 80px 5%;
    }
    
    .testimonials-title {
      font-size: 48px;
      margin-bottom: 50px;
    }
    
    .testimonials-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px;
    }
    
    .testimonial-card {
      padding: 35px 25px;
    }
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .testimonials-section {
      padding: 60px 5%;
    }
    
    .testimonials-title {
      font-size: 42px;
      margin-bottom: 40px;
    }
    
    .testimonials-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 500px;
      margin: 0 auto;
    }
    
    .testimonial-card {
      padding: 30px 25px;
    }
    
    .testimonial-quote {
      font-size: 48px;
      margin-bottom: 15px;
    }
    
    .testimonial-text {
      font-size: 15px;
      line-height: 1.6;
    }
  }
  
  /* Small Mobile Styles */
  @media (max-width: 480px) {
    .testimonials-section {
      padding: 50px 4%;
    }
    
    .testimonials-title {
      font-size: 32px;
      margin-bottom: 30px;
    }
    
    .testimonial-card {
      padding: 25px 20px;
    }
    
    .testimonial-quote {
      font-size: 40px;
      margin-bottom: 12px;
    }
    
    .testimonial-text {
      font-size: 14px;
      line-height: 1.5;
      margin-bottom: 20px;
    }
    
    .testimonial-stars {
      font-size: 14px;
      margin-bottom: 15px;
    }
  }
  
  
  
  /* ===== FOOTER SECTION ===== */
  .footer {
    background: #0a0a0a;
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 30;
    margin-top: -1px;
  }
  
  .footer-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 60px;
  }
  
  .footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
  }
  
  .footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4CAF50;
  }
  
  .footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 12px;
  }
  
  .footer-col a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    transition: all 0.3s ease;
  }
  
  .footer-col a:hover {
    color: #4CAF50;
    transform: translateX(5px);
  }
  
  .footer-contact-info {
    margin-top: 20px;
  }
  
  .footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
  }
  
  .footer-contact-info i {
    width: 20px;
    color: #4CAF50;
    font-size: 16px;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
  }
  
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-bottom: 0;
  }
  
  .footer-social a:hover {
    background: #4CAF50;
    transform: translateY(-3px);
  }
  
  .footer-social a i {
    font-size: 16px;
    color: white;
  }
  
  .footer-social a:hover i {
    color: white;
  }
  
  .footer-service-area {
    margin-top: 10px;
  }
  
  .footer-service-area p {
    font-size: 14px;
    margin-bottom: 8px;
  }
  
  .footer-service-area i {
    color: #4CAF50;
    margin-right: 8px;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
  }
  
  .footer-designed {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
  }
  
  .footer-designed a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline;
    margin: 0;
  }
  
  .footer-designed a:hover {
    color: #4CAF50;
    transform: none;
  }
  
  /* Tablet Styles */
  @media (max-width: 992px) {
    .footer {
      padding: 60px 5% 30px;
    }
    
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      margin-bottom: 50px;
    }
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .footer {
      padding: 50px 5% 25px;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 35px;
      margin-bottom: 40px;
      text-align: center;
    }
    
    .footer-col h4::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-social {
      justify-content: center;
    }
    
    .footer-contact-info p {
      justify-content: center;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 10px;
      padding-top: 25px;
    }
  }
  
  /* Small Mobile Styles */
  @media (max-width: 480px) {
    .footer {
      padding: 40px 4% 20px;
    }
    
    .footer-grid {
      gap: 30px;
    }
    
    .footer-col h4 {
      font-size: 16px;
      margin-bottom: 20px;
    }
    
    .footer-col p, .footer-col a {
      font-size: 13px;
    }
    
    .footer-social a {
      width: 34px;
      height: 34px;
    }
  }







  /* ===== DROPDOWN FIXES ===== */

/* Ensure navbar has proper z-index and overflow */
.navbar {
    overflow: visible !important;
    z-index: 1000;
  }
  
  .navbar .container {
    overflow: visible !important;
    position: relative;
  }
  
  /* Fix dropdown positioning */
  .dropdown {
    position: relative;
    overflow: visible !important;
  }
  
  /* Make sure dropdown menu appears above everything */
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    z-index: 10000 !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 0;
  }
  
  /* Fix hover trigger area - add a bridge so menu doesn't disappear */
  .dropdown::after {
    content: '';
    position: absolute;
    height: 20px;
    width: 100%;
    bottom: -20px;
    left: 0;
    background: transparent;
  }
  
  /* Desktop hover functionality */
  @media (min-width: 769px) {
    .dropdown:hover .dropdown-menu,
    .dropdown-menu:hover {
      display: block !important;
    }
  }
  
  /* Ensure dropdown items are clickable */
  .dropdown-menu li {
    display: block !important;
    width: 100%;
    height: auto !important;
  }
  
  .dropdown-menu li a {
    display: block !important;
    padding: 10px 20px !important;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
  }
  
  .dropdown-menu li a:hover {
    background-color: rgba(76, 175, 80, 0.2);
    color: #4CAF50 !important;
    padding-left: 25px !important;
  }
  
  /* Fix for mobile - make sure dropdown doesn't break */
  @media (max-width: 768px) {
    .dropdown {
      position: static;
    }
    
    .dropdown-menu {
      position: static;
      display: none;
      width: 100%;
      padding-left: 2rem;
      background-color: rgba(0, 0, 0, 0.8);
      box-shadow: none;
      margin-top: 0;
    }
    
    .dropdown.active .dropdown-menu {
      display: block !important;
    }
    
    .dropdown::after {
      display: none;
    }
  }
























/* ===== ABOUT PAGE STYLES ===== */

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -1px;
  }
  
  .page-hero-content h1 {
    font-size: 4rem;
    font-weight: 200;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* About Main */
  .about-main {
    padding: 100px 5%;
    background: #000;
  }
  
  .about-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-text h2 {
    font-size: 2.8rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: #ffffff;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
  }
  
  .about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8BC34A;
  }
  
  .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Mission Section */
  .mission-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .mission-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .mission-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
  }
  
  .mission-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 195, 74, 0.3);
    background: rgba(255, 255, 255, 0.05);
  }
  
  .mission-icon {
    font-size: 3rem;
    color: #8BC34A;
    margin-bottom: 20px;
  }
  
  .mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffffff;
  }
  
  .mission-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  /* Single Team Member - Founder Section */
.team-grid-single {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.team-card-single {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 50px 40px;
  transition: all 0.3s ease;
  width: 100%;
}

.team-card-single:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 195, 74, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.team-card-single .team-image {
  width: 220px;
  height: 220px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #8BC34A;
}

.team-card-single .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-single h4 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.team-card-single .team-title {
  color: #8BC34A;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 600;
}

.team-card-single .team-bio {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .team-card-single {
    padding: 35px 25px;
  }
  
  .team-card-single .team-image {
    width: 180px;
    height: 180px;
  }
  
  .team-card-single h4 {
    font-size: 1.5rem;
  }
  
  .team-card-single .team-bio {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .team-card-single {
    padding: 25px 20px;
  }
  
  .team-card-single .team-image {
    width: 150px;
    height: 150px;
  }
  
  .team-card-single h4 {
    font-size: 1.3rem;
  }
}
  
  /* Why Choose Section */
  .why-choose-section {
    padding: 100px 5%;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .why-choose-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .why-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
  }
  
  .why-item:hover {
    transform: translateY(-5px);
    border-color: #8BC34A;
  }
  
  .why-icon {
    font-size: 2.5rem;
    color: #8BC34A;
    margin-bottom: 20px;
  }
  
  .why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .why-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  /* About CTA */
  .about-cta {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0a2e0a, #000);
    text-align: center;
  }
  
  .about-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .about-cta-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
  }
  
  .about-cta-container .btn-primary {
    display: inline-block;
    background: #8BC34A;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .about-cta-container .btn-primary:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .about-grid, .mission-container, .team-grid, .why-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .page-hero-content h1 {
      font-size: 3rem;
    }
    
    .section-title {
      font-size: 2.5rem;
    }
  }
  
  @media (max-width: 768px) {
    .about-grid, .mission-container, .team-grid, .why-grid {
      grid-template-columns: 1fr;
    }
    
    .page-hero {
      min-height: 300px;
    }
    
    .page-hero-content h1 {
      font-size: 2.2rem;
    }
    
    .about-text h2 {
      font-size: 2rem;
      text-align: center;
    }
    
    .about-stats {
      justify-content: center;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .about-cta-container h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .page-hero-content h1 {
      font-size: 1.8rem;
    }
    
    .stat-number {
      font-size: 2rem;
    }
    
    .team-image {
      width: 150px;
      height: 150px;
    }
  }







































  /* ===== LANDSCAPE PAGE STYLES ===== */

/* Hero Section */
.landscape-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/LL1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -1px;
  }
  
  .landscape-hero-content h1 {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .landscape-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
  }
  
  /* Intro Section */
  .landscape-intro {
    padding: 100px 5%;
    background: #000;
  }
  
  .landscape-intro-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .landscape-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .landscape-intro-text .intro-tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
  }
  
  .landscape-intro-text .intro-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #8BC34A;
    margin-bottom: 30px;
    border-left: 3px solid #8BC34A;
    padding-left: 20px;
  }
  
  .explore-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #8BC34A;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: gap 0.3s ease;
  }
  
  .explore-link:hover {
    gap: 15px;
    color: #ffffff;
  }
  
  .landscape-intro-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Expert Landscaping Section */
  .expert-landscaping {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .expert-landscaping-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .expert-landscaping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .expert-landscaping-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .expert-landscaping-text h2 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 2px;
  }
  
  .expert-landscaping-text h3 {
    font-size: 1.3rem;
    color: #8BC34A;
    margin-bottom: 25px;
    font-weight: 500;
  }
  
  .expert-landscaping-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
  }
  
  /* Our Services Section */
  .our-services {
    padding: 100px 5%;
    background: #000;
  }
  
  .our-services-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
  }
  
  .service-block.reverse {
    direction: rtl;
  }
  
  .service-block.reverse .service-block-content {
    direction: ltr;
  }
  
  .service-block-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
  }
  
  .service-block-image img:hover {
    transform: scale(1.02);
  }
  
  .service-block-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #8BC34A;
    font-weight: 500;
  }
  
  .service-block-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
  }
  
  /* Why Choose Landscape Section */
  .why-choose-landscape {
    padding: 100px 5%;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .why-choose-landscape-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
  }
  
  .benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    border-color: #8BC34A;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .benefit-card i {
    font-size: 2.5rem;
    color: #8BC34A;
    margin-bottom: 20px;
  }
  
  .benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .benefit-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  /* Project Showcase */
  .project-showcase {
    padding: 100px 5%;
    background: #000;
  }
  
  .project-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
  }
  
  .showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
  }
  
  .showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .showcase-item:hover img {
    transform: scale(1.1);
  }
  
  .showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .showcase-item:hover .showcase-overlay {
    transform: translateY(0);
  }
  
  .showcase-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  /* Landscape CTA */
 /* Landscape CTA with Background Image */
.landscape-cta {
  position: relative;
  padding: 20px 5%;
  text-align: center;
  background: url('../images/next-image.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.landscape-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 30, 0, 0.8));
  z-index: 1;
}

.landscape-cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.landscape-cta-container h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #ffffff;
}

.landscape-cta-container p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.landscape-cta-container .btn-primary {
  display: inline-block;
  background: #8BC34A;
  color: #000;
  padding: 16px 45px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.landscape-cta-container .btn-primary:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
  
  .landscape-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .landscape-cta-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
  }
  
  .landscape-cta-container .btn-primary {
    display: inline-block;
    background: #8BC34A;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .landscape-cta-container .btn-primary:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .landscape-intro-grid,
    .expert-landscaping-grid,
    .service-block,
    .service-block.reverse {
      grid-template-columns: 1fr;
      direction: ltr;
    }
    
    .benefits-grid,
    .showcase-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .landscape-hero-content h1 {
      font-size: 3.5rem;
    }
    
    .expert-landscaping-text h2 {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .landscape-hero {
      min-height: 400px;
    }
    
    .landscape-hero-content h1 {
      font-size: 2.5rem;
      letter-spacing: 3px;
    }
    
    .landscape-hero-content p {
      font-size: 1rem;
    }
    
    .benefits-grid,
    .showcase-grid {
      grid-template-columns: 1fr;
    }
    
    .service-block-content h3 {
      font-size: 1.5rem;
    }
    
    .expert-landscaping-text h2 {
      font-size: 1.8rem;
    }
    
    .expert-landscaping-text h3 {
      font-size: 1.1rem;
    }
    
    .landscape-cta-container h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .landscape-hero-content h1 {
      font-size: 2rem;
    }
    
    .intro-tagline {
      font-size: 1rem;
    }
    
    .intro-quote {
      font-size: 1.1rem;
    }
  }




























  /* ===== HARDSCAPE PAGE STYLES ===== */

/* Hero Section */
.hardscape-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/8.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: -1px;
  }
  
  .hardscape-hero-content h1 {
    font-size: 5rem;
    font-weight: 200;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .hardscape-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
  }
  
  /* Intro Section */
  .hardscape-intro {
    padding: 100px 5%;
    background: #000;
  }
  
  .hardscape-intro-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .hardscape-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .hardscape-intro-text .intro-tagline {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
  }
  
  .hardscape-intro-text .intro-quote {
    font-size: 1.4rem;
    font-style: italic;
    color: #8BC34A;
    margin-bottom: 30px;
    border-left: 3px solid #8BC34A;
    padding-left: 20px;
  }
  
  .hardscape-intro-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* Expert Hardscaping Section */
  .expert-hardscaping {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .expert-hardscaping-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .expert-hardscaping-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .expert-hardscaping-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .expert-hardscaping-text h2 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 2px;
  }
  
  .expert-hardscaping-text h3 {
    font-size: 1.3rem;
    color: #8BC34A;
    margin-bottom: 25px;
    font-weight: 500;
  }
  
  .expert-hardscaping-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
  }
  
  /* Hardscape Services Section */
  .our-hardscape-services {
    padding: 100px 5%;
    background: #000;
  }
  
  .our-hardscape-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .hardscape-service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
  }
  
  .hardscape-service-block.reverse {
    direction: rtl;
  }
  
  .hardscape-service-block.reverse .hardscape-service-block-content {
    direction: ltr;
  }
  
  .hardscape-service-block-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
  }
  
  .hardscape-service-block-image img:hover {
    transform: scale(1.02);
  }
  
  .hardscape-service-block-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #8BC34A;
    font-weight: 500;
  }
  
  .hardscape-service-block-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
  }
  
  .service-feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .service-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  .service-feature-list li i {
    color: #8BC34A;
    font-size: 0.8rem;
  }
  
  /* Why Choose Hardscape Section */
  .why-choose-hardscape {
    padding: 100px 5%;
    background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .why-choose-hardscape-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .hardscape-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
  }
  
  .hardscape-benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
  }
  
  .hardscape-benefit-card:hover {
    transform: translateY(-10px);
    border-color: #8BC34A;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .hardscape-benefit-card i {
    font-size: 2.5rem;
    color: #8BC34A;
    margin-bottom: 20px;
  }
  
  .hardscape-benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .hardscape-benefit-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
  }
  
  /* Hardscape Showcase */
  .hardscape-showcase {
    padding: 100px 5%;
    background: #000;
  }
  
  .hardscape-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .hardscape-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
  }
  
  .hardscape-showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
  }
  
  .hardscape-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .hardscape-showcase-item:hover img {
    transform: scale(1.1);
  }
  
  .hardscape-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  
  .hardscape-showcase-item:hover .hardscape-showcase-overlay {
    transform: translateY(0);
  }
  
  .hardscape-showcase-overlay span {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
  }
  
  /* Materials Section */
  .materials-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
  }
  
  .materials-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
  }
  
  .material-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.3s ease;
  }
  
  .material-card:hover {
    transform: translateY(-5px);
    border-color: #8BC34A;
  }
  
  .material-card i {
    font-size: 2rem;
    color: #8BC34A;
    margin-bottom: 15px;
  }
  
  .material-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .material-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
  }
  
  /* Hardscape CTA */
 /* Hardscape CTA with Background Image */
.hardscape-cta {
  position: relative;
  padding: 20px 5%;
  text-align: center;
  background: url('../images/5.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.hardscape-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 30, 0, 0.8));
  z-index: 1;
}

.hardscape-cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hardscape-cta-container h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hardscape-cta-container p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hardscape-cta-container .btn-primary {
  display: inline-block;
  background: #8BC34A;
  color: #000;
  padding: 16px 45px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.hardscape-cta-container .btn-primary:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
  
  .hardscape-cta-container h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .hardscape-cta-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
  }
  
  .hardscape-cta-container .btn-primary {
    display: inline-block;
    background: #8BC34A;
    color: #000;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .hardscape-cta-container .btn-primary:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-3px);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .hardscape-intro-grid,
    .expert-hardscaping-grid,
    .hardscape-service-block,
    .hardscape-service-block.reverse {
      grid-template-columns: 1fr;
      direction: ltr;
    }
    
    .hardscape-benefits-grid,
    .hardscape-showcase-grid,
    .materials-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .hardscape-hero-content h1 {
      font-size: 3.5rem;
    }
    
    .service-feature-list {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .hardscape-hero {
      min-height: 400px;
    }
    
    .hardscape-hero-content h1 {
      font-size: 2.5rem;
      letter-spacing: 3px;
    }
    
    .hardscape-hero-content p {
      font-size: 1rem;
    }
    
    .hardscape-benefits-grid,
    .hardscape-showcase-grid,
    .materials-grid {
      grid-template-columns: 1fr;
    }
    
    .hardscape-service-block-content h3 {
      font-size: 1.5rem;
    }
    
    .expert-hardscaping-text h2 {
      font-size: 1.8rem;
    }
    
    .hardscape-cta-container h2 {
      font-size: 1.8rem;
    }
  }
  
  @media (max-width: 480px) {
    .hardscape-hero-content h1 {
      font-size: 2rem;
    }
    
    .intro-tagline {
      font-size: 1rem;
    }
    
    .intro-quote {
      font-size: 1.1rem;
    }
  }

























  /* ===== CONCRETE PAGE STYLES ===== */

/* Hero Section */
.concrete-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/13.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: -1px;
}

.concrete-hero-content h1 {
  font-size: 5rem;
  font-weight: 200;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.concrete-hero-content p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 1px;
}

/* Intro Section */
.concrete-intro {
  padding: 100px 5%;
  background: #000;
}

.concrete-intro-container {
  max-width: 1400px;
  margin: 0 auto;
}

.concrete-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.concrete-intro-text .intro-tagline {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

.concrete-intro-text .intro-quote {
  font-size: 1.4rem;
  font-style: italic;
  color: #8BC34A;
  margin-bottom: 30px;
  border-left: 3px solid #8BC34A;
  padding-left: 20px;
}

.concrete-intro-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Expert Concrete Section */
.expert-concrete {
  padding: 100px 5%;
  background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-concrete-container {
  max-width: 1400px;
  margin: 0 auto;
}

.expert-concrete-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.expert-concrete-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.expert-concrete-text h2 {
  font-size: 2.5rem;
  font-weight: 200;
  margin-bottom: 15px;
  color: #ffffff;
  letter-spacing: 2px;
}

.expert-concrete-text h3 {
  font-size: 1.3rem;
  color: #8BC34A;
  margin-bottom: 25px;
  font-weight: 500;
}

.expert-concrete-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

/* Concrete Services Section */
.our-concrete-services {
  padding: 20px 5%;
  background: #000;
}

.our-concrete-container {
  max-width: 1400px;
  margin: 0 auto;
}

.concrete-service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: center;
}

.concrete-service-block.reverse {
  direction: rtl;
}

.concrete-service-block.reverse .concrete-service-block-content {
  direction: ltr;
}

.concrete-service-block-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.concrete-service-block-image img:hover {
  transform: scale(1.02);
}

.concrete-service-block-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #8BC34A;
  font-weight: 500;
}

.concrete-service-block-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.concrete-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.concrete-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.concrete-feature-list li i {
  color: #8BC34A;
  font-size: 0.8rem;
}


/* Concrete CTA with Background Image */
.concrete-cta {
  position: relative;
  padding: 20px 5%;
  text-align: center;
  background: url('../images/concrete-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.concrete-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 30, 0, 0.8));
  z-index: 1;
}

.concrete-cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.concrete-cta-container h2 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #ffffff;
}

.concrete-cta-container p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.concrete-cta-container .btn-primary {
  display: inline-block;
  background: #8BC34A;
  color: #000;
  padding: 16px 45px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.concrete-cta-container .btn-primary:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
  .concrete-intro-grid,
  .expert-concrete-grid,
  .concrete-service-block,
  .concrete-service-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  
  .concrete-benefits-grid,
  .finishes-grid,
  .concrete-process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .concrete-hero-content h1 {
    font-size: 3.5rem;
  }
  
  .concrete-feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .concrete-hero {
    min-height: 400px;
  }
  
  .concrete-hero-content h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }
  
  .concrete-hero-content p {
    font-size: 1rem;
  }
  
  .concrete-benefits-grid,
  .finishes-grid,
  .concrete-process-steps {
    grid-template-columns: 1fr;
  }
  
  .concrete-service-block-content h3 {
    font-size: 1.5rem;
  }
  
  .expert-concrete-text h2 {
    font-size: 1.8rem;
  }
  
  .concrete-cta-container h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .concrete-hero-content h1 {
    font-size: 2rem;
  }
  
  .intro-tagline {
    font-size: 1rem;
  }
  
  .intro-quote {
    font-size: 1.1rem;
  }
}




































/* ===== DESIGN PAGE STYLES - COMPACT ===== */

/* Hero Section with Ken Burns Effect */
.design-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: -1px;
  overflow: hidden;
}

.design-hero::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75)), url('../images/4.png');
  background-size: cover;
  background-position: center;
  animation: kenBurnsZoom 25s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes kenBurnsZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.design-hero-content {
  position: relative;
  z-index: 2;
}

.design-hero-content h1 {
  font-size: 4.5rem;
  font-weight: 200;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.design-hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-block;
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.hero-btn:hover {
  background: #8BC34A;
  border-color: #8BC34A;
  color: #000;
  transform: translateY(-3px);
}

/* Design Process Compact */
.design-process-compact {
  padding: 80px 5%;
  background: #000;
}

.design-process-compact-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.process-compact-card {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.process-compact-card:hover {
  transform: translateY(-5px);
  border-color: #8BC34A;
}

.process-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: #8BC34A;
  opacity: 0.5;
  display: block;
  margin-bottom: 15px;
}

.process-compact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.process-compact-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ===== DESIGN PAGE - UPDATED WITH PROGRESS BARS ===== */

/* Featured Projects Section */
.featured-projects {
  padding: 80px 5%;
  background: #000;
}

.featured-projects-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 1rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.featured-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  background: #111;
}

.featured-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.featured-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-item:hover .featured-image-wrapper img {
  transform: scale(1.1);
}

/* Overlay Content */
.featured-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 30, 0, 0.9));
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.featured-item:hover .featured-overlay {
  opacity: 1;
  visibility: visible;
}

.project-badge {
  display: inline-block;
  background: #8BC34A;
  color: #000;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 12px;
  width: fit-content;
}

.featured-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

/* Progress Bars */
.project-progress {
  margin-bottom: 15px;
}

.progress-item {
  margin-bottom: 10px;
}

.progress-label {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #8BC34A;
  border-radius: 4px;
  width: 0%;
}

.project-story {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

.project-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: auto;
}

.project-stats span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: #8BC34A;
}

.project-stats i {
  font-size: 0.7rem;
}

/* Scrollbar for overlay */
.featured-overlay::-webkit-scrollbar {
  width: 3px;
}

.featured-overlay::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.featured-overlay::-webkit-scrollbar-thumb {
  background: #8BC34A;
  border-radius: 3px;
}

/* Responsive */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .featured-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .featured-overlay {
    padding: 20px;
  }
  
  .featured-overlay h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .featured-overlay {
    padding: 15px;
  }
  
  .project-stats {
    gap: 10px;
  }
  
  .project-story {
    font-size: 0.75rem;
  }
}
/* Design CTA Compact */
.design-cta-compact {
  position: relative;
  padding: 80px 5%;
  text-align: center;
  background: url('../images/b24.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.design-cta-compact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 30, 0, 0.8));
  z-index: 1;
}

.design-cta-compact-container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.design-cta-compact-container h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.design-cta-compact-container .btn-primary {
  display: inline-block;
  background: #8BC34A;
  color: #000;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.design-cta-compact-container .btn-primary:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .process-compact-grid,
  .design-compact-grid,
  .featured-grid,
  .why-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .design-hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .design-hero {
    height: 60vh;
    min-height: 400px;
  }
  
  .design-hero-content h1 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
  
  .process-compact-grid,
  .design-compact-grid,
  .featured-grid,
  .why-compact-grid {
    grid-template-columns: 1fr;
  }
  
  .design-compact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-compact-item {
    padding: 15px;
  }
  
  .design-cta-compact-container h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .design-compact-grid {
    grid-template-columns: 1fr;
  }
  
  .design-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-btn {
    padding: 10px 25px;
    font-size: 0.8rem;
  }
}


























/* ===== PORTFOLIO PAGE STYLES ===== */

/* Hero Section */
.portfolio-hero {
  position: relative;
  height: 50vh;
  max-height: 100px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/portfolio-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 10px;
}

.portfolio-hero-content h1 {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.portfolio-hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Filter Section */
.portfolio-filter-section {
  padding: 60px 5% 0 5%;
  background: #000;
}

.portfolio-filter-container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover {
  border-color: #8BC34A;
  color: #8BC34A;
}

.filter-btn.active {
  background: #8BC34A;
  border-color: #8BC34A;
  color: #000;
}

/* Portfolio Masonry Grid */
.portfolio-grid-section {
  padding: 60px 5%;
  background: #000;
}

.portfolio-grid-container {
  max-width: 1400px;
  margin: 0 auto;
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

.portfolio-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

/* Portfolio Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(0, 30, 0, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 25px;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
  visibility: visible;
}

.portfolio-info {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.portfolio-card:hover .portfolio-info {
  transform: translateY(0);
}

.portfolio-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 600;
}

.portfolio-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.5;
}

.portfolio-meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.portfolio-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: #8BC34A;
}

.portfolio-meta i {
  font-size: 0.7rem;
}

.view-project {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #8BC34A;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.view-project:hover {
  gap: 12px;
  color: #ffffff;
}

/* Stats Section */
.portfolio-stats {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 700;
  color: #8BC34A;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}

/* Portfolio CTA */
.portfolio-cta {
  position: relative;
  padding: 100px 5%;
  text-align: center;
  background: url('../images/portfolio-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.portfolio-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 30, 0, 0.5));
  z-index: 1;
}

.portfolio-cta-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.portfolio-cta-container h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #ffffff;
}

.portfolio-cta-container p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.portfolio-cta-container .btn-primary {
  display: inline-block;
  background: #8BC34A;
  color: #000;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.portfolio-cta-container .btn-primary:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Filter Animation */
.portfolio-card {
  transition: all 0.4s ease;
}

.portfolio-card.hide {
  display: none;
}

/* Responsive */
@media (max-width: 992px) {


  .portfolio-hero {
    max-height: 30px;
    height: 20px;
  }

  .portfolio-hero-content h1 {
    font-size: 3rem;
  }
  
  .portfolio-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .portfolio-hero {
    max-height: 30px;
    height: 20px;
  }
  
  .portfolio-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .portfolio-hero-content p {
    font-size: 1rem;
  }
  
  .portfolio-masonry {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .filter-buttons {
    gap: 10px;
  }
  
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.75rem;
  }
  
  .portfolio-stats-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .portfolio-cta-container h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .portfolio-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .portfolio-info h3 {
    font-size: 1.1rem;
  }
  
  .portfolio-info p {
    font-size: 0.75rem;
  }
  
  .portfolio-meta {
    gap: 10px;
  }
}





















/* ===== CONTACT PAGE STYLES ===== */

/* Hero Section */
.contact-hero {
  position: relative;
  height: 40vh;
  max-height: 200px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/contact-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: -1px;
}

.contact-hero-content h1 {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Page Section */
.contact-page-section {
  padding: 100px 5%;
  background: #000;
}

.contact-page-container {
  max-width: 1400px;
  margin: 0 auto;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* Contact Info Left */
.contact-info-left h2 {
  font-size: 2.5rem;
  font-weight: 200;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 2px;
}

.contact-info-left > p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.contact-detail-item:hover .contact-icon {
  border-color: #8BC34A;
  background: rgba(139, 195, 74, 0.1);
}

.contact-icon i {
  font-size: 1.3rem;
  color: #8BC34A;
}

.contact-detail-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #ffffff;
}

.contact-detail-text p {
  color: #8BC34A;
  font-weight: 500;
  margin-bottom: 5px;
}

.contact-detail-text span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Business Hours */
.business-hours {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 40px;
}

.business-hours h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.hour-item span:first-child {
  font-weight: 500;
}

.hour-item span:last-child {
  color: #8BC34A;
}

/* Contact Social */
.contact-social h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.social-links {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background: #8BC34A;
  color: #000;
  transform: translateY(-3px);
}

/* Contact Form Right */
.contact-form-right {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
}

.contact-form-right h2 {
  font-size: 1.8rem;
  font-weight: 200;
  margin-bottom: 25px;
  color: #ffffff;
}

.contact-form-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #8BC34A;
  background: rgba(0, 0, 0, 0.7);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
  background: #8BC34A;
  color: #000;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Map Section */
.map-section {
  padding: 0 5% 80px 5%;
  background: #000;
}

.map-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.map-wrapper iframe {
  display: block;
}

.map-overlay-text {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.map-overlay-text i {
  color: #8BC34A;
  margin-right: 8px;
}

/* FAQ Section */
.contact-faq {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 50px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-question h4 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.faq-question i {
  color: #8BC34A;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-size: 0.9rem;
}

/* Contact CTA */
.contact-cta {
  position: relative;
  padding: 100px 5%;
  text-align: center;
  background: url('../images/contact-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.contact-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 30, 0, 0.8));
  z-index: 1;
}

.contact-cta-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.contact-cta-container h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #ffffff;
}

.contact-cta-container p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.contact-cta-container .btn-primary {
  display: inline-block;
  background: #8BC34A;
  color: #000;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.contact-cta-container .btn-primary:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero {
    max-height:30px;
    height: 20px;
  }
  
  .contact-hero-content h1 {
    font-size: 3rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    max-height:30px;
    height: 20px;
  }
  
  .contact-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .contact-info-left h2 {
    font-size: 1.8rem;
  }
  
  .contact-form-right {
    padding: 25px;
  }
  
  .contact-form-right h2 {
    font-size: 1.4rem;
  }
  
  .faq-question {
    padding: 15px 20px;
  }
  
  .contact-cta-container h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .contact-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .contact-detail-item {
    gap: 15px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
  }
  
  .contact-icon i {
    font-size: 1rem;
  }
  
  .contact-detail-text h4 {
    font-size: 1rem;
  }
  
  .hour-item {
    font-size: 0.8rem;
  }
}


















/* ===== BLOG PAGE STYLES ===== */

/* Hero Section */
.blog-hero {
  position: relative;
  height: 40vh;
  min-height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/4.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: -1px;
}

.blog-hero-content h1 {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  color: #ffffff;
}

.blog-hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Blog Grid Section */
.blog-grid-section {
  padding: 80px 5%;
  background: #000;
}

.blog-grid-container {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Blog Post Card */
.blog-post-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.blog-post-card:hover {
  transform: translateY(-5px);
}

.post-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #8BC34A;
  color: #000;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.post-content {
  padding: 25px;
}

.post-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.post-meta span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.post-meta i {
  margin-right: 5px;
  color: #8BC34A;
}

.post-content h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.4;
}

.post-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #8BC34A;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: gap 0.3s ease;
}

.read-more:hover {
  gap: 10px;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-posts {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 300px;
  }
  
  .blog-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .blog-posts {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .post-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .blog-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .post-content {
    padding: 20px;
  }
  
  .post-content h3 {
    font-size: 1.1rem;
  }
}




















/* ===== BLOG POST PAGE STYLES ===== */

/* Blog Post Hero */
.blog-post-hero {
  position: relative;
  height: 60vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('../images/blog-post-hero.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: -1px;
}

.blog-post-hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.blog-post-hero-content .post-category {
  display: inline-block;
  background: #8BC34A;
  color: #000;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog-post-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.3;
}

.post-meta-large {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.post-meta-large span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.post-meta-large i {
  margin-right: 8px;
  color: #8BC34A;
}

/* Blog Post Content */
.blog-post-content {
  padding: 80px 5%;
  background: #000;
}

.blog-post-container {
  max-width: 900px;
  margin: 0 auto;
}

.blog-article {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 50px;
}

.blog-article .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 500;
}

.blog-article h2 {
  font-size: 1.8rem;
  font-weight: 300;
  margin: 40px 0 20px;
  color: #8BC34A;
}

.blog-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.blog-article ul {
  margin: 20px 0;
  padding-left: 25px;
}

.blog-article ul li {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 10px;
}

.blog-article ul li strong {
  color: #8BC34A;
}

.inline-image {
  width: 100%;
  border-radius: 20px;
  margin: 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Author Bio */
.author-bio {
  display: flex;
  gap: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  margin: 50px 0 30px;
}

.author-bio img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.author-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 12px;
}

.author-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.author-social a:hover {
  color: #8BC34A;
}

/* Share Section */
.share-section {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}

.share-section span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.share-section a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.share-section a:hover {
  background: #8BC34A;
  color: #000;
}

/* Related Posts */
.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #ffffff;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.related-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-card h4 {
  font-size: 0.9rem;
  padding: 15px 15px 5px;
  color: #ffffff;
}

.related-card a {
  display: inline-block;
  padding: 0 15px 20px;
  color: #8BC34A;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.related-card a:hover {
  color: #ffffff;
}

/* Blog CTA */
.blog-cta {
  position: relative;
  padding: 80px 5%;
  text-align: center;
  background: url('../images/blog-cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.blog-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 30, 0, 0.8));
  z-index: 1;
}

.blog-cta-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.blog-cta-container h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #ffffff;
}

.blog-cta-container p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.blog-cta-container .btn-primary {
  display: inline-block;
  background: #8BC34A;
  color: #000;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.blog-cta-container .btn-primary:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
  .blog-post-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .blog-article {
    padding: 35px;
  }
  
  .blog-article h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .blog-post-hero {
    min-height: 400px;
  }
  
  .blog-post-hero-content h1 {
    font-size: 1.8rem;
  }
  
  .post-meta-large {
    gap: 15px;
  }
  
  .blog-article {
    padding: 25px;
  }
  
  .author-bio {
    flex-direction: column;
    text-align: center;
  }
  
  .author-bio img {
    margin: 0 auto;
  }
  
  .author-social {
    justify-content: center;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-cta-container h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .blog-post-hero-content h1 {
    font-size: 1.5rem;
  }
  
  .blog-article {
    padding: 20px;
  }
  
  .blog-article h2 {
    font-size: 1.3rem;
  }
  
  .share-section {
    flex-wrap: wrap;
    justify-content: center;
  }
}




















/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
  background: rgba(139, 195, 74, 0.15);
  color: #8BC34A;
  font-weight: 600;
}

.comparison-table td {
  color: rgba(255, 255, 255, 0.8);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

h3 {
  font-size: 1.2rem;
  margin: 25px 0 15px;
  color: #ffffff;
}




/* Add to main.css */
.pro-tip {
  background: #f0f7e8;
  border-left: 4px solid #4CAF50;
  padding: 20px;
  margin: 25px 0;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pro-tip i {
  color: #4CAF50;
  font-size: 24px;
  flex-shrink: 0;
}

.pro-tip strong {
  color: #2e7d32;
  display: block;
  margin-bottom: 5px;
}

.cta-box {
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  padding: 35px;
  border-radius: 16px;
  text-align: center;
  margin: 45px 0 25px;
  color: white;
}

.cta-box h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.cta-box p {
  color: rgba(255,255,255,0.95);
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.cta-box .btn-primary {
  background: white;
  color: #2e7d32;
  padding: 14px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-box .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.phone-link {
  color: white;
  text-decoration: none;
}
.phone-link:hover {
  color: #4CAF50;
  text-decoration: underline;
}








/* Alert Messages */
.alert {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.alert-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

.alert i {
  font-size: 18px;
}