* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    background: #fefcf5;
    color: #1e2a32;
    scroll-behavior: smooth;
}
a{
	text-decoration:none;
}

:root {
    --orange: #f15a24;
    --orange-dark: #d14818;
    --deep-blue: #0b2b3b;
    --gold: #e7b42c;
    --light-bg: #fffaf2;
}
.btn-orange {
    background: var(--orange);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(241,90,36,0.3);
}
.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(241,90,36,0.4);
    color: white;
}
.btn-outline-orange {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    border-radius: 40px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.2s;
}
.btn-outline-orange:hover {
    background: var(--orange);
    color: white;
}
.btn-outline-light-custom {
    border: 1.5px solid rgba(255,255,255,0.7);
    background: transparent;
    color: white;
    border-radius: 40px;
    padding: 10px 24px;
    font-weight: 500;
    transition: all 0.2s;
}
.btn-outline-light-custom:hover {
    background: white;
    color: var(--orange);
    border-color: white;
}
.navbar {
    background: rgba(255,255,245,0.96) !important;
    backdrop-filter: blur(2px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 12px 0;
}
.navbar .nav-link {
    font-weight: 500;
    color: #1e2a32;
    margin: 0 6px;
    transition: 0.2s;
    font-size: 0.95rem;
}
.navbar .nav-link:hover {
    color: var(--orange);
}
.hero {
    background: url('../img/hero-image.jpg');
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center 35%;
    height: 82vh;
    position: relative;
    color: #fff;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
}
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 780px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.icon-box {
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 0;
    letter-spacing: -0.2px;
    color: #1f3e48;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
	font-size: 16px;
    font-weight: 700;
    border-right: solid 1px;
	    margin: 0;
}

.feature-card, .room-card {
    border: none;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}
.feature-card:hover, .room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}
.feature-card img, .room-card img {

    transition: transform 0.5s ease;
}
.feature-card:hover img, .room-card:hover img {
    transform: scale(1.03);
}
.experience {
    background: url('../img/hero-image3.jpg');
    padding: 3rem 2rem;
    box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
	    background-position: center;
    background-size: cover;

}


.experience h2{
	color:#fff;
}

.experience p{
	color:#fff;
}






.map-placeholder {
    height: 400px;
    background: url('../img/hero-image3.jpg') center/cover;
    border-radius: 32px;
    box-shadow: 0 15px 25px -8px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}
.map-placeholder::after {
    content: "📍 20 min to HPCA Stadium";
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    color: white;
    padding: 6px 18px;
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 500;
}
.testimonial-card {
    background: white;
    border-radius: 24px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transition: 0.2s;
    border-left: 4px solid var(--orange);
}
.testimonial-card i {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
}
.badge-match {
    background: #ffefe5;
    color: var(--orange);
    border-radius: 60px;
    padding: 5px 18px;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
}
.section-title {
    position: relative;
    display: inline-block;
    font-weight: 800;
    letter-spacing: -0.3px;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: var(--orange);
    border-radius: 4px;
}
/* Enquiry Form Styles */
.enquiry-form-card {
    background: white;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s;
}
.enquiry-form-card:hover {
    transform: translateY(-5px);
}
.form-floating > label {
    font-weight: 500;
    color: #6c757d;
}
.form-control:focus, .form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 0.25rem rgba(241,90,36,0.25);
}
.submit-btn {
    background: var(--orange);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    width: 100%;
}
.submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}
footer {
    background: #0f2129;
    color: #ddd;
    border-top: 4px solid var(--orange);
}
.social-icon {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    color: white;
    margin: 0 6px;
}
.social-icon:hover {
    background: var(--orange);
    transform: translateY(-3px);
}

.navbar-brand.logo-bunksterst{
	position: absolute; left: 50%; transform: translateX(-50%);
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	background:#fff;
	padding:12px;
	height:100px;
	width:100px;
	border-radius:100%;
	top:-4px;
}

.navbar-brand.logo-bunksterst img{
	height:100%;
	display:block;
	margin:0 auto;
}

.ftr-exp-list li{
	margin-top:6px;
}

.form-control:focus, .form-select:focus {
    border-color: none !important;
    box-shadow: none !important;
}

.fw-bold {
    font-weight: 600 !important;
}

#enquiry-section h2{
	font-size:35px;
}


@media (max-width: 768px) {
    .hero h1 {
       font-size: 1rem;
        font-weight: 400 !important;
        line-height: 30px;
    }
    .hero {
        height: 480px;
    }
    .btn-orange {
        padding: 10px 20px;
    }
    .feature-card img, .room-card img {
        height: auto;
    }
    .experience {
        border-radius: 32px;
        padding: 2rem 1rem;
    }
}

.icon-box img{
	width:40px;
}

.border-none {
	border:none ;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
	.lead {
		    font-size: 12px;
	}


.icon-box {
	border-right: none;
   
    max-width: 90%;
    display: block;
    margin: auto;
}
	
.btn-orange {
        padding: 15px 30px !important;
    }	
	
}