
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #c9a961;
            --text-dark: #2c3e50;
            --text-light: #6c757d;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
        }
        
        .navbar {
            background: #fff !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .btn-book {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
        }
        
        .btn-book:hover {
            background: #b89950;
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .carousel-item {
            height: 600px;
            position: relative;
        }
        
        .carousel-item img {
            object-fit: cover;
            height: 100%;
            filter: brightness(0.7);
        }
        
        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            bottom: auto;
        }
        
        .carousel-caption h1 {
            font-size: 3.5rem;
            font-weight: 700;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
            margin-bottom: 1rem;
        }
        
        .carousel-caption p {
            font-size: 1.5rem;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
		    .hero {
            position: relative;
            height: 70vh;
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/assets/img/kaiadmin/logo.jpg') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .carousel-item {
                height: 400px;
            }
            
            .carousel-caption h1 {
                font-size: 2rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
        }
        
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .section-subtitle {
            color: var(--text-light);
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 3rem;
        }
        
        .apartment-card {
            border: none;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            height: 100%;
        }
        
        .apartment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .apartment-img {
            height: 220px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
            overflow: hidden;
        }
        
        .apartment-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .apartment-img-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .card-body {
            padding: 1.5rem;
        }
        
        .location-badge {
            background: var(--secondary-color);
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            display: inline-block;
            margin-bottom: 0.5rem;
        }
        
        .apartment-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 0.5rem 0;
        }
        
        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin: 1rem 0;
        }
        
        .btn-details {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.6rem 2rem;
            border-radius: 25px;
            font-weight: 600;
            width: 100%;
        }
        
        .btn-details:hover {
            background: #1a252f;
            color: white;
        }
        
        .custom-quote-section {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 3rem;
            border-radius: 15px;
            text-align: center;
            margin: 3rem 0;
        }
        
        .custom-quote-section h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .btn-quote {
            background: white;
            color: #f5576c;
            padding: 0.8rem 2.5rem;
            border-radius: 25px;
            font-weight: 600;
            border: none;
        }
        
        .info-section {
            background: #f8f9fa;
            padding: 4rem 0;
            margin-top: 4rem;
        }
        
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--secondary-color);
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--secondary-color);
        }
        
        .rating {
            background: var(--secondary-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            display: inline-block;
            font-weight: 600;
        }
     
        .badge-custom {
            background-color: var(--secondary-color);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.9rem;
        }


        .btn-book:hover {
            background-color: #e4bc0a;
            color: white;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 4rem 0;
            margin-top: 70px;
        }
        
        .hero-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        .price-tag {
            background-color: rgba(255,255,255,0.2);
            padding: 1rem 2rem;
            border-radius: 10px;
            display: inline-block;
            margin-top: 1rem;
        }
        
        .price-tag h3 {
            font-size: 2rem;
            margin: 0;
        }
        
        .section-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        
        .feature-box {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        
        .info-card {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #eee;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li i {
            color: var(--accent-color);
            margin-right: 0.5rem;
        }
        
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            padding: 3rem 0;
            margin: 3rem 0;
        }
        
        .cta-section h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s;
        }
        
        .btn-primary-custom:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .apartment-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s;
            height: 100%;
        }
        
        .apartment-card:hover {
            transform: translateY(-5px);
        }
        
        .apartment-card .card-img-top {
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }
        
        footer a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        footer a:hover {
            color: white;
        }
        
        .badge-custom {
            background-color: var(--secondary-color);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 500;
            font-size: 0.9rem;
        }
 .other-apartment-img {
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .other-apartment-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .other-apartment-card .card-body {
            padding: 1.5rem;
        }
         .btn-view {
            background: var(--primary-color);
            color: white;
            padding: 0.6rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
        }
        
        .btn-view:hover {
            background: var(--secondary-color);
            color: white;
        }


           
        .location-text {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        
        .location-text i {
            color: var(--secondary-color);
        }
        
        .price-badge {
            background: var(--secondary-color);
            color: white;
            padding: 1rem 2rem;
            border-radius: 10px;
            display: inline-block;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 1rem 0;
        }
        
        .info-box {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        
        .info-box h3 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .feature-item {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .feature-item i {
            color: var(--secondary-color);
            font-size: 1.5rem;
        }
        
        .arrangement-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .arrangement-item {
            text-align: center;
            padding: 1.5rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .arrangement-item i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }
        
        .arrangement-item h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0.5rem 0 0 0;
        }
        
        .arrangement-item p {
            color: var(--text-light);
            margin: 0;
        }
        
        .booking-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem;
            border-radius: 15px;
            margin: 3rem 0;
            text-align: center;
        }
        
        .booking-section h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
        
        .btn-booking {
            background: white;
            color: #667eea;
            padding: 1rem 3rem;
            border-radius: 25px;
            font-weight: 600;
            border: none;
            font-size: 1.1rem;
            margin: 0.5rem;
        }
        
        .btn-booking:hover {
            background: var(--secondary-color);
            color: white;
        }
        
        .other-apartments {
            margin: 4rem 0;
        }
        
        .other-apartment-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            transition: transform 0.3s;
        }
        
        .other-apartment-card:hover {
            transform: translateY(-5px);
        }
        
        .other-apartment-img {
            height: 200px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3rem;
        }
        
        .other-apartment-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .other-apartment-card .card-body {
            padding: 1.5rem;
        }
        
        .btn-view {
            background: var(--primary-color);
            color: white;
            padding: 0.6rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
        }
        
        .btn-view:hover {
            background: var(--secondary-color);
            color: white;
        }
        
        .footer {
            background: var(--primary-color);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        
        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
            font-weight: 600;
        }
        
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--secondary-color);
        }
        
        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--secondary-color);
        }
        
        .badge-custom {
            background: var(--secondary-color);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            display: inline-block;
            margin: 0.25rem;
        }
        
        @media (max-width: 768px) {
            .apartment-carousel .carousel-item {
                height: 300px;
            }
            
            .apartment-title {
                font-size: 1.8rem;
            }
        }

        .search-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            padding: 2rem;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }

            .form-control:focus, .form-select:focus {
            border-color: #1e88e5;
            box-shadow: 0 0 0 0.2rem rgba(30, 136, 229, 0.25);
        }
        
        .btn-search {
            background: linear-gradient(135deg, #1e88e5 0%, #9c27b0 100%);
            border: none;
            padding: 1rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s;
            color: white;
        }
        
        .btn-search:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(30, 136, 229, 0.4);
        }   