@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;&display=swap');

:root{
    --navy:#0f2145;
    --navy-light:#1a3366;
    --amber:#f5a623;
    --white:#ffffff;
    --grey-bg:#f5f6f8;
    --grey-card:#f0f2f5;
    --grey-border:#e2e6ed;
    --text-main:#0f2145;
    --text-light:#8a9ab8;
    --text-sub:#5a6a8a;
    --radius:12px;
    --shadow:0 4px 24px rgba(15, 33, 69, 0.08);
    --shadow-hover:0 8px 40px rgba(15, 33, 69, 0.12);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: DM Sans, sans-serif;
    background:var(--white);
    color: var(--text-main);
    line-height: 1.6;
}

a{
    text-decoration: none;
    color: inherit;
}

.navbar{
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--grey-border);
    padding: 0;
}

.navbar-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.logo{
    font-family: Syne, sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--navy);
}

.logo span{
    color: var(--amber);
}

.btn-nav{
    background: var(--navy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.2s ease;
}

.btn-nav:hover{
    background: var(--navy-light);
}

.hero{
    background: var(--navy);
    padding: 80px 24px;
}

.hero-container{
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge{
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-headline{
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-headline .accent{
    color: var(--amber);
}

.hero-sub{
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.search-bar{
    display: flex;
    gap: 8px;
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius);
    max-width: 680px;
    margin: 0 auto;
}

.search-input-wrap input{
    width: 100%;
    border:none;
    outline: none;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    padding: 10px 12px;
    color: var(--text-main);
}

.category-select{
    border: none;
    outline: none;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-sub);
    padding: 10px 12px;
    background: var(--grey-bg);
    border-radius:8px;
    cursor: pointer;
}

.btn-search{
    background: var(--amber);
    color: var(--navy);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-search:hover{
    opacity: 0.9;
}

.categories{
    padding: 80px 24px;
    background: var(--grey-bg);
}

.section-label{
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title{
    font-family: 'Syne', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 40px;
}

.categories-card{
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.category-card{
    border-color: var(--navy);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.cat-icon{
    font-size: 2rem;
    margin-bottom: 12px;
}

.cat-name{
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.cat-count{
    font-size: 0.9rem;
    color: var(--text-light);
}

.featured{
    padding: 80px 24px;
    background: var(--white);
}

.section-sub{
    color: var(--text-sub);
    font-size: 1rem;
    margin-top: -24px;
    margin-bottom: 40px;
}

.listings-card{
    background: var(--white);
    border: 1px solid var(--grey-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
}

.listings-card:hover{
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.featured-card{
    border-color: var(--amber);
}

.card-badge{
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--amber);
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}

.card-img-placeholder{
    background: var(--grey-bg);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.card-body{
    padding: 20px;
}

.card-category{
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--amber);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.card-name{
    font-family: 'Syne', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.card-rating{
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.stars{
    color: var(--amber);
    font-size: 0.9rem;
}

.rating-num{
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
}

.review-count{
    font-size: 0.8rem;
    color: var(--text-light);
}

.card-desc{
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.5;
    margin-bottom: 16px;
}

.card-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
}

.card-location{
    font-size: 0.82rem;
    color: var(--text-light);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-cta{
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
}

.footer{
    background: var(--navy);
    padding: 60px 24px 32px;
}

.footer-container{
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand{
    margin-bottom: 32px;
}

.footer-brand{
    margin-bottom: 32px;
}

.footer-brand .logo{
    color: var(--white);
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 12px;
}

.footer-brand p{
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    max-width: 320px;
    line-height: 1.6;
}

.footer-links{
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
}

.footer-link a:hover{
    color: var(--amber);
}

.footer-bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px; 
}

.footer-bottom p{
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.services-list{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.service-tag{
    background: var(--grey-bg);
    border: 1px solid var(--grey-border);
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}

.claim-hero {
  background: var(--navy);
  padding: 60px 24px;
}

.claim-hero .section-title {
  color: var(--white);
}

.claim-hero .section-sub {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.claim-hero .section-label {
  color: var(--amber);
}

.claim-form-section {
  padding: 60px 24px;
  background: var(--grey-bg);
}

.claim-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--grey-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

.btn-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-submit:hover {
  background: var(--navy-light);
}

.form-error {
  background: #fff0f0;
  border: 1px solid #ffcccc;
  color: #cc0000;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.success-message {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* ===== SEARCH PAGE ===== */
.search-page-hero {
  background: var(--navy);
  padding: 40px 24px;
}

.search-page-hero .search-bar {
  max-width: 800px;
}

.search-results {
  padding: 60px 24px;
}

.loading {
  color: var(--text-light);
  font-size: 0.95rem;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-sub);
}

.empty-state a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  display: block;
  margin-top: 12px;
}

/* ===== LISTING PAGE ===== */
.listing-cover {
  background: var(--grey-bg);
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listing-cover-placeholder {
  font-size: 5rem;
}

.listing-detail-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
}

.listing-name {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.listing-location {
  color: var(--text-sub);
  font-size: 0.95rem;
  margin-top: 8px;
}

.listing-section {
  margin-top: 36px;
}

.listing-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.listing-actions {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
}

.btn-claim {
  background: var(--grey-bg);
  color: var(--navy);
  border: 1px solid var(--grey-border);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
}

.listing-images {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px;
  background: var(--grey-bg);
}

.listing-img {
  width: 100%;
  max-width: 400px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}