:root {
    --primary-color: #1a365d;
    --secondary-color: #d4af37;
    --accent-color: #2d3748;
    --light-color: #f8f9fa;
    --dark-color: #1a202c;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Header & Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.navbar-brand span {
    color: var(--secondary-color);
}

.nav-link {
    font-weight: 500;
    color: var(--primary-color) !important;
    margin: 0 5px;
    transition: all 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-toggler {
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826, 54, 93, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Authorized Partner Badge */
.authorized-badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Slider Section */        
.hero-slider .carousel-item {
    height: 80vh;
    min-height: 500px;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.carousel-caption {
    /* background: rgba(26, 54, 93, 0.85); */
    border-radius: 15px;
    padding: 30px;
    bottom: 20%;
    left: 10%;
    right: 10%;
    text-align: left;
}

.carousel-caption h2 {
    font-size: 2.8rem;
    color: var(--light-color);
    margin-bottom: 15px;
}

.carousel-caption p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.slider-cta {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 6px 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.slider-cta:hover {
    background-color: #c49a2e;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-size: 60%;
}

.carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin: 0 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
    
    .carousel-caption {
        bottom: 15%;
        padding: 20px;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding-top: 15px;
    }
    
    .nav-link {
        margin: 5px 0;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-item {
        height: 50vh;
        min-height: 350px;
    }
    
    .carousel-caption {
        bottom: 10%;
        left: 5%;
        right: 5%;
        padding: 15px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .slider-cta {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
    
    .authorized-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
}
.project-info {
    background-color: #f8f9fa;
}
.price-box {
    min-width: 180px;
    transition: transform 0.3s ease;
}
.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.features-list li {
    font-size: 1.1rem;
    padding: 8px 0;
}
.btn-warning {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #1a365d;
}
.btn-warning:hover {
    background-color: #c49a2e;
    border-color: #c49a2e;
    color: #1a365d;
}
.text-primary {
    color: #1a365d !important;
}
.pricing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.table-hover tbody tr:hover {
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}
.table {
    border-collapse: separate;
    border-spacing: 0;
}
.table th {
    font-weight: 600;
    font-size: 1.1rem;
}
.table td {
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}
.table td:first-child {
    border-left: 1px solid #dee2e6;
}
.table td:last-child {
    border-right: 1px solid #dee2e6;
}
.cost-sheet-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.btn-warning {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #1a365d;
}
.btn-warning:hover {
    background-color: #c49a2e;
    border-color: #c49a2e;
    color: #1a365d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-primary {
    background-color: #1a365d;
    border-color: #1a365d;
}
.btn-primary:hover {
    background-color: #152a4a;
    border-color: #152a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.text-primary {
    color: #1a365d !important;
}
.icon-circle {
    transition: transform 0.3s ease;
}
.cost-sheet-card:hover .icon-circle {
    transform: scale(1.1);
}

.floor-plans-section {
    background-color: #f8f9fa;
}
.plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.plan-image {
    height: 250px;
    overflow: hidden;
}
.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.plan-card:hover .plan-image img {
    transform: scale(1.05);
}
.plan-badge {
    border-bottom-right-radius: 10px;
}
.btn-warning {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #1a365d;
}
.btn-warning:hover {
    background-color: #c49a2e;
    border-color: #c49a2e;
    color: #1a365d;
    transform: translateY(-2px);
}
.btn-primary {
    background-color: #1a365d;
    border-color: #1a365d;
}
.btn-primary:hover {
    background-color: #152a4a;
    border-color: #152a4a;
}
.text-primary {
    color: #1a365d !important;
}
.gallery-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}
.plan-badge{
    background-color: #1a365d;
}







/* DESKTOP FLOATING */

/* DESKTOP */

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex !important;        /* ← force show always */
    flex-direction: column;
    gap: 12px;
    z-index: 2147483647;
    pointer-events: auto;            /* ← ensures clicks work */
  }
  
  .floating-contact a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex !important;        /* ← force flex on links */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff !important;          /* ← force white icon */
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,.25);
    cursor: pointer;
  }
  
  .call-float {
    background: #3767d4;
  }
  
  .whatsapp-float {
    background: #25D366;
  }
  
  /* SAME ON BOTH DESKTOP AND MOBILE */
  @media (max-width: 768px) {
  
    .floating-contact {
      position: fixed !important;
      right: 15px !important;
      bottom: 15px !important;
      gap: 10px !important;
      display: flex !important;
      z-index: 2147483647 !important;
    }
  
    .floating-contact a {
      width: 55px !important;
      height: 55px !important;
      font-size: 22px !important;
      display: flex !important;
    }
  
    /* Hide old mobile bar */
    .mobile-contact-bar {
      display: none !important;
    }
  }


