
        * 
         
/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  left:3px;
  top: 80%;
  z-index: 9999;
}

/* Style the icon bar links */
.icon-bar a {
  display:inline-flex;
  text-align:left;
  padding: 70px;
  /*color: #25D366;*/
  font-size: 40px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  /*background-color:#02AC10;*/
  color:transparent;
}


.whatsappcs {
  color:transparent;
  background-image:url(../images/whatsapp-cs.png);
  background-repeat:no-repeat;
}


/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar2 {
  position: fixed;
  left:3px;
  top: 90%;
  z-index: 9999;
}

/* Style the icon bar links */
.icon-bar2 a {
  display:inline-flex;
  text-align:left;
  padding: 70px;
  /*color: #25D366;*/
  font-size: 40px;
}

/* Style the social media icons with color, if you want */
.icon-bar2 a:hover {
  /*background-color:#02AC10;*/
  color:transparent;
}




.telegramcs {
  color:transparent;
  background-image:url(../images/telegram-cs.png);
  background-repeat:no-repeat;
}



.callcs {
  color:transparent;
  background-image:url(../images/call-cs.png);
  background-repeat:no-repeat;
}


             {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        header {
            background: linear-gradient(to right, #1a2a6c, #b21f1f, #fdbb2d);
            color: white;
            padding: 1rem;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
        }
        
        .desktop-menu {
            display: none;
        }
        
        .desktop-menu ul {
            display: flex;
            list-style: none;
        }
        
        .desktop-menu ul li {
            margin-left: 1.5rem;
        }
        
        .desktop-menu a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .desktop-menu a:hover {
            color: #f8f8f8;
            text-decoration: underline;
        }
        
        .mobile-menu-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background: #1a2a6c;
            transition: right 0.3s ease;
            z-index: 101;
            padding: 2rem;
            box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .close-menu {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            position: absolute;
            top: 1rem;
            right: 1rem;
            cursor: pointer;
        }
        
        .mobile-menu ul {
            list-style: none;
            margin-top: 2rem;
        }
        
        .mobile-menu ul li {
            margin-bottom: 1.5rem;
        }
        
        .mobile-menu a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            display: block;
            padding: 0.5rem 0;
        }
        
        .hero {
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/dungun-hero-img.jpg') no-repeat center center/cover;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            position: relative;
        }
        
        .hero-content {
            z-index: 1;
            max-width: 800px;
			margin-top: 80px;
            padding: 0 1rem;
        }
        
        .hero h1 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }
        
        .btn {
            display: inline-block;
            background: #fdbb2d;
            color: #333;
            padding: 0.8rem 1.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: #f8a71c;
        }
        
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
            color: #1a2a6c;
            font-size: 2rem;
            padding-top: 1rem;
        }
        
        .content-section {
            background: white;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }
        
        .content-section h2 {
            color: #1a2a6c;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .content-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .popular-areas {
            background: #e9ecef;
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
        }
        
        .popular-areas h3 {
            color: #1a2a6c;
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .popular-areas ul {
            list-style-position: inside;
            columns: 2;
        }
        
        .popular-areas li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
        }
        
        .models {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }
        
        .model-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            flex-direction: column;
        }
        
        .model-img {
            height: 450px;
            background-size: cover;
            background-position: center;
        }
        
        .model-info {
            padding: 1.5rem;
        }
        
        .model-info h3 {
            color: #1a2a6c;
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }
        
        .model-info p {
            margin-bottom: 0.5rem;
            color: #555;
        }
        
        .price-list {
            background: #f8f9fa;
            padding: 1rem;
            border-radius: 5px;
            margin-top: 1rem;
        }
        
        .price-list h4 {
            color: #1a2a6c;
            margin-bottom: 0.5rem;
            border-bottom: 1px solid #ddd;
            padding-bottom: 0.5rem;
        }
        
        .price-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.3rem;
        }
        
        footer {
            background: #1a2a6c;
            color: white;
            padding: 2rem 1rem;
            text-align: center;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: #fdbb2d;
            color: #333;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
            opacity: 0;
            transition: opacity 0.3s;
            z-index: 99;
            font-weight: bold;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        @media (min-width: 200px) {
            .model-img {
            height: 650px;
        }
        }
        
        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
            
            .desktop-menu {
                display: block;
            }
            
            .models {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 992px) {
            .models {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .popular-areas ul {
                columns: 3;
            }
			
			.model-img {
            height: 450px;
        }
        }
