/* ============================================
   Commercial Gallery - Frontend Stylesheet
   Clean, Minimal, Professional Design
   ============================================ */

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a2e;
    --primary-light: #16213e;
    --accent: #0f3460;
    --accent-hover: #0a2647;
    --green: #27ae60;
    --green-light: #2ecc71;
    --whatsapp: #25d366;
    --orange: #e67e22;
    --red: #e74c3c;
    --text: #2c3e50;
    --text-light: #7f8c8d;
    --text-muted: #95a5a6;
    --border: #e8ecef;
    --bg: #ffffff;
    --bg-light: #f8f9fa;
    --bg-section: #f5f6f8;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.12);
    --radius: 10px;
    --radius-lg: 14px;
    --transition: all 0.25s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* === Navbar === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.navbar-brand:hover {
    color: var(--primary);
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.brand-text {
    letter-spacing: -0.5px;
    font-weight: 800;
}

.brand-accent {
    color: var(--accent);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
    background: var(--bg-light);
}

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-trigger i {
    font-size: 10px;
    margin-left: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    padding: 6px;
    z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text);
    border-radius: 6px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--accent);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    color: var(--accent);
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: var(--accent);
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    margin-left: 8px;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 52, 96, 0.3);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}

.navbar-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Hero === */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7), 0 2px 5px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    background: rgba(255, 255, 255, 0.12); /* transparent glass */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;

    font-size: 18px;
    color: #ffffff;

    max-width: 640px;
    margin: 0 auto 40px;
    padding: 14px 20px;

    line-height: 1.7;
    font-weight: 500;

    text-align: center;

    /* Better readability */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);

    /* subtle shadow for depth */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.hero-search {
    display: flex;
    gap: 0;
    max-width: 680px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.search-input-group i {
    color: var(--text-muted);
    font-size: 14px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 12px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: transparent;
}

.search-select {
    border: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
    padding: 16px 20px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: transparent;
    cursor: pointer;
    min-width: 140px;
}

.search-btn {
    padding: 16px 32px;
    background: var(--accent);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn:hover {
    background: var(--accent-hover);
}

/* === Sections === */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* === Categories === */
.categories-section {
    background: var(--bg-section);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.category-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    color: var(--text);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
    color: var(--text);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--bg-section);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--accent);
    color: #fff;
}

.category-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.category-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.category-arrow {
    display: inline-flex;
    margin-top: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--bg-section);
    color: var(--accent);
    font-size: 12px;
    transition: var(--transition);
}

.category-card:hover .category-arrow {
    background: var(--accent);
    color: #fff;
}

/* === Listing Cards === */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.listing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

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

.listing-card-link {
    display: block;
    color: var(--text);
}

.listing-card-link:hover {
    color: var(--text);
}

.listing-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.listing-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.listing-card:hover .listing-card-image img {
    transform: scale(1.05);
}

.listing-badge {
    position: absolute;
    top: 12px;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.listing-badge.type {
    right: 12px;
    background: var(--accent);
    color: #fff;
}

.listing-badge.featured {
    left: 12px;
    background: var(--orange);
    color: #fff;
}

.listing-card-body {
    padding: 20px;
}

.listing-card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.4;
}

.listing-card-location {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.listing-card-location i {
    color: var(--accent);
    margin-right: 4px;
    font-size: 12px;
}

.listing-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.listing-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.listing-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.listing-seats {
    font-size: 13px;
    color: var(--text-light);
}

.listing-seats i {
    margin-right: 4px;
}

.listing-card-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.amenity-tag {
    padding: 3px 10px;
    background: var(--bg-section);
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.amenity-tag.more {
    background: var(--accent);
    color: #fff;
}

/* === Page Header === */
.page-header {
    padding: 100px 0 40px;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.page-header p {
    font-size: 14px;
    color: var(--text-light);
}

/* === Breadcrumb === */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 16px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* === Filters === */
.filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 32px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.filter-input,
.filter-select {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: var(--transition);
}

.filter-input:focus,
.filter-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.08);
}

.filter-input {
    min-width: 160px;
}

.filter-small {
    min-width: 100px;
    width: 120px;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--accent-hover);
}

.filter-reset {
    padding: 10px 16px;
    font-size: 13px;
    color: var(--text-light);
    border-radius: 8px;
}

.filter-reset:hover {
    background: var(--bg-section);
    color: var(--red);
}

.results-info {
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-light);
}

/* === No Results === */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.no-results i {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--border);
}

.no-results h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text);
}

/* === Detail Page === */
.detail-header {
    padding-bottom: 20px;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-section);
}

.gallery-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
}

.gallery-thumb {
    flex: 0 0 72px;
    width: 72px;
    height: 54px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    padding: 0;
    background: none;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--accent);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.detail-badges .listing-badge {
    position: static;
}

.detail-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.detail-location {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.detail-location i {
    color: var(--accent);
    margin-right: 6px;
}

.detail-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--bg-section);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.price-period {
    font-size: 14px;
    color: var(--text-light);
}

.detail-seats {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.detail-amenities,
.detail-description {
    margin-bottom: 24px;
}

.detail-amenities h3,
.detail-description h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-item {
    padding: 8px 14px;
    background: var(--bg-section);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text);
}

.amenity-item i {
    color: var(--green);
    margin-right: 6px;
}

.description-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
}

.detail-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* === Buttons === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 52, 96, 0.3);
    color: #fff;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid var(--accent);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-outline:hover {
    background: var(--accent);
    color: #fff;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--whatsapp);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: #fff;
}

/* === Floating Actions === */
.floating-actions {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.whatsapp-float,
.call-float {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff !important;
    transition: var(--transition);
}

.whatsapp-float {
    background: var(--whatsapp);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: #1da851;
}

.call-float {
    background: var(--accent);
    box-shadow: 0 4px 16px rgba(15, 52, 96, 0.4);
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 52, 96, 0.5);
    background: var(--primary);
}

/* === Inquiry Form === */
.inquiry-section {
    background: var(--bg-section);
}

.inquiry-box {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.inquiry-box h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.inquiry-box p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.required {
    color: var(--red);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: #fff;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-error {
    display: block;
    font-size: 12px;
    color: var(--red);
    margin-top: 4px;
}

/* === Why Section === */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: #fff;
    border: 1px solid var(--border);
    transition: var(--transition);
}

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

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--bg-section);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
}

.why-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* === Team === */
.team-section {
    background: var(--bg-section);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

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

.team-image {
    height: 220px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.team-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
}

.team-btn.whatsapp {
    background: #e8f8ee;
    color: var(--whatsapp);
}

.team-btn.whatsapp:hover {
    background: var(--whatsapp);
    color: #fff;
}

.team-btn.linkedin {
    background: #e8f0fe;
    color: #0a66c2;
}

.team-btn.linkedin:hover {
    background: #0a66c2;
    color: #fff;
}

/* === CTA === */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: #fff;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-box,
.contact-form-box {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-info-box h2,
.contact-form-box h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-info-box>p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    background: var(--bg-section);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.5;
}

.contact-item a {
    color: var(--accent);
}

/* === Footer === */
.footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand .brand-icon {
    background: rgba(255, 255, 255, 0.15);
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 4px;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.contact-list li i {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.4);
    width: 14px;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.6);
}

.contact-list li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}


/* === Alert === */
.alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    position: relative;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}

.alert-close:hover {
    opacity: 1;
}

/* === Pagination === */
.pagination-wrap {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.pagination-wrap nav {
    display: flex;
}

.pagination-wrap .relative {
    display: flex;
    gap: 4px;
}

.pagination-wrap a,
.pagination-wrap span {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
}

.pagination-wrap a:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.pagination-wrap span[aria-current="page"] span {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar-toggle {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        gap: 4px;
    }

    .navbar-menu.open {
        display: flex;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-btn {
        margin: 8px 0 0;
        width: 100%;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 12px;
    }

    .search-select {
        border-left: none;
        border-top: 1px solid var(--border);
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .listings-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-box {
        padding: 24px;
    }

    .filters-bar {
        padding: 16px;
    }

    .detail-actions {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .gallery-main img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 24px;
    }

    .detail-price-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}