:root {
      --primary: #13161B;
      --secondary: #2d3748;
      --accent: #B89D54;
      --light-accent: #f7f6f2;
      --text: #2d3748;
      --light-text: #718096;
      --white: #ffffff;
      --transition: all 0.3s ease;
      --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html {
      scroll-behavior: smooth;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background: var(--white);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    
    h1, h2, h3, h4, h5 {
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      line-height: 1.2;
    }
    
    /* Header & Navigation */
    header {
      background: var(--white);
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      transition: var(--transition);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    header.scrolled {
      padding: 15px 40px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .logo h1 {
      font-size: 1.8rem;
      color: var(--primary);
      font-weight: 700;
    }
    
    .logo span {
      color: var(--accent);
    }
    
    .logo-icon {
      font-size: 1.8rem;
      color: var(--accent);
    }
    
    nav {
      display: flex;
      align-items: center;
      gap: 25px;
    }
    
    nav a {
      color: var(--text);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      position: relative;
      padding: 5px 0;
    }
    
    nav a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: var(--accent);
      transition: var(--transition);
    }
    
    nav a:hover {
      color: var(--primary);
    }
    
    nav a:hover:after {
      width: 100%;
    }
    
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: var(--text);
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 1001;
    }
    
    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, rgba(19, 22, 27, 0.9) 0%, rgba(19, 22, 27, 0.8) 50%, rgba(19, 22, 27, 0.9) 50%), 
                  url('project-pix/herosection.jpg') center/cover no-repeat;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      padding: 0 20px;
      position: relative;
      color: var(--white);
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 30% 50%, rgba(184, 157, 84, 0.2) 0%, transparent 50%);
      animation: pulse 8s infinite alternate;
    }
    
    .hero-content {
      max-width: 800px;
      animation: fadeInUp 1s ease;
      position: relative;
      z-index: 2;
    }
    
    .hero h2 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      margin-bottom: 20px;
      line-height: 1.1;
    }
    
    .hero p {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      margin-bottom: 30px;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .btn {
      padding: 12px 30px;
      border-radius: 5px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      text-decoration: none;
      display: inline-block;
      border: none;
      font-size: 1rem;
      text-align: center;
    }
    
    .btn-primary {
      background: var(--accent);
      color: var(--primary);
    }
    
    .btn-primary:hover {
      background: #a58a4a;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(184, 157, 84, 0.3);
    }
    
    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }
    
    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-3px);
    }
    
    /* Warren Buffett Quote Section */
    .quote-section {
      background: var(--primary);
      padding: 80px 20px;
      text-align: center;
      position: relative;
    }
    
    .quote-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 50% 50%, rgba(184, 157, 84, 0.1) 0%, transparent 70%);
    }
    
    .quote-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    .quote-icon {
      font-size: 3rem;
      color: var(--accent);
      margin-bottom: 20px;
      opacity: 0.7;
    }
    
    .quote-text {
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-family: 'Playfair Display', serif;
      color: var(--white);
      margin-bottom: 20px;
      line-height: 1.4;
      position: relative;
    }
    
    .quote-author {
      font-size: 1.2rem;
      color: var(--accent);
      font-style: italic;
    }
    
    .quote-author::before {
      content: '- ';
    }
    
    /* Sections */
    section {
      padding: 100px 20px;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-title h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      color: var(--primary);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }
    
    .section-title h2:after {
      content: '';
      position: absolute;
      width: 70px;
      height: 3px;
      background: var(--accent);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%); 
    }
    
    .section-title p {
      color: var(--light-text);
      max-width: 700px;
      margin: 0 auto;
      font-size: clamp(0.9rem, 2vw, 1rem);
    }
    
    /* About Section */
    .about {
      background: var(--light-accent);
    }
    
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      gap: 60px;
    }
    
    .about-text {
      padding-right: 20px;
    }
    
    .about-text h3 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      color: var(--primary);
    }
    
    .about-text p {
      margin-bottom: 20px;
      color: var(--light-text);
    }
    
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
    }
    
    .stat {
      text-align: center;
      background: var(--white);
      padding: 20px;
      border-radius: 10px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .stat:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }
    
    .stat-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .stat-label {
      font-size: 0.9rem;
      color: var(--light-text);
    }
    
    .about-image {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }
    
    .about-image:hover img {
      transform: scale(1.05);
    }
    
    /* Expo Section */
    .expo {
      background: linear-gradient(135deg, rgba(19, 22, 27, 0.9) 0%, rgba(19, 22, 27, 0.8) 50%, rgba(19, 22, 27, 0.9) 100%), 
                  url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0') center/cover no-repeat;
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }
    
    .expo::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 70% 30%, rgba(184, 157, 84, 0.2) 0%, transparent 50%);
      animation: pulse 8s infinite alternate-reverse;
    }
    
    .expo-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    
    .expo h2 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      margin-bottom: 20px;
    }
    
    .expo p {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      margin-bottom: 15px;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .expo-highlight {
      background: rgba(255, 255, 255, 0.1);
      padding: 30px;
      border-radius: 10px;
      margin: 40px 0;
      border-left: 4px solid var(--accent);
      transition: var(--transition);
      backdrop-filter: blur(5px);
    }
    
    .expo-highlight:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .expo-highlight h3 {
      color: var(--accent);
      margin-bottom: 15px;
      font-size: 1.5rem;
    }
    
    /* Margalla Orchards Gallery Section */
    .margalla-gallery {
      background: var(--white);
      padding: 100px 20px;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .gallery-item {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
      cursor: pointer;
      aspect-ratio: 4/3;
    }
    
    .gallery-item:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    
    .gallery-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      color: white;
      padding: 20px;
      transform: translateY(100%);
      transition: var(--transition);
    }
    
    .gallery-item:hover .gallery-overlay {
      transform: translateY(0);
    }
    
    .gallery-overlay h3 {
      margin-bottom: 5px;
      font-size: 1.1rem;
    }
    
    .gallery-overlay p {
      font-size: 0.9rem;
      opacity: 0.9;
    }
    
    /* Image Popup Overlay */
    .image-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(19, 22, 27, 0.95);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .image-popup-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    .image-popup-container {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      transform: scale(0.8);
      transition: transform 0.3s ease;
    }
    
    .image-popup-overlay.active .image-popup-container {
      transform: scale(1);
    }
    
    .image-popup-container img {
      display: block;
      max-width: 100%;
      max-height: 80vh;
      object-fit: contain;
    }
    
    .image-popup-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(0, 0, 0, 0.7);
      color: white;
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: var(--transition);
      z-index: 10;
    }
    
    .image-popup-close:hover {
      background: var(--accent);
      color: var(--primary);
    }
    
    .image-popup-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.7);
      color: white;
      border: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.2rem;
      transition: var(--transition);
      z-index: 10;
    }
    
    .image-popup-nav:hover {
      background: var(--accent);
      color: var(--primary);
    }
    
    .image-popup-prev {
      left: 20px;
    }
    
    .image-popup-next {
      right: 20px;
    }
    
    .image-popup-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.8);
      color: white;
      padding: 15px 20px;
      text-align: center;
    }
    
    /* Projects Section */
    .projects {
      background: var(--light-accent);
    }
    
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .project-card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow);
      border: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
    }
    
    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    
    .project-image {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    
    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .project-card:hover .project-image img {
      transform: scale(1.1);
    }
    
    .project-content {
      padding: 25px;
    }
    
    .project-content h3 {
      font-size: 1.4rem;
      margin-bottom: 10px;
      color: var(--primary);
    }
    
    .project-content p {
      color: var(--light-text);
      margin-bottom: 15px;
      font-size: 0.9rem;
    }
    
    .project-features {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
    }
    
    .feature {
      display: flex;
      align-items: center;
      color: var(--light-text);
      font-size: 0.8rem;
    }
    
    .feature i {
      margin-right: 5px;
      color: var(--accent);
    }
    
    .project-status {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
    }
    
    .status-completed {
      background: rgba(76, 175, 80, 0.1);
      color: #4caf50;
    }
    
    .status-ongoing {
      background: rgba(33, 150, 243, 0.1);
      color: #2196f3;
    }
    
    .status-upcoming {
      background: rgba(255, 193, 7, 0.1);
      color: #ffc107;
    }
    
    /* Services Section */
    .services {
      background: var(--white);
    }
    
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .service-card {
      background: var(--light-accent);
      padding: 40px 30px;
      border-radius: 10px;
      text-align: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .service-card:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: var(--accent);
      transform: scaleX(0);
      transition: var(--transition);
    }
    
    .service-card:hover:before {
      transform: scaleX(1);
    }
    
    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    
    .service-icon {
      font-size: 2.5rem;
      color: var(--accent);
      margin-bottom: 20px;
    }
    
    .service-card h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .service-card p {
      color: var(--light-text);
      font-size: 0.9rem;
    }
    
    /* Offices Section */
    .offices {
      background: var(--light-accent);
    }
    
    .offices-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .office-card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .office-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    
    .office-header {
      padding: 25px 25px 15px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      position: relative;
    }
    
    .office-type {
      display: inline-block;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    
    .type-head {
      background: rgba(184, 157, 84, 0.1);
      color: var(--accent);
    }
    
    .type-affiliated {
      background: rgba(33, 150, 243, 0.1);
      color: #2196f3;
    }
    
    .office-card h3 {
      font-size: 1.4rem;
      margin-bottom: 5px;
      color: var(--primary);
    }
    
    .office-location {
      color: var(--light-text);
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      margin-bottom: 5px;
    }
    
    .office-location i {
      margin-right: 8px;
      color: var(--accent);
    }
    
    .office-content {
      padding: 20px 25px 25px;
    }
    
    .office-details {
      margin-bottom: 20px;
    }
    
    .office-detail {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
    }
    
    .office-icon {
      font-size: 1rem;
      color: var(--accent);
      margin-right: 12px;
      margin-top: 3px;
      min-width: 16px;
    }
    
    .office-text {
      color: var(--light-text);
      font-size: 0.9rem;
    }
    
    .office-text a {
      color: var(--light-text);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .office-text a:hover {
      color: var(--accent);
    }
    
    .office-hours {
      background: rgba(184, 157, 84, 0.05);
      padding: 15px;
      border-radius: 8px;
      margin-top: 15px;
    }
    
    .office-hours h4 {
      font-size: 0.9rem;
      color: var(--primary);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
    }
    
    .office-hours h4 i {
      margin-right: 8px;
      color: var(--accent);
    }
    
    .hours-list {
      font-size: 0.85rem;
      color: var(--light-text);
    }
    
    .hours-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 5px;
    }
    
    /* Blog Section */
    .blog {
      background: var(--white);
    }
    
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }
    
    .blog-card {
      background: var(--light-accent);
      border-radius: 10px;
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
    }
    
    .blog-image {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    
    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .blog-card:hover .blog-image img {
      transform: scale(1.1);
    }
    
    .blog-content {
      padding: 25px;
    }
    
    .blog-meta {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 0.85rem;
      color: var(--light-text);
    }
    
    .blog-date {
      display: flex;
      align-items: center;
      margin-right: 15px;
    }
    
    .blog-date i {
      margin-right: 5px;
      color: var(--accent);
    }
    
    .blog-category {
      display: flex;
      align-items: center;
    }
    
    .blog-category i {
      margin-right: 5px;
      color: var(--accent);
    }
    
    .blog-content h3 {
      font-size: 1.3rem;
      margin-bottom: 15px;
      color: var(--primary);
    }
    
    .blog-content p {
      color: var(--light-text);
      margin-bottom: 20px;
      font-size: 0.9rem;
    }
    
    .blog-link {
      display: inline-flex;
      align-items: center;
      color: var(--accent);
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .blog-link:hover {
      color: var(--primary);
    }
    
    .blog-link i {
      margin-left: 5px;
      transition: var(--transition);
    }
    
    .blog-link:hover i {
      transform: translateX(5px);
    }
    
    .blog-cta {
      text-align: center;
      margin-top: 50px;
    }
    
    /* Contact Section */
    .contact {
      background: var(--light-accent);
    }
    
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      max-width: 1200px;
      margin: 0 auto;
      gap: 50px;
    }
    
    .contact-info {
      padding-right: 20px;
    }
    
    .contact-info h3 {
      color: var(--primary);
      margin-bottom: 20px;
      font-size: 1.5rem;
    }
    
    .contact-details {
      margin-bottom: 30px;
    }
    
    .contact-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }
    
    .contact-icon {
      font-size: 1.2rem;
      color: var(--accent);
      margin-right: 15px;
      margin-top: 5px;
    }
    
    .contact-text h4 {
      margin-bottom: 5px;
      color: var(--primary);
    }
    
    .contact-text p, .contact-text a {
      color: var(--light-text);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .contact-text a:hover {
      color: var(--accent);
    }
    
    .social-links {
      display: flex;
      gap: 15px;
    }
    
    .social-link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--light-accent);
      color: var(--primary);
      transition: var(--transition);
    }
    
    .social-link:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-3px);
    }
    
    .contact-form {
      background: var(--white);
      padding: 40px;
      border-radius: 10px;
      box-shadow: var(--shadow);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      color: var(--light-text);
      font-weight: 500;
    }
    
    .form-control {
      width: 100%;
      padding: 12px 15px;
      background: var(--white);
      border: 1px solid #e2e8f0;
      border-radius: 5px;
      color: var(--text);
      transition: var(--transition);
      font-family: 'Poppins', sans-serif;
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(184, 157, 84, 0.2);
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    /* Footer */
    footer {
      background: var(--primary);
      padding: 70px 20px 20px;
      color: var(--white);
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto 40px;
    }
    
    .footer-column h3 {
      color: var(--accent);
      margin-bottom: 20px;
      font-size: 1.2rem;
    }
    
    .footer-column p, .footer-column a {
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 10px;
      display: block;
      text-decoration: none;
      transition: var(--transition);
    }
    
    .footer-column a:hover {
      color: var(--accent);
    }
    
    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
    }
    
    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--accent);
      color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
      border: none;
      box-shadow: var(--shadow);
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background: #a58a4a;
      transform: translateY(-3px);
    }
    
    /* WhatsApp Floating Button - Updated to original WhatsApp green */
    .whatsapp-float {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 60px;
      height: 60px;
      background: #25D366; /* Original WhatsApp green */
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
      z-index: 999;
      transition: all 0.3s ease;
      animation: pulse-whatsapp 2s infinite;
      cursor: pointer;
      border: none;
    }
    
    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
      background: #128C7E; /* Darker WhatsApp green on hover */
    }
    
    .whatsapp-link {
      color: white;
      font-size: 2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      text-decoration: none;
    }
    
    @keyframes pulse-whatsapp {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }
      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }
      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }
    
    /* WhatsApp Chat Widget - Fixed height and layout */
    .whatsapp-chat-widget {
      position: fixed;
      bottom: 100px;
      left: 30px;
      width: 350px;
      height: 450px; /* Reduced height to ensure all elements fit */
      background: var(--white);
      border-radius: 15px;
      box-shadow: var(--shadow-lg);
      z-index: 1000;
      display: none;
      flex-direction: column;
      overflow: hidden;
      animation: slideInUp 0.3s ease;
      border: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .whatsapp-chat-widget.active {
      display: flex;
    }
    
    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .whatsapp-chat-header {
      background: var(--primary);
      color: var(--white);
      padding: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-shrink: 0;
      height: 70px;
    }
    
    .chat-header-info {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .chat-avatar {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }
    
    .chat-contact-info h4 {
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
      color: var(--white);
    }
    
    .chat-contact-info p {
      margin: 0;
      font-size: 0.8rem;
      opacity: 0.9;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .chat-close-btn {
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.2rem;
      cursor: pointer;
      padding: 5px;
      border-radius: 50%;
      transition: var(--transition);
    }
    
    .chat-close-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }
    
    .whatsapp-chat-messages {
      flex: 1;
      padding: 15px;
      overflow-y: auto;
      background: var(--light-accent);
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 150px;
      max-height: 200px;
    }
    
    .chat-message {
      max-width: 80%;
      padding: 10px 15px;
      border-radius: 15px;
      position: relative;
      animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .chat-received {
      background: var(--white);
      align-self: flex-start;
      border-bottom-left-radius: 5px;
      box-shadow: var(--shadow);
    }
    
    .chat-sent {
      background: #dcf8c6;
      align-self: flex-end;
      border-bottom-right-radius: 5px;
      box-shadow: var(--shadow);
    }
    
    .chat-message p {
      margin: 0 0 5px 0;
      line-height: 1.4;
      color: var(--text);
    }
    
    .chat-message p:last-child {
      margin-bottom: 0;
    }
    
    .message-time {
      font-size: 0.7rem;
      color: var(--light-text);
      display: block;
      text-align: right;
    }
    
    .message-templates {
      padding: 10px 15px;
      background: var(--light-accent);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      max-height: 80px;
      overflow-y: auto;
      flex-shrink: 0;
    }
    
    .message-templates button {
      display: block;
      width: 100%;
      padding: 8px;
      margin: 5px 0;
      background: transparent;
      border: 1px solid var(--accent);
      border-radius: 5px;
      cursor: pointer;
      font-size: 0.8rem;
      color: var(--accent);
      transition: all 0.3s ease;
      font-family: 'Poppins', sans-serif;
    }
    
    .message-templates button:hover {
      background: var(--accent);
      color: var(--primary);
    }
    
    .whatsapp-chat-input {
      padding: 15px;
      border-top: 1px solid rgba(0, 0, 0, 0.1);
      background: var(--white);
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
      height: 140px;
    }
    
    #whatsappMessage {
      width: 100%;
      padding: 12px 15px;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      resize: none;
      font-family: 'Poppins', sans-serif;
      font-size: 0.9rem;
      margin-bottom: 10px;
      background: var(--white);
      color: var(--text);
      transition: var(--transition);
      min-height: 60px;
      max-height: 80px;
      line-height: 1.4;
    }
    
    #whatsappMessage:focus {
      outline: none;
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(184, 157, 84, 0.2);
    }
    
    .send-message-btn {
      width: 100%;
      padding: 12px;
      background: var(--accent);
      color: var(--primary);
      border: none;
      border-radius: 8px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'Poppins', sans-serif;
    }
    
    .send-message-btn:hover {
      background: #a58a4a;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(184, 157, 84, 0.3);
    }
    
    /* Backdrop for mobile */
    .chat-backdrop {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(19, 22, 27, 0.8);
      z-index: 999;
      display: none;
    }
    
    .chat-backdrop.active {
      display: block;
    }
    
    /* Map Popup Overlay */
    .map-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(19, 22, 27, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .map-popup-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    
    /* Map Popup Container */
    .map-popup-container {
      background: var(--white);
      border-radius: 15px;
      width: 90%;
      max-width: 1200px;
      height: 84vh;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: scale(0.9);
      transition: transform 0.3s ease;
    }
    
    .map-popup-overlay.active .map-popup-container {
      transform: scale(1);
    }
    
    /* Map Popup Header */
    .map-popup-header {
      background: var(--primary);
      color: var(--white);
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .map-popup-header h2 {
      margin: 0;
      font-size: 1.5rem;
      color: var(--white);
    }
    
    .map-popup-close {
      background: none;
      border: none;
      color: var(--white);
      font-size: 1.5rem;
      cursor: pointer;
      transition: var(--transition);
    }
    
    .map-popup-close:hover {
      color: var(--accent);
    }
    
    /* Enhanced Map Container */
    .map-container {
      flex: 1;
      position: relative;
      overflow: hidden;
      background: var(--light-accent);
      cursor: grab;
    }
    
    .map-container:active {
      cursor: grabbing;
    }
    
    .map-wrapper {
      position: relative;
      width: 100%;
      height: 100%;
      overflow: hidden;
      transform-origin: 0 0;
      transition: transform 0.1s ease;
    }
    
    .map-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      transform-origin: 0 0;
      transition: transform 0.1s ease;
    }
    
    /* Map Controls */
    .map-controls {
      position: absolute;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 10;
    }
    
    .map-control-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--white);
      border: none;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: var(--transition);
      color: var(--primary);
    }
    
    .map-control-btn:hover {
      background: var(--accent);
      color: var(--white);
      transform: translateY(-2px);
    }
    
    .zoom-level-display {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: var(--white);
      padding: 8px 15px;
      border-radius: 20px;
      box-shadow: var(--shadow);
      font-size: 0.9rem;
      color: var(--primary);
      font-weight: 500;
    }
    
    /* Map Legend */
    .map-legend {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--white);
      padding: 15px;
      border-radius: 10px;
      box-shadow: var(--shadow);
      max-width: 220px;
      z-index: 10;
    }
    
    .map-legend h4 {
      margin: 0 0 10px 0;
      font-size: 1rem;
      color: var(--primary);
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      padding-bottom: 5px;
    }
    
    .legend-item {
      display: flex;
      align-items: center;
      margin-bottom: 8px;
      font-size: 0.8rem;
      transition: all 0.3s ease;
    }
    
    .legend-item.clickable {
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .legend-item.clickable:hover {
      background: rgba(184, 157, 84, 0.1);
      border-radius: 5px;
      padding: 5px;
    }
    
    .legend-color {
      width: 15px;
      height: 15px;
      border-radius: 3px;
      margin-right: 8px;
    }
    
    .color-old {
      background: rgba(184, 157, 84, 0.7);
      border: 1px solid var(--accent);
    }
    
    .color-new {
      background: rgba(33, 150, 243, 0.7);
      border: 1px solid #2196f3;
    }
    
    .color-site {
      background: rgba(76, 175, 80, 0.7);
      border: 1px solid #4caf50;
    }
    
    /* Available Plots Link */
    .available-plots-link {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background: var(--accent);
      color: var(--primary);
      text-decoration: none;
      border-radius: 5px;
      font-weight: 600;
      transition: var(--transition);
      font-size: 0.9rem;
      width: 100%;
      text-align: center;
      box-sizing: border-box;
    }
    
    .available-plots-link:hover {
      background: #a58a4a;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(184, 157, 84, 0.3);
    }
    
    /* Map Popup Footer */
    .map-popup-footer {
      background: var(--light-accent);
      padding: 15px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .map-actions {
      display: flex;
      gap: 10px;
    }
    
    .map-action-btn {
      padding: 8px 15px;
      border-radius: 5px;
      font-weight: 500;
      cursor: pointer;
      transition: var(--transition);
      border: none;
      font-size: 0.9rem;
    }
    
    .map-action-primary {
      background: var(--accent);
      color: var(--primary);
    }
    
    .map-action-primary:hover {
      background: #a58a4a;
    }
    
    .map-action-secondary {
      background: transparent;
      color: var(--text);
      border: 1px solid var(--light-text);
    }
    
    .map-action-secondary:hover {
      background: rgba(0, 0, 0, 0.05);
    }
    
    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes pulse {
      0% {
        opacity: 0.5;
        transform: scale(1);
      }
      50% {
        opacity: 0.8;
        transform: scale(1.05);
      }
      100% {
        opacity: 0.5;
        transform: scale(1);
      }
    }
    
    /* Responsive Styles */
    @media (max-width: 992px) {
      .about-content,
      .contact-container {
        grid-template-columns: 1fr;
      }
      
      .about-text {
        padding-right: 0;
      }
      
      .contact-info {
        padding-right: 0;
      }
    }
    
    @media (max-width: 768px) {
      header {
        padding: 15px 20px;
      }
      
      header.scrolled {
        padding: 10px 20px;
      }
      
      .logo h1 {
        font-size: 1.4rem;
      }
      
      nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
      }
      
      nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
      }
      
      nav a {
        margin: 15px 0;
        font-size: 1.2rem;
      }
      
      .mobile-menu-btn {
        display: block;
      }
      
      section {
        padding: 80px 20px;
      }
      
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn {
        width: 200px;
        text-align: center;
      }
      
      .about-stats {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .offices-grid {
        grid-template-columns: 1fr;
      }
      
      .map-popup-container {
        width: 95%;
        height: 90vh;
      }
      
      .map-popup-header {
        padding: 15px 20px;
      }
      
      .map-popup-header h2 {
        font-size: 1.2rem;
      }
      
      .map-legend {
        max-width: 180px;
        padding: 10px;
      }
      
      .map-popup-footer {
        padding: 10px 20px;
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }
      
      .map-actions {
        width: 100%;
        justify-content: flex-end;
      }
      
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      }
      
      .image-popup-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
      }
      
      .image-popup-prev {
        left: 10px;
      }
      
      .image-popup-next {
        right: 10px;
      }
      
      /* WhatsApp Chat Widget Responsive */
      .whatsapp-chat-widget {
        width: 90vw;
        left: 5vw;
        height: 70vh;
        bottom: 80px;
      }
      
      .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
      }
      
      .whatsapp-link {
        font-size: 1.7rem;
      }
    }
    
    @media (max-width: 576px) {
      .projects-grid,
      .services-grid,
      .blog-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
      }
      
      .about-stats {
        grid-template-columns: 1fr;
      }
      
      .contact-form {
        padding: 25px;
      }
      
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }