.elementor-90 .elementor-element.elementor-element-d97ce0f{--display:flex;}/* Start custom CSS *//* === Base Styles === */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');
        
:root {  
  /* New Color Palette */  
  --primary: #c52d2a;          /* Primary red */  
  --primary-dark: #9a2321;    /* Darker red (10% darker) */  
  --primary-light: #e07a70;    /* Secondary coral (acts as light variant) */  
  --primary-soft: #f8d7d6;     /* Very light red for backgrounds */  

  --secondary: #3a8f94;        /* Teal (3rd color) */  
  --secondary-dark: #2d7276;    /* Darker teal */  
  --secondary-light: #7abdc1;   /* Lighter teal */  

  --accent: #e07a70;           /* Coral (secondary color as accent) */  
  --accent-dark: #c45e54;      /* Darker coral */  
  --accent-light: #f0b3ad;     /* Lighter coral */  

  --neutral: #8c8c89;          /* Warm gray (4th color) */  
  --neutral-light: #d9d9d8;    /* Light gray */  
  --neutral-dark: #6e6e6b;     /* Dark gray */  

  /* Utility Colors */  
  --light: #ffffff;            /* Pure white */  
  --dark: #1a2e3d;            /* Deep blue-black (kept for contrast) */  
  --text: #333333;            /* Default text (unchanged) */  
  --text-light: #555555;      /* Lighter text */  
  --text-inverse: #ffffff;    /* White text for dark backgrounds */  

  /* Backgrounds */  
  --bg-light: #f9f9f9;        /* Off-white background */  
  --bg-gray: #f0f2f5;        /* Light gray background (unchanged) */  

  /* Shadows & Effects */  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);  
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.08);  
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);  
  --transition: all 0.3s ease;  
  
  /* Border Radius */  
  --radius-sm: 6px;  
  --radius-md: 8px;  
  --radius-lg: 12px;  
}  
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text);
            line-height: 1.6;
            background-color: var(--gray-light);
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 0;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            font-weight: 600;
        }
        
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        
        a:hover {
            color: var(--primary-dark);
        }
        
        /* === Navbar === */
        .navbar {
            background-color: white;
            box-shadow: var(--shadow-sm);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 15px 0;
        }
        
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            color: var(--primary);
            font-size: 1.5rem;
        }
        
        .logo i {
            color: var(--accent);
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
        }
        
        .nav-links a {
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--dark);
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-links a.active {
            color: var(--primary);
        }
        
        .nav-links a.active::after {
            width: 100%;
        }
        
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--dark);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* === Header === */
        .page-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 80px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCI+CiAgPGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iMzgiIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZmZmZiIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIgc3Ryb2tlLXdpZHRoPSIyIiAvPgo8L3N2Zz4=');
            opacity: 0.4;
        }
        
        .page-header .container {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        
        .page-header h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: white;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }
        
        .page-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--accent);
        }
        
        .page-header .subtitle {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 20px auto 0;
            opacity: 0.9;
            font-weight: 300;
        }
        
        .wave {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 50px;
        }
        
        /* === Filter/Search Bar === */
        .control-section {
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        
        .control-card {
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-lg);
            padding: 25px;
        }
        
        .control-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .search-box {
            flex: 1;
            min-width: 250px;
            max-width: 500px;
            position: relative;
        }
        
        .search-box input {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid var(--gray);
            border-radius: 50px;
            font-size: 1rem;
            padding-left: 50px;
            transition: var(--transition);
            font-family: 'Montserrat', sans-serif;
        }
        
        .search-box input:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
        }
        
        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .control-actions {
            display: flex;
            gap: 15px;
        }
        
        .action-btn {
            background: white;
            color: var(--primary);
            border: 1px solid var(--primary);
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Montserrat', sans-serif;
        }
        
        .action-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }
        
        .action-btn.secondary {
            color: var(--secondary);
            border-color: var(--secondary);
        }
        
        .action-btn.secondary:hover {
            background: var(--secondary);
            color: white;
        }
        
        /* === Units Listing === */
        .units-section {
            padding: 50px 0;
        }
        
        .section-header {
            margin-bottom: 30px;
            text-align: center;
        }
        
        .section-header h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .section-header p {
            color: var(--gray-dark);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .units-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .unit-card {
            background: white;
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-top: 4px solid var(--secondary);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .unit-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        
        .unit-header {
            background: var(--light);
            padding: 18px 25px;
            border-bottom: 1px solid var(--gray);
        }
        
        .unit-header h3 {
            margin: 0;
            color: var(--primary);
            font-size: 1.3rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .unit-header h3 i {
            color: var(--accent);
            font-size: 0.9em;
        }
        
        .unit-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .unit-info {
            display: flex;
            margin-bottom: 18px;
        }
        
        .info-icon {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1rem;
            min-width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .info-content {
            flex: 1;
        }
        
        .info-label {
            font-weight: 600;
            display: block;
            margin-bottom: 3px;
            color: var(--dark);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .special-services {
            background: rgba(0,168,89,0.08);
            padding: 18px;
            border-radius: var(--radius-sm);
            margin-top: auto;
            border-left: 3px solid var(--secondary);
        }
        
        .special-services h4 {
            margin-top: 0;
            color: var(--secondary);
            font-size: 1rem;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .special-services h4 i {
            font-size: 0.9em;
        }
        
        .service-item {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed rgba(0,0,0,0.1);
            font-size: 0.95rem;
        }
        
        .service-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .service-item:first-of-type {
            padding-top: 0;
        }
        
        /* === Map Section === */
        .map-section {
            padding: 50px 0;
            background-color: white;
        }
        
        .map-container {
            height: 450px;
            background: var(--gray-light);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* === Footer === */
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .footer-col h4 {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent);
        }
        
        .footer-col p {
            margin-bottom: 15px;
            color: rgba(255,255,255,0.7);
            font-size: 0.95rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-links i {
            color: var(--accent);
            font-size: 0.8rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            text-align: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.9rem;
        }
        
        /* === Utility Classes === */
        .badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-left: 10px;
        }
        
        .badge-primary {
            background-color: rgba(0, 102, 204, 0.1);
            color: var(--primary);
        }
        
        .badge-secondary {
            background-color: rgba(0, 168, 89, 0.1);
            color: var(--secondary);
        }
        
        .no-results {
            text-align: center;
            padding: 50px 0;
            color: var(--gray-dark);
        }
        
        .no-results i {
            font-size: 3rem;
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        /* === Responsive Adjustments === */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.3rem;
            }
            
            .page-header .subtitle {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-toggle {
                display: block;
            }
            
            .units-list {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .control-bar {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .search-box {
                width: 100%;
                max-width: 100%;
            }
            
            .control-actions {
                width: 100%;
                justify-content: space-between;
            }
            
            .action-btn {
                flex: 1;
                justify-content: center;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                padding: 60px 0 80px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .page-header .subtitle {
                font-size: 1rem;
            }
            
            .units-list {
                grid-template-columns: 1fr;
            }
            
            .control-card {
                padding: 20px;
            }
            
            .section-header h2 {
                font-size: 1.5rem;
            }
        }
        
        /* === Animations === */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        .float {
            animation: float 6s ease-in-out infinite;
        }
        
        /* === Custom Scrollbar === */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--gray-light);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--gray-dark);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        
                .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        
        .stat-card {
            background: white;
            border-radius: var(--radius-md);
            padding: 30px 20px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border-bottom: 3px solid var(--primary);
        }
        
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .stat-icon {
            width: 70px;
            height: 70px;
            background: var(--light);
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
        }
        
        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: var(--gray-dark);
            font-size: 0.95rem;
        }
        
        /* Animation for stat cards */
        .stats-grid .stat-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .stats-grid .stat-card:nth-child(2) {
            animation-delay: 0.3s;
        }
        
        .stats-grid .stat-card:nth-child(3) {
            animation-delay: 0.5s;
        }
        
        .stats-grid .stat-card:nth-child(4) {
            animation-delay: 0.7s;
        }
        
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 576px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }/* End custom CSS */