:root {
	--alq-primary: #1f9d55;
	--alq-primary-dark: #167a42;
	--alq-accent: #f5a623;
	--alq-dark: #16281f;
	--alq-text: #333;
	--alq-muted: #6b7280;
	--alq-border: #e5e7eb;
	--alq-bg-alt: #f6faf7;
	--alq-radius: 10px;
	--alq-shadow: 0 4px 16px rgba(0,0,0,.06);
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--alq-text);
	line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--alq-dark); margin: 0 0 12px; }
a { color: inherit; text-decoration: none; }

.alq-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Buttons */
.alq-btn { display: inline-block; padding: 12px 26px; border-radius: 30px; font-weight: 600; cursor: pointer; border: none; transition: .2s; }
.alq-btn-primary { background: var(--alq-accent); color: #16281f; }
.alq-btn-primary:hover { background: #e0940f; }
.alq-btn-outline { border: 2px solid var(--alq-primary); color: var(--alq-primary); background: transparent; }
.alq-btn-outline:hover { background: var(--alq-primary); color: #fff; }
.alq-btn-block { width: 100%; text-align: center; }
.alq-center { text-align: center; margin-top: 30px; }

/* Icons */
.alq-icon { display: inline-block; vertical-align: -3px; flex-shrink: 0; }

/* Header */
.alq-topbar { background: var(--alq-primary); color: #fff; font-size: 12.5px; }
.alq-topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 8px 20px; gap: 16px; flex-wrap: wrap; }
.alq-topbar-inner a { color: #fff; display: inline-flex; align-items: center; gap: 5px; }
.alq-topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.alq-topbar-socials { display: flex; align-items: center; gap: 10px; }
.alq-topbar-socials a { opacity: .9; }
.alq-topbar-socials a:hover { opacity: 1; }

.alq-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.04); position: relative; gap: 20px; }
.alq-logo { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 20px; color: var(--alq-primary); }
.main-menu, .footer-menu { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.footer-menu { flex-direction: column; gap: 8px; }
.main-menu a { font-weight: 500; }
.main-menu a:hover { color: var(--alq-primary); }
.alq-nav-actions { display: flex; align-items: center; gap: 14px; }
.alq-cta-btn { background: var(--alq-accent); color: #16281f; padding: 10px 22px; border-radius: 30px; font-weight: 600; white-space: nowrap; }
.alq-icon-btn { display: flex; align-items: center; justify-content: center; color: var(--alq-muted); flex-shrink: 0; }
.alq-icon-btn:hover { color: var(--alq-primary); }
.alq-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.alq-menu-toggle span { width: 22px; height: 2px; background: var(--alq-dark); border-radius: 2px; }

/* Hero */
.alq-hero { position: relative; background: #16281f center/cover no-repeat; padding: 120px 0 100px; color: #fff; text-align: center; }
.alq-hero-overlay { position: absolute; inset: 0; background: rgba(10,20,15,.45); }
.alq-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.alq-hero h1 { color: #fff; font-size: 42px; }
.alq-hero p { font-size: 17px; margin-bottom: 24px; }

.alq-search-form { position: relative; z-index: 2; max-width: 900px; margin: -34px auto 0; background: #fff; border-radius: 60px; box-shadow: var(--alq-shadow); display: flex; align-items: center; padding: 8px 8px 8px 24px; gap: 10px; flex-wrap: wrap; }
.alq-search-field { flex: 1; min-width: 140px; padding: 0 14px; border-right: 1px solid var(--alq-border); }
.alq-search-field:last-of-type { border-right: none; }
.alq-search-field label { display: block; font-size: 11px; text-transform: uppercase; color: var(--alq-muted); font-weight: 600; }
.alq-search-field input { border: none; width: 100%; font-size: 14px; padding: 4px 0; color: var(--alq-text); }
.alq-search-field input:focus { outline: none; }
.alq-search-form .alq-btn { white-space: nowrap; }

.alq-page-hero { position: relative; background: #16281f center/cover no-repeat; padding: 90px 0; color: #fff; text-align: center; }
.alq-page-hero.alq-page-hero-plain { background: var(--alq-primary); }
.alq-page-hero h1 { color: #fff; margin: 0; position: relative; z-index: 1; }

.alq-breadcrumb { padding: 16px 20px; font-size: 13px; color: var(--alq-muted); }
.alq-breadcrumb a { color: var(--alq-primary); }

/* Sections */
.alq-section { padding: 60px 0; }
.alq-section-alt { background: var(--alq-bg-alt); }
.alq-section-title { text-align: center; font-size: 28px; }
.alq-section-sub { text-align: center; color: var(--alq-muted); margin-top: -8px; margin-bottom: 30px; }

/* Grid & Cards */
.alq-grid { display: grid; gap: 24px; margin-top: 20px; }
.alq-grid-3 { grid-template-columns: repeat(3, 1fr); }
.alq-grid-4 { grid-template-columns: repeat(4, 1fr); }

.alq-card { background: #fff; border-radius: var(--alq-radius); overflow: hidden; box-shadow: var(--alq-shadow); display: block; transition: transform .2s, box-shadow .2s; }
.alq-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,.1); }
.alq-card-img { position: relative; aspect-ratio: 4/3; background: #eee; overflow: hidden; display: block; }
.alq-card-img img { width: 100%; height: 100%; object-fit: cover; }
.alq-img-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg,#e5e7eb,#f3f4f6); }
.alq-card-body { padding: 16px; }
.alq-card-location { display: flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--alq-muted); }
.alq-card-title { font-size: 16px; margin: 8px 0 6px; line-height: 1.35; }
.alq-card-divider { border: none; border-top: 1px solid var(--alq-border); margin: 10px 0; }
.alq-card-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--alq-muted); }
.alq-card-meta-single { display: flex; align-items: center; gap: 5px; font-size: 13px; color: var(--alq-muted); margin: 6px 0; }
.alq-card-price { color: var(--alq-primary); }
.alq-card-price strong { font-size: 15px; }
.alq-card-duration { display: flex; align-items: center; gap: 4px; }

.alq-fav-btn { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.9); border: none; display: flex; align-items: center; justify-content: center; color: var(--alq-dark); cursor: pointer; z-index: 2; }
.alq-fav-btn:hover { color: #e0455c; }
.alq-pin-badge { position: absolute; bottom: 10px; right: 10px; width: 30px; height: 30px; border-radius: 50%; background: var(--alq-primary); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 2; }

.alq-destination-card .alq-card-img { aspect-ratio: 4/3; }
.alq-card-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.7), rgba(0,0,0,.05) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; color: #fff; }
.alq-card-overlay h3 { color: #fff; margin: 0; font-size: 19px; }
.alq-card-overlay span { display: flex; align-items: center; gap: 5px; font-size: 13px; opacity: .95; margin-top: 4px; }

.alq-stars { color: var(--alq-accent); display: inline-flex; align-items: center; gap: 1px; margin: 4px 0; }
.alq-review-count { color: var(--alq-muted); font-size: 13px; margin-left: 4px; }

/* Why us */
.alq-feature-card { text-align: center; background: #fff; border-radius: var(--alq-radius); padding: 30px 16px; box-shadow: var(--alq-shadow); }
.alq-feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: var(--alq-bg-alt); color: var(--alq-primary); margin-bottom: 12px; }

/* Single Package */
.alq-package-header { margin-top: 24px; }
.alq-package-title { font-size: 30px; margin: 0 0 6px; }
.alq-package-subline { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; color: var(--alq-muted); font-size: 13px; }

.alq-package-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; margin: 20px auto 40px; height: 420px; }
.alq-gallery-main { height: 100%; }
.alq-gallery-main img { border-radius: var(--alq-radius); width: 100%; height: 100%; object-fit: cover; }
.alq-gallery-main .alq-img-placeholder { border-radius: var(--alq-radius); height: 100%; }
.alq-gallery-thumbs { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 10px; height: 100%; }
.alq-gallery-thumb { position: relative; border-radius: var(--alq-radius); overflow: hidden; background: #eee; }
.alq-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.alq-more-photos { position: absolute; inset: 0; background: rgba(0,0,0,.5); color: #fff; display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 13px; font-weight: 600; }

.alq-package-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; margin-bottom: 60px; }

.alq-info-strip { display: flex; gap: 20px; flex-wrap: wrap; background: #fff; border: 1px solid var(--alq-border); border-radius: var(--alq-radius); padding: 16px 20px; margin-bottom: 24px; }
.alq-info-strip div { display: flex; align-items: center; gap: 10px; font-size: 13px; flex: 1; min-width: 130px; }
.alq-info-icon { width: 34px; height: 34px; border-radius: 8px; background: var(--alq-bg-alt); color: var(--alq-primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.alq-info-text { display: flex; flex-direction: column; }
.alq-info-strip strong { color: var(--alq-dark); font-weight: 600; font-size: 13px; }
.alq-info-strip span:last-child { color: var(--alq-muted); font-size: 12.5px; margin-top: 1px; }

.alq-detail-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0; }
.alq-detail-card { border-radius: var(--alq-radius); padding: 16px; display: flex; gap: 12px; align-items: flex-start; }
.alq-detail-card:nth-child(1) { background: #e8f7ee; }
.alq-detail-card:nth-child(2) { background: #ecebfc; }
.alq-detail-card:nth-child(3) { background: #fcebf1; }
.alq-detail-card:nth-child(4) { background: #e5f6fa; }
.alq-detail-icon { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,.75); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.alq-detail-card:nth-child(1) .alq-detail-icon { color: #1f9d55; }
.alq-detail-card:nth-child(2) .alq-detail-icon { color: #6c5ce7; }
.alq-detail-card:nth-child(3) .alq-detail-icon { color: #e0457a; }
.alq-detail-card:nth-child(4) .alq-detail-icon { color: #0aa3b5; }
.alq-detail-card strong { display: block; color: var(--alq-dark); margin-bottom: 2px; font-size: 13.5px; }
.alq-detail-card p { margin: 0; font-size: 13px; color: var(--alq-muted); }

.alq-incl-excl { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.alq-incl-excl ul { list-style: none; padding: 0; margin: 0; }
.alq-incl-excl li { display: flex; align-items: flex-start; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--alq-border); font-size: 14px; }
.alq-li-icon { flex-shrink: 0; margin-top: 1px; }
.alq-icon-yes { color: var(--alq-primary); }
.alq-icon-no { color: #d33; }

.alq-accordion-item { border: 1px solid var(--alq-border); border-radius: 8px; margin-bottom: 10px; overflow: hidden; }
.alq-accordion-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; background: #fff; border: none; padding: 14px 18px; text-align: left; cursor: pointer; font-weight: 600; font-family: 'Poppins', sans-serif; }
.alq-accordion-head span:nth-child(2) { flex: 1; }
.alq-day-label { display: inline-block; background: var(--alq-bg-alt); color: var(--alq-primary); font-size: 12px; padding: 3px 10px; border-radius: 20px; font-weight: 700; }
.alq-accordion-body { max-height: 0; overflow: hidden; transition: max-height .25s ease; padding: 0 18px; }
.alq-accordion-item.open .alq-accordion-body { max-height: 500px; padding: 0 18px 16px; }
.alq-accordion-icon { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--alq-bg-alt); color: var(--alq-primary); flex-shrink: 0; }
.alq-accordion-icon .alq-icon-minus { display: none; }
.alq-accordion-item.open .alq-accordion-icon .alq-icon-plus { display: none; }
.alq-accordion-item.open .alq-accordion-icon .alq-icon-minus { display: inline-block; }

.alq-map-embed iframe { border-radius: var(--alq-radius); }

/* Booking sidebar */
.alq-booking-widget { position: sticky; top: 20px; background: #fff; border: 1px solid var(--alq-border); border-radius: var(--alq-radius); box-shadow: var(--alq-shadow); padding: 22px; }
.alq-booking-price-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; padding-bottom: 16px; border-bottom: 1px solid var(--alq-border); }
.alq-booking-price, .alq-booking-total { display: flex; flex-direction: column; }
.alq-booking-price span, .alq-booking-total span { font-size: 12px; color: var(--alq-muted); text-transform: uppercase; letter-spacing: .3px; }
.alq-booking-price strong { font-size: 24px; color: var(--alq-primary); font-family: 'Poppins', sans-serif; }
.alq-booking-total { text-align: right; }
.alq-booking-total strong { font-size: 18px; color: var(--alq-dark); font-family: 'Poppins', sans-serif; }

.alq-field { display: block; margin-bottom: 14px; font-size: 13px; }
.alq-field > span:first-child { display: block; font-weight: 600; margin-bottom: 6px; color: var(--alq-dark); }
.alq-field input, .alq-field textarea { width: 100%; padding: 10px 12px; border: 1px solid var(--alq-border); border-radius: 6px; font-family: inherit; }
.alq-field input:focus, .alq-field textarea:focus { outline: none; border-color: var(--alq-primary); }
.alq-field-input-wrap { display: flex; align-items: center; gap: 8px; border: 1px solid var(--alq-border); border-radius: 6px; padding: 0 12px; }
.alq-field-input-wrap svg { color: var(--alq-primary); flex-shrink: 0; }
.alq-field-input-wrap input { border: none; padding: 10px 0; }
.alq-field-input-wrap input:focus { outline: none; }

.alq-counter-field { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.alq-counter-field > div:first-child span { display: block; font-weight: 600; font-size: 13.5px; color: var(--alq-dark); }
.alq-counter-field small { display: block; color: var(--alq-muted); font-size: 11px; margin-top: 1px; }
.alq-counter { display: flex; align-items: center; gap: 10px; }
.alq-counter button { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--alq-border); background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--alq-primary); transition: background .15s; }
.alq-counter button:hover { background: var(--alq-bg-alt); }
.alq-counter button:disabled { opacity: .35; cursor: not-allowed; }
.alq-counter input { width: 26px; text-align: center; border: none; font-weight: 700; font-size: 14px; color: var(--alq-dark); background: transparent; -moz-appearance: textfield; }
.alq-counter input::-webkit-outer-spin-button, .alq-counter input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.alq-toggle-more { background: none; border: none; color: var(--alq-primary); font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 12px; display: inline-flex; align-items: center; gap: 5px; font-size: 13.5px; }
.alq-more-options { background: var(--alq-bg-alt); border-radius: 8px; padding: 12px 14px; margin-bottom: 12px; }
.alq-addon-field { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; margin-bottom: 10px; gap: 10px; }
.alq-addon-field:last-child { margin-bottom: 0; }
.alq-addon-field input { width: 55px; padding: 6px; border: 1px solid var(--alq-border); border-radius: 6px; text-align: center; }

.alq-form-divider { border: none; border-top: 1px solid var(--alq-border); margin: 4px 0 16px; }

.alq-booking-notice { display: flex; align-items: center; gap: 8px; padding: 12px 14px; border-radius: 8px; margin-bottom: 14px; font-size: 13px; }
.alq-notice-success { background: #e6f6ed; color: var(--alq-primary-dark); }
.alq-notice-error { background: #fdecec; color: #b91c1c; }

.alq-ask-card { margin-top: 16px; background: #fff; border: 1px solid var(--alq-border); border-radius: var(--alq-radius); box-shadow: var(--alq-shadow); padding: 22px; text-align: center; }
.alq-ask-logo { margin-bottom: 14px; font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--alq-primary); }
.alq-ask-card .alq-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }

/* Blog */
.alq-blog-single { display: grid; grid-template-columns: 2.5fr 1fr; gap: 40px; padding: 40px 20px; }
.alq-post-thumb img { border-radius: var(--alq-radius); margin: 16px 0; }
.alq-page-content { padding: 40px 20px; }
.widget { margin-bottom: 24px; }
.widget-title { font-size: 15px; text-transform: uppercase; letter-spacing: .5px; }

/* Footer */
.alq-footer { background: var(--alq-dark); color: #cfe3d6; margin-top: 60px; }
.alq-newsletter { background: var(--alq-primary); color: #fff; }
.alq-newsletter-inner { display: flex; justify-content: space-between; align-items: center; padding: 30px 20px; gap: 20px; flex-wrap: wrap; }
.alq-newsletter h3, .alq-newsletter p { color: #fff; margin: 0; }
.alq-newsletter-form { display: flex; gap: 8px; }
.alq-newsletter-form input { padding: 12px 16px; border-radius: 30px; border: none; min-width: 240px; }
.alq-newsletter-form button { padding: 12px 22px; border-radius: 30px; border: none; background: var(--alq-dark); color: #fff; cursor: pointer; }

.alq-footer-columns { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 30px; padding: 50px 20px; }
.alq-footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; }
.alq-footer-col ul { list-style: none; padding: 0; margin: 0; }
.alq-footer-col li { margin-bottom: 8px; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.alq-footer-col li svg { color: #7fae8f; flex-shrink: 0; }
.alq-social-icons { display: flex; gap: 10px; margin-bottom: 16px; }
.alq-social-icons a { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #2f4739; display: flex; align-items: center; justify-content: center; color: #cfe3d6; }
.alq-social-icons a:hover { background: var(--alq-primary); border-color: var(--alq-primary); color: #fff; }
.alq-footer-bottom { border-top: 1px solid #24382c; padding: 18px 20px; text-align: center; font-size: 13px; }

/* Responsive */
@media (max-width: 900px) {
	.alq-grid-3, .alq-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.alq-package-layout, .alq-package-gallery, .alq-blog-single { grid-template-columns: 1fr; }
	.alq-footer-columns { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
	.alq-grid-3, .alq-grid-4 { grid-template-columns: 1fr; }
	.alq-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; display: none; flex-direction: column; padding: 10px 20px; box-shadow: var(--alq-shadow); }
	.alq-nav.open { display: flex; }
	.main-menu { flex-direction: column; gap: 12px; padding: 10px 0; }
	.alq-menu-toggle { display: flex; }
	.alq-cta-btn { display: none; }
	.alq-search-form { flex-direction: column; align-items: stretch; border-radius: 20px; }
	.alq-incl-excl, .alq-detail-cards { grid-template-columns: 1fr; }
	.alq-footer-columns { grid-template-columns: 1fr; }
	.alq-hero h1 { font-size: 28px; }
}
