* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(89, 98, 181, 0.95);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 50px;
    margin-right: 15px;
}

.logo-text h2 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

.logo-text span {
    font-size: 12px;
    color: #f0f0f0;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu ul li a:hover {
    color: #f9c74f;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #f9c74f;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/image/1.jpeg') center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
	    margin: 144px 0px 0px -373px;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
	    margin: 0px 0px 0px -330px;
}

/* Buttons */
.btn-gold {
    background: linear-gradient(45deg, #d4af37, #f9c74f);
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-gold:hover {
    background: linear-gradient(45deg, #f9c74f, #d4af37);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

/* Section Titles */
.section-title {
    color: #d4af37;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
    margin-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f9c74f;
}

/* Cards */
.room-card, .facility-card {
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    height: 100%;
}

.room-card:hover, .facility-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.room-card img, .facility-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-card:hover img, .facility-card:hover img {
    transform: scale(1.1);
}

.card-body {
    padding: 25px;
}

.price-tag {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: bold;
}

/* Facilities */
.facility-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

/* Stats */
.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #d4af37;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #111, #000);
    color: #ccc;
    padding: 60px 0 20px;
}

.footer_title {
    color: #f9c74f;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer_text {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
}

.footer a {
    color: #ccc;
    transition: 0.3s;
    text-decoration: none;
}

.footer a:hover {
    color: #f9c74f;
}

.line-button {
    display: inline-block;
    margin-top: 10px;
    color: #f9c74f;
    border-bottom: 2px solid #f9c74f;
    padding-bottom: 5px;
}

.copy_right {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-top: 40px;
    text-align: center;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
/* Additional hover effect for about section */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d4af37;
}
/* about */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
}

.hero-content h1 {
    font-size: 50px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    max-width: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-content {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .timeline-icon, .timeline-image {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
}
* Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f9c74f;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.about-text h3 {
    color: #d4af37;
    font-size: 28px;
    margin: 25px 0 15px;
}

.about-image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    margin-top: 60px;
}

.stat-item {
    padding: 40px 20px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: #d4af37;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #666;
}

/* Journey Timeline */
.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #f9c74f, #d4af37);
}

.timeline-item {
    display: flex;
    margin: 60px 0;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    width: 45%;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-content h3 {
    color: #d4af37;
    font-size: 24px;
    margin-bottom: 15px;
}

.timeline-date {
    color: #f9c74f;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}

.timeline-icon {
    width: 10%;
    height: 80px;
    background: #f9c74f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    z-index: 2;
}

.timeline-image {
    width: 10%;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #f9c74f, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.team-name {
    font-size: 24px;
    color: #222;
    margin-bottom: 10px;
}

.team-role {
    color: #d4af37;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

/* Footer */
.footer {
    background: #000;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer_widget h3 {
    color: #f9c74f;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer_text {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
}

.copy_right {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}
/* rooms */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(89, 98, 181, 0.9);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 50px;
    margin-right: 15px;
}

.logo-text h2 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

.logo-text span {
    font-size: 12px;
    color: #f0f0f0;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu ul li a:hover {
    color: #f9c74f;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #f9c74f;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f9c74f;
}

/* Room Cards */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.room-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #d4af37;
    color: #000;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
}

.room-content {
    padding: 30px;
}

.room-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 10px;
}

.room-price {
    font-size: 24px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 15px;
}

.room-features {
    list-style: none;
    margin-bottom: 25px;
}

.room-features li {
    padding: 5px 0;
    color: #666;
    font-size: 15px;
}

.room-features li::before {
    content: "✦";
    color: #f9c74f;
    margin-right: 10px;
}

.btn-book {
    background: linear-gradient(45deg, #d4af37, #f9c74f);
    color: #000;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-book:hover {
    background: linear-gradient(45deg, #f9c74f, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    color: #000;
}

/* Room Details Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 35px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1001;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-gallery {
    position: relative;
    height: 400px;
}

.modal-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 40px;
}

.modal-title {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
}

.modal-price {
    font-size: 28px;
    color: #d4af37;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Facilities Section */
.facilities {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 100px 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.facility-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 5px solid #f9c74f;
    height: 100%;
}

.facility-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.facility-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.facility-title {
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
}

.facility-desc {
    color: #666;
    line-height: 1.7;
}

/* Blogs Section */
.blogs-section {
    padding: 100px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-date {
    color: #f9c74f;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 24px;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 80px 0;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.phone-numbers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.phone-item {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #f9c74f;
    display: block;
    margin-bottom: 10px;
}

/* Footer */
.footer {
    background: #000;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer_widget h3 {
    color: #f9c74f;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer_text {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
}

.copy_right {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .rooms-grid, .blogs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
}

/* FACILITIES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: rgba(89, 98, 181, 0.9);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo-section img {
    height: 50px;
    margin-right: 15px;
}

.logo-text h2 {
    margin: 0;
    font-size: 24px;
    color: #fff;
}

.logo-text span {
    font-size: 12px;
    color: #f0f0f0;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu ul li a:hover {
    color: #f9c74f;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #f9c74f;
    transition: width 0.3s ease;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f9c74f;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 80px;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.facility-card {
    background: #fff;
    border-radius: 25px;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-top: 6px solid #f9c74f;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #f9c74f, #d4af37);
}

.facility-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

.facility-icon {
    font-size: 80px;
    margin-bottom: 30px;
    display: block;
    background: linear-gradient(45deg, #f9c74f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.facility-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
}

.facility-desc {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.facility-highlight {
    background: linear-gradient(45deg, #f9c74f, #d4af37);
    color: #000;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 60px;
    color: #f9c74f;
    margin-bottom: 15px;
    font-weight: 700;
}

.stat-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

/* Location Section */
.location-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-info h3 {
    font-size: 32px;
    color: #d4af37;
    margin-bottom: 25px;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.location-feature {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #555;
}

.location-feature::before {
    content: "✅";
    margin-right: 15px;
    font-size: 20px;
}

/* Contact Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-number {
    font-size: 28px;
    font-weight: bold;
    color: #f9c74f;
    display: block;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: #000;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer_widget h3 {
    color: #f9c74f;
    margin-bottom: 20px;
    font-size: 20px;
}

.footer_text {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
}

.copy_right {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}