:root {
--primary: #003b95;
--primary-dark: #00234f;
--accent: #febb02;
--bg-light: #f5f7fb;
--bg-soft: #eef1f7;
--text-main: #1f2937;
--text-muted: #6b7280;
--radius-lg: 14px;
--radius-md: 10px;
--radius-sm: 8px;
--shadow-soft: 0 14px 30px rgba(15, 23, 42, 0.12);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
background: #ffffff;
color: var(--text-main);
}
a {
text-decoration: none;
color: inherit;
}
button {
font-family: inherit;
}
.topbar {
background: #0b1120;
color: #e5e7eb;
font-size: 12px;
padding: 6px 8%;
display: flex;
justify-content: flex-end;
gap: 16px;
align-items: center;
flex-wrap: wrap;
}
.topbar span {
opacity: 0.9;
}
.topbar a {
color: #e5e7eb;
opacity: 0.9;
}
.topbar a:hover {
opacity: 1;
text-decoration: underline;
}
header {
background: var(--primary);
color: #ffffff;
padding: 14px 8%;
display: flex;
align-items: center;
justify-content: space-between;
column-gap: 40px;
}
.logo {
font-size: 24px;
font-weight: 700;
letter-spacing: 0.5px;
white-space: nowrap;
}
.logo span {
font-weight: 300;
}
.header-right {
display: flex;
align-items: center;
justify-content: flex-end;
flex: 1;
gap: 18px;
flex-wrap: wrap;
}
.menu-links {
display: flex;
gap: 16px;
font-size: 14px;
flex-wrap: wrap;
}
.menu-links a {
padding: 6px 8px;
border-radius: 999px;
transition: background 0.2s;
}
.menu-links a:hover {
background: rgba(15, 23, 42, 0.2);
}
.header-controls {
display: flex;
gap: 8px;
align-items: center;
flex-wrap: wrap;
}
.pill {
background: transparent;
border-radius: 999px;
border: 1px solid #ffffff;
padding: 5px 11px;
font-size: 13px;
display: inline-flex;
align-items: center;
gap: 6px;
cursor: pointer;
}
.pill-icon {
font-size: 14px;
}
.btn-outline {
border-radius: 999px;
padding: 7px 14px;
border: 1px solid #ffffff;
background: transparent;
color: #ffffff;
font-size: 13px;
cursor: pointer;
}
.btn-solid {
border-radius: 999px;
padding: 7px 18px;
border: none;
background: #ffffff;
color: var(--primary);
font-size: 13px;
font-weight: 600;
cursor: pointer;
}
.call-popup-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.45);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
opacity: 0;
pointer-events: none;
transition: opacity 0.25s ease;
}
.call-popup-overlay.show {
opacity: 1;
pointer-events: auto;
}
.call-popup {
background: #ffffff;
width: 90%;
max-width: 480px;
border-radius: 18px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
padding: 26px 24px 20px;
text-align: center;
position: relative;
}
.call-popup-close {
position: absolute;
top: 10px;
right: 14px;
border: none;
background: transparent;
font-size: 22px;
cursor: pointer;
line-height: 1;
}
.cp-title {
font-size: 24px;
font-weight: 700;
color: #0057d9;
margin-bottom: 6px;
}
.cp-subtitle-red {
color: #e11d48;
font-size: 14px;
margin-bottom: 12px;
}
.cp-text {
font-size: 14px;
margin-bottom: 10px;
}
.cp-phone {
font-size: 24px;
font-weight: 700;
color: #0057d9;
margin-bottom: 14px;
}
.cp-circle {
width: 120px;
height: 120px;
border-radius: 999px;
border: 4px solid #dbeafe;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 12px;
}
.cp-phone-icon {
font-size: 44px;
color: #16a34a;
}
.cp-offer {
font-weight: 600;
margin-bottom: 4px;
}
.cp-note {
font-size: 12px;
color: #6b7280;
margin-bottom: 12px;
}
.cp-bottom-btn {
display: block;
width: 100%;
border: none;
border-radius: 8px;
background: #0057d9;
color: #ffffff;
padding: 10px 14px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
}
.hero {
background: var(--primary);
color: #ffffff;
padding: 22px 8% 90px;
position: relative;
overflow: visible;
}
.hero-text {
max-width: 640px;
}
.hero-text h1 {
font-size: 32px;
margin-bottom: 6px;
}
.hero-text p {
font-size: 14px;
color: #e5e7eb;
margin-bottom: 10px;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(15, 23, 42, 0.4);
border-radius: 999px;
padding: 4px 10px;
font-size: 11px;
margin-bottom: 8px;
}
.hero-badge span.icon {
font-size: 14px;
}
.search-area {
margin-top: 16px;
}
.search-tabs {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.search-tab {
padding: 7px 14px;
border-radius: 999px;
border: 1px solid transparent;
font-size: 13px;
background: rgba(15, 23, 42, 0.25);
color: #e5e7eb;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 6px;
}
.search-tab.active {
background: #ffffff;
color: var(--primary);
}
.search-tab span.icon {
font-size: 16px;
}
.search-card {
margin-top: 12px;
background: #f9fafb;
border-radius: var(--radius-lg);
padding: 14px;
box-shadow: var(--shadow-soft);
position: relative;
z-index: 10;
}
.search-form {
display: grid;
grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr auto; 
gap: 10px;
align-items: end;
width: 100%;
}
.form-group {
display: flex;
flex-direction: column;
gap: 4px;
font-size: 12px;
color: var(--text-muted);
width: 100%;
}
.form-label {
display: block;
font-size: 14px;
margin-bottom: 6px;
font-weight: 600;
}
select.form-input {
background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
background-repeat: no-repeat;
background-position: right 12px center;
background-size: 18px;
}
.form-input {
width: 100%;
padding: 12px 15px;
border: 1px solid #ccc;
border-radius: 25px;
background: #fff;
font-size: 15px;
outline: none;
box-sizing: border-box;
appearance: none; 
}
.search-form {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr auto;
gap: 15px;
align-items: end;
}
@media (max-width: 1024px) {
.search-form {
grid-template-columns: repeat(2, 1fr);
}
.search-form .form-group:first-child {
grid-column: span 2;
}
}
@media (max-width: 640px) {
.search-form {
grid-template-columns: 1fr;
}
.search-form > * {
grid-column: 1 / -1;
}
}
.form-input:focus {
border-color: var(--primary);
box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
}
.form-input--pill {
border-radius: 999px;
}
.btn-search {
border-radius: var(--radius-sm);
border: none;
background: var(--accent);
color: #1f2933;
font-weight: 600;
padding: 10px 20px;
cursor: pointer;
font-size: 14px;
align-self: stretch;
min-width: 120px;
white-space: nowrap;
width: 100%;
}
.btn-search:hover {
filter: brightness(0.97);
}
.search-extra {
display: flex;
align-items: center;
margin-top: 8px;
gap: 8px;
font-size: 13px;
color: #111827;
}
.search-extra input[type="checkbox"] {
width: 16px;
height: 16px;
}
.page-body {
background: var(--bg-light);
padding: 24px 8% 40px;
}
.section {
margin-bottom: 28px;
}
.section-header {
display: flex;
justify-content: space-between;
align-items: baseline;
margin-bottom: 14px;
gap: 12px;
}
.section-title {
font-size: 20px;
font-weight: 600;
}
.section-subtitle {
font-size: 13px;
color: var(--text-muted);
}
.offers-band {
display: grid;
grid-template-columns: 2fr 1.3fr;
gap: 14px;
}
.offer-card-main {
background: #ffffff;
border-radius: var(--radius-lg);
padding: 16px 18px;
display: flex;
flex-direction: column;
justify-content: space-between;
box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}
.offer-main-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 4px;
}
.offer-main-text {
font-size: 13px;
color: var(--text-muted);
margin-bottom: 10px;
}
.offer-chip-row {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-top: 6px;
}
.offer-chip {
font-size: 11px;
padding: 4px 10px;
border-radius: 999px;
background: var(--bg-soft);
}
.btn-offer {
align-self: flex-start;
margin-top: 10px;
background: #003b95;
color: #ffffff;
border-radius: 999px;
border: none;
padding: 7px 13px;
font-size: 13px;
cursor: pointer;
}
.offer-card-side {
background: #0b1120;
color: #e5e7eb;
border-radius: var(--radius-lg);
padding: 14px 16px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.offer-side-title {
font-size: 15px;
font-weight: 600;
margin-bottom: 4px;
}
.offer-side-text {
font-size: 13px;
opacity: 0.9;
}
.badge-small {
font-size: 10px;
border-radius: 999px;
padding: 2px 8px;
background: rgba(248, 250, 252, 0.15);
display: inline-block;
margin-bottom: 4px;
}
.card-grid {
display: grid;
grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 16px;
}
.destination-card {
background: #ffffff;
border-radius: var(--radius-lg);
overflow: hidden;
box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.destination-card:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(15, 23, 42, 0.14);
}
.destination-image {
height: 150px;
background-size: cover;
background-position: center;
}
.destination-body {
padding: 10px 12px 12px;
}
.destination-title {
font-size: 15px;
font-weight: 600;
margin-bottom: 3px;
}
.destination-meta {
font-size: 12px;
color: var(--text-muted);
}
.img-1 { background-image: url(images/mumbai.jpg); }
.img-2 { background-image: url(images/delhi.jpg); }
.img-3 { background-image: url(images/dubai.jpg); }
.img-4 { background-image: url(images/hangkok.jpg); }
.trip-planner {
padding: 40px 0;
}
.tp-title {
font-size: 28px;
font-weight: 700;
margin-bottom: 4px;
}
.tp-subtitle {
color: #6b7280;
margin-bottom: 18px;
font-size: 16px;
}
.tp-tabs {
display: flex;
gap: 18px;
margin-bottom: 20px;
flex-wrap: wrap;
}
.tp-tab {
padding: 8px 20px;
border-radius: 25px;
background: #f3f4f6;
border: none;
font-size: 15px;
cursor: pointer;
transition: 0.2s;
}
.tp-tab.active,
.tp-tab:hover {
background: #0057d9;
color: #fff;
}
.tp-cards {
display: flex;
gap: 22px;
overflow-x: auto;
padding-bottom: 10px;
scroll-behavior: smooth;
scrollbar-width: none;
}
.tp-cards::-webkit-scrollbar { display: none; }
.tp-card {
min-width: 240px;
background: #fff;
border-radius: 12px;
overflow: hidden;
cursor: pointer;
transition: 0.2s;
flex-shrink: 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.tp-card:hover {
transform: translateY(-4px);
}
.tp-card img {
width: 100%;
height: 150px;
object-fit: cover;
}
.tp-card h3 {
font-size: 17px;
margin: 10px;
}
.tp-card p {
font-size: 14px;
color: #6b7280;
margin: 0 10px 14px;
}
.property-type {
padding: 40px 0;
}
.pt-title {
font-size: 28px;
font-weight: 700;
margin-bottom: 18px;
}
.pt-cards {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: smooth;
scrollbar-width: none;
}
.pt-cards::-webkit-scrollbar { display: none; }
.pt-card {
min-width: 260px;
background: #fff;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
cursor: pointer;
transition: 0.2s;
}
.pt-card:hover { transform: translateY(-4px); }
.pt-card img {
width: 100%;
height: 170px;
object-fit: cover;
}
.pt-card h3 {
padding: 12px;
font-size: 17px;
font-weight: 600;
}
.explore-india {
padding: 40px 0;
}
.ex-title {
font-size: 28px;
font-weight: 700;
}
.ex-sub {
color: #6b7280;
margin-bottom: 20px;
}
.ex-cards {
display: flex;
gap: 20px;
overflow-x: auto;
scroll-behavior: smooth;
scrollbar-width: none;
}
.ex-cards::-webkit-scrollbar { display: none; }
.ex-card {
min-width: 230px;
background: #fff;
border-radius: 14px;
overflow: hidden;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
cursor: pointer;
transition: 0.2s;
}
.ex-card:hover { transform: translateY(-4px); }
.ex-card img {
width: 100%;
height: 150px;
object-fit: cover;
}
.ex-card h4 {
padding: 12px 12px 6px;
font-size: 17px;
font-weight: 600;
}
.ex-card p {
padding: 0 12px 15px;
font-size: 14px;
color: #6b7280;
}
.strip-cards {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 14px;
}
.strip-card {
background: #ffffff;
border-radius: var(--radius-md);
padding: 13px;
display: flex;
flex-direction: column;
justify-content: space-between;
box-shadow: 0 5px 12px rgba(15, 23, 42, 0.08);
}
.strip-title {
font-size: 15px;
font-weight: 600;
margin-bottom: 4px;
}
.strip-text {
font-size: 13px;
color: var(--text-muted);
}
footer {
font-size: 12px;
color: var(--text-muted);
padding: 20px 8%;
border-top: 1px solid #e5e7eb;
background: #ffffff;
margin-bottom: 90px; 
}
footer .footer-top {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 50px;
}
footer .footer-top a {
color: var(--text-muted);
}
footer .footer-top a:hover {
text-decoration: underline;
}
footer .footer-bottom {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 8px;
}
.phone-strip {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: #003b95;
color: #fff;
padding: 14px 0;
text-align: center;
z-index: 9999;
box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
}
.phone-strip img {
width: 40px;
height: 40px;
border-radius: 50%;
vertical-align: middle;
margin-right: 10px;
}
.phone-strip span {
font-size: 18px;
font-weight: 600;
}


.booking-modal{
border-radius:20px;
border:3px solid #0d3c84;
padding:20px;
}

.modal-close{
position:absolute;
right:15px;
top:15px;
}

.modal-title-main{
color:#0d3c84;
font-weight:700;
margin-bottom:10px;
}

.modal-red{
color:#e53935;
font-size:18px;
}

.modal-desc{
font-size:20px;
margin-top:15px;
}

.modal-phone{
display:block;
font-size:32px;
font-weight:700;
color:#0d3c84;
text-decoration:none;
margin:15px 0;
}

.call-circle{
width:120px;
height:120px;
border-radius:50%;
border:3px solid #8bb3e8;
display:flex;
align-items:center;
justify-content:center;
font-size:50px;
margin:20px auto;
color:#2db553;
}

.modal-offer{
margin-top:10px;
}

.modal-small{
color:#6b7280;
}

.modal-call-btn{
background:#0d3c84;
color:#fff;
padding:14px 25px;
font-size:18px;
border-radius:10px;
margin-top:15px;
display:inline-block;
}

.modal-call-btn:hover{
background:#0a2f66;
color:#fff;
}



@media (max-width: 1100px) {
.offers-band {
grid-template-columns: 1fr;
}
}
@media (max-width: 1024px) {
.search-form {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.search-form .form-group:nth-child(3),
.search-form .form-group:nth-child(4),
.search-form .btn-search {
grid-column: 1 / -1;
}
}
@media (max-width: 900px) {
header {
flex-direction: column;
align-items: flex-start;
row-gap: 10px;
}
.menu-links {
order: 1;
}
.header-controls {
order: 2;
}
.card-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.strip-cards {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 600px) {
.hero {
padding: 18px 5% 70px;
}
.page-body {
padding: 22px 5% 30px;
}
.search-form {
grid-template-columns: 1fr;
}
.btn-search {
width: 100%;
}
.card-grid {
grid-template-columns: 1fr;
}
.strip-cards {
grid-template-columns: 1fr;
}
.topbar {
padding: 6px 5%;
}
header {
padding: 12px 5% 10px;
}
.phone-strip span {
font-size: 16px;
}
}
