/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Roboto', sans-serif; color: #1a1a2e; line-height: 1.6; background: #fff; }
a { text-decoration: none; color: inherit; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo img { height: 45px; width: auto; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a { font-size: 15px; font-weight: 600; color: #333; padding: 8px 0; position: relative; }
.main-nav a:hover, .main-nav a.active { color: #1a6b4a; }
.main-nav a.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #1a6b4a; border-radius: 2px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; color: #333; cursor: pointer; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 600px; display: flex; align-items: center; background-size: cover; background-position: center; margin-top: 72px; }
.hero::before { content: ''; position: absolute; inset: 0; background: rgba(10, 30, 20, 0.7); }
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 650px; color: #fff; }
.hero-label { font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 16px; }
.hero-title { font-size: 48px; font-weight: 900; line-height: 1.15; margin-bottom: 20px; }
.hero-text { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: #1a6b4a; color: #fff; padding: 14px 32px; border-radius: 8px; font-size: 15px; font-weight: 700; transition: background .2s; border: none; cursor: pointer; }
.btn-primary:hover { background: #145a3d; color: #fff; }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; border: 2px solid #1a6b4a; color: #1a6b4a; padding: 12px 30px; border-radius: 8px; font-size: 15px; font-weight: 700; transition: all .2s; background: transparent; cursor: pointer; }
.btn-outline:hover { background: #1a6b4a; color: #fff; }

/* ===== SECTION COMMON ===== */
section { padding: 80px 0; }
.section-label { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #1a6b4a; margin-bottom: 8px; }
.section-title { font-size: 36px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: #1a1a2e; }
.section-text { font-size: 16px; color: #555; line-height: 1.7; max-width: 700px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: #f8faf9; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.about-text p { margin-bottom: 16px; font-size: 16px; color: #444; line-height: 1.8; }

/* ===== GROUP STRUCTURE ===== */
.group-section { background: #fff; }
.group-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.group-card { background: #f8faf9; border-radius: 16px; padding: 32px 28px; border: 1px solid #e8edf2; text-align: center; transition: box-shadow .2s; }
.group-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.group-card-num { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: #1a6b4a; color: #fff; font-size: 20px; font-weight: 800; border-radius: 12px; margin-bottom: 16px; }
.group-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.group-card p { font-size: 14px; color: #666; }

/* ===== SERVICES ===== */
.services-section { background: #f8faf9; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 40px; }
.service-card { background: #fff; border-radius: 16px; padding: 28px 24px; border: 1px solid #e8edf2; transition: box-shadow .2s, border-color .2s; display: flex; gap: 20px; align-items: flex-start; }
.service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-color: #1a6b4a; }
.service-card-icon { flex-shrink: 0; width: 64px; height: 64px; border-radius: 12px; overflow: hidden; }
.service-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.service-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: #1a1a2e; }
.service-card p { font-size: 14px; color: #555; line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; background-size: cover; background-position: center; padding: 80px 0; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: rgba(10, 30, 20, 0.75); }
.cta-banner .container { position: relative; z-index: 2; text-align: center; color: #fff; }
.cta-banner h2 { font-size: 36px; font-weight: 800; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 700px; margin: 0 auto 32px; line-height: 1.7; }

/* ===== SMSF / PROPERTY HERO ===== */
.page-hero { position: relative; min-height: 500px; display: flex; align-items: center; margin-top: 72px; background: linear-gradient(135deg, #0a1f14 0%, #1a3a2a 100%); color: #fff; overflow: hidden; }
.page-hero-content { max-width: 800px; margin: 0 auto; text-align: center; padding: 60px 20px; }
.page-hero-label { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #4ecb8a; margin-bottom: 16px; }
.page-hero-title { font-size: 38px; font-weight: 900; line-height: 1.25; margin-bottom: 20px; }
.page-hero-text { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 32px; }

/* ===== BENEFITS / CHECKLIST ===== */
.benefits-section { background: #f8faf9; }
.benefits-list { margin-top: 24px; }
.benefits-list li { font-size: 16px; color: #333; padding: 8px 0; display: flex; align-items: flex-start; gap: 10px; }
.benefits-list li::before { content: '✔'; color: #1a6b4a; font-weight: 700; flex-shrink: 0; }

/* ===== HOW IT WORKS ===== */
.steps-section { background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; counter-reset: step; }
.step-card { background: #f8faf9; border-radius: 12px; padding: 24px 20px; border: 1px solid #e8edf2; text-align: center; counter-increment: step; }
.step-card::before { content: counter(step); display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: #1a6b4a; color: #fff; font-weight: 800; border-radius: 50%; margin-bottom: 12px; font-size: 16px; }
.step-card p { font-size: 14px; color: #444; line-height: 1.6; font-weight: 600; }

/* ===== FAQ ===== */
.faq-section { background: #f8faf9; }
.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-item { background: #fff; border-radius: 12px; margin-bottom: 12px; border: 1px solid #e8edf2; overflow: hidden; }
.faq-question { width: 100%; padding: 20px 24px; background: none; border: none; text-align: left; font-size: 16px; font-weight: 700; color: #1a1a2e; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question::after { content: '+'; font-size: 22px; color: #1a6b4a; font-weight: 700; transition: transform .2s; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: #555; line-height: 1.7; }

/* ===== PROPERTY LISTINGS ===== */
.listings-section { background: #fff; }
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; margin-top: 40px; }
.listing-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8edf2; transition: box-shadow .2s; }
.listing-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.listing-card-img { height: 220px; overflow: hidden; }
.listing-card-img img { width: 100%; height: 100%; object-fit: cover; }
.listing-card-body { padding: 24px; }
.listing-card-price { font-size: 28px; font-weight: 800; color: #1a1a2e; margin-bottom: 8px; }
.listing-card-address { font-size: 14px; color: #666; margin-bottom: 16px; line-height: 1.5; }
.listing-card .btn-primary { width: 100%; justify-content: center; padding: 12px; font-size: 14px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: #f8faf9; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 40px; }
.testimonial-card { background: #fff; border-radius: 16px; padding: 28px 24px; border: 1px solid #e8edf2; }
.testimonial-card blockquote { font-size: 15px; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author-info strong { display: block; font-size: 15px; color: #1a1a2e; }
.testimonial-author-info span { font-size: 13px; color: #888; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: #f8faf9; border-radius: 12px; }
.contact-info-card i { font-size: 24px; color: #1a6b4a; margin-top: 4px; }
.contact-info-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.contact-info-card p, .contact-info-card a { font-size: 15px; color: #555; }
.contact-info-card a:hover { color: #1a6b4a; }
.contact-form { background: #f8faf9; border-radius: 16px; padding: 32px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; font-family: inherit; background: #fff; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: #1a6b4a; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form .consent-text { font-size: 12px; color: #888; margin-bottom: 16px; line-height: 1.5; }
.contact-form .btn-primary { width: 100%; justify-content: center; }

/* ===== FOOTER ===== */
.site-footer { background: #0a1f14; color: #fff; padding: 48px 0 24px; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-cta h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.footer-cta a { color: #4ecb8a; font-size: 16px; font-weight: 600; }
.footer-cta a:hover { color: #fff; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 16px; transition: background .2s; }
.footer-social a:hover { background: #1a6b4a; }
.footer-bottom { text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .group-cards { grid-template-columns: 1fr; }
    .hero-title { font-size: 36px; }
    .section-title { font-size: 28px; }
    .page-hero-title { font-size: 28px; }
}
@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .main-nav { position: fixed; top: 72px; left: 0; right: 0; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-100%); opacity: 0; pointer-events: none; transition: all .3s; }
    .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .main-nav ul { flex-direction: column; padding: 20px; gap: 0; }
    .main-nav a { display: block; padding: 14px 0; border-bottom: 1px solid #f0f0f0; }
    .hero { min-height: 480px; }
    .hero-title { font-size: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .listings-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-form .form-row { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 16px; text-align: center; }
    .steps-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .hero-title { font-size: 26px; }
    .page-hero-title { font-size: 24px; }
    .steps-grid { grid-template-columns: 1fr; }
}

/* ===== PROPERTY DETAIL PAGE ===== */

/* Sticky Sub-Navigation */
.prop-subnav { position: sticky; top: 72px; z-index: 999; background: #fff; border-bottom: 1px solid #e8edf2; padding: 0; }
.prop-subnav-inner { display: flex; gap: 32px; height: 48px; align-items: center; justify-content: flex-end; }
.prop-subnav a { font-size: 14px; font-weight: 600; color: #555; padding: 12px 0; position: relative; transition: color .2s; }
.prop-subnav a:hover, .prop-subnav a.active { color: #1a1a2e; }
.prop-subnav a.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: #1a1a2e; }

/* Hero Banner */
.prop-hero-banner { position: relative; min-height: 520px; display: flex; align-items: center; background-size: cover; background-position: center; overflow: hidden; }
.prop-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.prop-hero-banner .container { position: relative; z-index: 2; }
.prop-hero-content { max-width: 700px; margin: 0 auto; text-align: center; color: #fff; padding: 40px 0; }
.prop-badge { display: inline-block; background: #1a6b4a; color: #fff; padding: 8px 20px; border-radius: 6px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.prop-hero-title { font-size: 40px; font-weight: 900; line-height: 1.15; margin-bottom: 12px; }
.prop-hero-sub { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.prop-hero-price { font-size: 42px; font-weight: 900; margin-bottom: 20px; }
.prop-hero-stats { display: flex; justify-content: center; gap: 0; margin-top: 32px; }
.prop-hero-stat { text-align: center; padding: 20px 40px; background: rgba(26,107,74,0.9); border-right: 1px solid rgba(255,255,255,0.15); flex: 1; max-width: 200px; }
.prop-hero-stat:last-child { border-right: none; }
.prop-hero-stat-val { display: block; font-size: 28px; font-weight: 800; color: #fff; }
.prop-hero-stat-lbl { display: block; font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 4px; }

/* Property Details with floor plan */
.prop-details-section { background: #fff; padding: 60px 0; }
.prop-details-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; margin-top: 24px; align-items: start; }
.prop-details-img img { width: 100%; border-radius: 12px; }
.prop-details-table--full { grid-column: 1 / -1; }
.prop-details-table table { width: 100%; border-collapse: collapse; }
.prop-details-table tr { border-bottom: 1px solid #e8edf2; }
.prop-details-table tr:last-child { border-bottom: none; }
.prop-details-table td { padding: 14px 16px; font-size: 15px; }
.prop-detail-label { font-weight: 700; color: #1a1a2e; width: 40%; }
.prop-detail-value { color: #555; }

/* Two-column layout for sections */
.prop-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 24px; align-items: start; }
.prop-two-col--reverse { direction: ltr; }
.prop-two-col-text p { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 16px; }
.prop-two-col-text ul { margin: 12px 0 16px 20px; }
.prop-two-col-text li { font-size: 15px; color: #444; line-height: 1.8; list-style: disc; }
.prop-two-col-text strong { color: #1a1a2e; }
.prop-two-col-img img { width: 100%; border-radius: 12px; }
.prop-two-col-right { display: flex; flex-direction: column; gap: 24px; }

/* Tags */
.prop-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.prop-tag { background: #fff; color: #333; padding: 8px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; border: 1px solid #ddd; }

/* Property Overview */
.prop-overview-section { background: #fff; padding: 60px 0; }

/* Property Highlights */
.prop-highlights-section { background: #f8faf9; padding: 60px 0; }
.prop-highlights-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.prop-highlight-item { display: inline-flex; align-items: center; gap: 10px; padding: 10px 18px; background: #fff; border-radius: 24px; border: 1px solid #e8edf2; }
.prop-highlight-item i { color: #1a6b4a; font-size: 16px; flex-shrink: 0; }
.prop-highlight-item span { font-size: 14px; color: #333; font-weight: 500; }

/* Property Location */
.prop-location-section { background: #f8faf9; padding: 60px 0; }
.prop-location-img img { width: 100%; border-radius: 12px; }
.prop-location-features { background: #fff; border-radius: 16px; padding: 28px 24px; border: 1px solid #e8edf2; }
.prop-location-features h4 { font-size: 18px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; }
.prop-location-features ul { display: flex; flex-direction: column; gap: 12px; }
.prop-location-features li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #444; }
.prop-location-features li i { color: #1a6b4a; font-size: 14px; flex-shrink: 0; }

/* Property Investment */
.prop-investment-section { background: #fff; padding: 60px 0; }

/* Property Gallery */
.prop-gallery-section { background: #f8faf9; padding: 60px 0; }
.prop-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px; }
.prop-gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.prop-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.prop-gallery-item { cursor: pointer; }
.prop-gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.92); align-items: center; justify-content: center; flex-direction: column; }
.lightbox-overlay.active { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; z-index: 10; line-height: 1; }
.lightbox-close:hover { color: #ccc; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.15); border: none; color: #fff; font-size: 24px; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; z-index: 10; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-counter { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 16px; font-weight: 600; }

/* Property page responsive */
@media (max-width: 992px) {
    .prop-details-layout { grid-template-columns: 1fr; gap: 32px; }
    .prop-two-col { grid-template-columns: 1fr; gap: 32px; }
    .prop-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .prop-hero-stats { flex-wrap: wrap; }
    .prop-hero-stat { max-width: none; }
}
@media (max-width: 768px) {
    .prop-hero-banner { min-height: 420px; }
    .prop-hero-title { font-size: 28px; }
    .prop-hero-price { font-size: 32px; }
    .prop-hero-stats { flex-direction: column; }
    .prop-hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 14px 20px; }
    .prop-hero-stat:last-child { border-bottom: none; }
    .prop-subnav-inner { gap: 20px; justify-content: center; }
    .prop-gallery-grid { grid-template-columns: 1fr 1fr; }
    .prop-details-table td { padding: 10px 12px; font-size: 14px; }
}
@media (max-width: 480px) {
    .prop-hero-title { font-size: 24px; }
    .prop-gallery-grid { grid-template-columns: 1fr; }
}
