/*
Theme Name: Million Luxury
Theme URI: https://millionluxury.com
Author: Million Luxury Team
Author URI: https://millionluxury.com
Description: A luxury real estate WordPress theme inspired by millionluxury.com
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: million-luxury
Tags: luxury, real-estate, responsive

Million Luxury WordPress Theme
Copyright 2024 Million Luxury
*/

/* =========================================
   CSS Variables
   ========================================= */
:root {
    --ml-primary: #000000;
    --ml-secondary: #1a1a1a;
    --ml-gold: #c9a962;
    --ml-gold-light: #d4b87a;
    --ml-text: #333333;
    --ml-text-light: #666666;
    --ml-white: #ffffff;
    --ml-bg-light: #f8f8f8;
    --ml-bg-dark: #0a0a0a;
    --ml-border: #e0e0e0;
    --ml-shadow: rgba(0, 0, 0, 0.1);
    --ml-font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --ml-font-heading: 'Playfair Display', Georgia, serif;
    --ml-transition: all 0.3s ease;
    --ml-container: 1400px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--ml-font-main);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ml-text);
    background-color: var(--ml-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--ml-gold);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* =========================================
   Typography
   ========================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--ml-font-main);
    font-weight: 500;
    line-height: 1.2;
    color: var(--ml-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
}

/* =========================================
   Layout
   ========================================= */
.ml-container {
    width: 100%;
    max-width: var(--ml-container);
    margin: 0 auto;
    padding: 0 20px;
}

.ml-section {
    padding: 80px 0;
}

.ml-section--dark {
    background-color: var(--ml-bg-dark);
    color: var(--ml-white);
}

.ml-section--light {
    background-color: var(--ml-bg-light);
}

/* =========================================
   Header & Navigation
   ========================================= */
.ml-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--ml-white);
    border-bottom: 1px solid var(--ml-border);
    transition: var(--ml-transition);
}

.ml-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.ml-header__logo img {
    height: 50px;
    width: auto;
}

.ml-header__nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ml-nav {
    display: flex;
    gap: 35px;
}

.ml-nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ml-primary);
    position: relative;
}

.ml-nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ml-gold);
    transition: var(--ml-transition);
}

.ml-nav__link:hover::after {
    width: 100%;
}

.ml-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--ml-primary);
    color: var(--ml-white);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--ml-transition);
}

.ml-header__cta:hover {
    background: var(--ml-gold);
    color: var(--ml-white);
}

.ml-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.ml-mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ml-primary);
    transition: var(--ml-transition);
}

/* =========================================
   Hero Section
   ========================================= */
.ml-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--ml-bg-dark);
    padding-top: 100px;
    overflow: hidden;
}

.ml-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--ml-bg-dark) 0%, var(--ml-secondary) 100%);
}

.ml-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 20px;
}

.ml-hero__stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 60px;
}

.ml-stat {
    text-align: center;
}

.ml-stat__number {
    display: block;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--ml-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.ml-stat__label {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ml-white);
}

.ml-hero__title {
    color: var(--ml-white);
    margin-bottom: 30px;
}

.ml-hero__title span {
    display: block;
    color: var(--ml-gold);
}

.ml-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Recent Transactions Section
   ========================================= */
.ml-transactions {
    padding: 100px 0;
}

.ml-transactions__header {
    text-align: center;
    margin-bottom: 50px;
}

.ml-transactions__title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ml-gold);
    margin-bottom: 15px;
}

.ml-transactions__heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ml-transactions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.ml-property {
    position: relative;
    background: var(--ml-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 30px var(--ml-shadow);
    transition: var(--ml-transition);
}

.ml-property:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ml-property__image {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.ml-property__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ml-transition);
}

.ml-property:hover .ml-property__image img {
    transform: scale(1.05);
}

.ml-property__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--ml-gold);
    color: var(--ml-white);
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ml-property__content {
    padding: 25px;
}

.ml-property__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--ml-primary);
}

.ml-property__address {
    font-size: 0.85rem;
    color: var(--ml-text-light);
    margin-bottom: 15px;
}

.ml-property__details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--ml-border);
}

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

.ml-property__detail strong {
    color: var(--ml-primary);
    font-weight: 600;
}

.ml-property__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ml-gold);
}

.ml-property__arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ml-primary);
    color: var(--ml-white);
    transition: var(--ml-transition);
}

.ml-property:hover .ml-property__arrow {
    background: var(--ml-gold);
}

/* =========================================
   About Section
   ========================================= */
.ml-about {
    position: relative;
    padding: 120px 0;
    background: var(--ml-bg-light);
}

.ml-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ml-about__images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ml-about__image {
    aspect-ratio: 1;
    overflow: hidden;
}

.ml-about__image:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.ml-about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-about__content {
    padding: 40px 0;
}

.ml-about__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ml-gold);
    margin-bottom: 20px;
}

.ml-about__title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.3;
}

.ml-about__text {
    color: var(--ml-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.ml-about__text:last-of-type {
    margin-bottom: 30px;
}

/* =========================================
   New Developments Section
   ========================================= */
.ml-developments {
    padding: 100px 0;
    background: var(--ml-bg-dark);
}

.ml-developments__header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ml-developments__title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ml-gold);
    margin-bottom: 15px;
}

.ml-developments__heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ml-white);
}

.ml-developments__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ml-gold);
    padding-bottom: 5px;
    border-bottom: 1px solid var(--ml-gold);
}

.ml-developments__link:hover {
    color: var(--ml-white);
    border-color: var(--ml-white);
}

.ml-developments__slider {
    position: relative;
    overflow: hidden;
}

.ml-developments__track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 20px 0;
}

.ml-developments__track::-webkit-scrollbar {
    display: none;
}

.ml-development {
    flex: 0 0 300px;
    scroll-snap-align: start;
    position: relative;
    aspect-ratio: 9/16;
    overflow: hidden;
    border-radius: 0;
}

.ml-development__video,
.ml-development__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ml-development__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--ml-white);
}

.ml-development__name {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.ml-development__location {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

/* =========================================
   Partners Section
   ========================================= */
.ml-partners {
    padding: 80px 0;
    background: var(--ml-white);
}

.ml-partners__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.ml-partner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0.6;
    transition: var(--ml-transition);
}

.ml-partner:hover {
    opacity: 1;
}

.ml-partner img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: var(--ml-transition);
}

.ml-partner:hover img {
    filter: grayscale(0%);
}

/* =========================================
   News Section
   ========================================= */
.ml-news {
    padding: 100px 0;
}

.ml-news__header {
    text-align: center;
    margin-bottom: 50px;
}

.ml-news__title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ml-gold);
    margin-bottom: 15px;
}

.ml-news__heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ml-news__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.ml-news-card {
    background: var(--ml-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 30px var(--ml-shadow);
    transition: var(--ml-transition);
}

.ml-news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ml-news-card__image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.ml-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ml-transition);
}

.ml-news-card:hover .ml-news-card__image img {
    transform: scale(1.05);
}

.ml-news-card__content {
    padding: 25px;
}

.ml-news-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--ml-primary);
    line-height: 1.4;
}

.ml-news-card__excerpt {
    font-size: 0.9rem;
    color: var(--ml-text-light);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ml-news-card__meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--ml-text-light);
}

.ml-news-card__date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.ml-news-card__author {
    font-weight: 500;
}

.ml-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ml-gold);
    margin-top: 15px;
}

.ml-news-card__link:hover {
    gap: 12px;
}

/* =========================================
   CTA Section
   ========================================= */
.ml-cta {
    padding: 100px 0;
    background: var(--ml-gold);
    text-align: center;
}

.ml-cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ml-white);
    margin-bottom: 20px;
}

.ml-cta__text {
    font-size: 1.1rem;
    color: var(--ml-white);
    max-width: 600px;
    margin: 0 auto 30px;
}

.ml-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 45px;
    background: var(--ml-primary);
    color: var(--ml-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--ml-transition);
}

.ml-cta__btn:hover {
    background: var(--ml-white);
    color: var(--ml-primary);
}

/* =========================================
   Footer
   ========================================= */
.ml-footer {
    background: var(--ml-bg-dark);
    color: var(--ml-white);
    padding: 80px 0 30px;
}

.ml-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.ml-footer__brand img {
    height: 50px;
    margin-bottom: 20px;
}

.ml-footer__about {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.ml-footer__social {
    display: flex;
    gap: 15px;
}

.ml-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--ml-white);
    transition: var(--ml-transition);
}

.ml-footer__social a:hover {
    background: var(--ml-gold);
    border-color: var(--ml-gold);
}

.ml-footer__heading {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ml-gold);
    margin-bottom: 25px;
}

.ml-footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ml-footer__links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.ml-footer__links a:hover {
    color: var(--ml-gold);
}

.ml-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.ml-footer__contact-item svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--ml-gold);
}

.ml-footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.ml-footer__legal {
    display: flex;
    gap: 30px;
}

.ml-footer__legal a:hover {
    color: var(--ml-white);
}

/* =========================================
   Page Header
   ========================================= */
.ml-page-header {
    padding: 180px 0 80px;
    background: var(--ml-bg-dark);
    text-align: center;
}

.ml-page-header__title {
    color: var(--ml-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 15px;
}

.ml-page-header__subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
}

/* =========================================
   Projects Grid
   ========================================= */
.ml-projects {
    padding: 80px 0;
}

.ml-projects__filters {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.ml-filter {
    position: relative;
}

.ml-filter__toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--ml-white);
    border: 1px solid var(--ml-border);
    font-size: 0.85rem;
    font-weight: 500;
}

.ml-filter__toggle svg {
    width: 16px;
    height: 16px;
}

.ml-filter__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--ml-white);
    border: 1px solid var(--ml-border);
    box-shadow: 0 10px 30px var(--ml-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--ml-transition);
    z-index: 10;
}

.ml-filter:hover .ml-filter__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ml-filter__option {
    display: block;
    padding: 12px 20px;
    font-size: 0.85rem;
    color: var(--ml-text);
    transition: var(--ml-transition);
}

.ml-filter__option:hover {
    background: var(--ml-bg-light);
    color: var(--ml-gold);
}

.ml-projects__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.ml-project-card {
    position: relative;
    background: var(--ml-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 30px var(--ml-shadow);
    transition: var(--ml-transition);
}

.ml-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.ml-project-card__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.ml-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--ml-transition);
}

.ml-project-card:hover .ml-project-card__image img {
    transform: scale(1.05);
}

.ml-project-card__logo {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--ml-white);
    padding: 10px 15px;
    max-width: 100px;
}

.ml-project-card__logo img {
    max-height: 30px;
    width: auto;
}

.ml-project-card__content {
    padding: 25px;
}

.ml-project-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--ml-primary);
}

.ml-project-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--ml-border);
}

.ml-project-card__meta-item {
    font-size: 0.8rem;
}

.ml-project-card__meta-label {
    color: var(--ml-text-light);
    display: block;
    margin-bottom: 3px;
}

.ml-project-card__meta-value {
    font-weight: 600;
    color: var(--ml-primary);
}

.ml-project-card__price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ml-gold);
}

.ml-project-card__price span {
    font-weight: 400;
    color: var(--ml-text-light);
}

/* =========================================
   Contact Form
   ========================================= */
.ml-contact {
    padding: 80px 0;
}

.ml-contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.ml-contact__info {
    padding: 40px 0;
}

.ml-contact__title {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ml-gold);
    margin-bottom: 15px;
}

.ml-contact__heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 30px;
}

.ml-contact__text {
    color: var(--ml-text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.ml-contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ml-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ml-contact__item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--ml-gold);
}

.ml-contact__item-content {
    font-size: 0.95rem;
}

.ml-contact__item-label {
    font-size: 0.8rem;
    color: var(--ml-text-light);
    margin-bottom: 3px;
}

.ml-form {
    background: var(--ml-bg-light);
    padding: 40px;
}

.ml-form__title {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.ml-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ml-form__group {
    margin-bottom: 20px;
}

.ml-form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--ml-text);
}

.ml-form__input,
.ml-form__textarea,
.ml-form__select {
    width: 100%;
    padding: 14px 18px;
    font-size: 0.95rem;
    border: 1px solid var(--ml-border);
    background: var(--ml-white);
    transition: var(--ml-transition);
}

.ml-form__input:focus,
.ml-form__textarea:focus,
.ml-form__select:focus {
    outline: none;
    border-color: var(--ml-gold);
}

.ml-form__textarea {
    min-height: 120px;
    resize: vertical;
}

.ml-form__submit {
    width: 100%;
    padding: 16px 30px;
    background: var(--ml-primary);
    color: var(--ml-white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--ml-transition);
}

.ml-form__submit:hover {
    background: var(--ml-gold);
}

/* =========================================
   Single Property/Project
   ========================================= */
.ml-single-hero {
    padding: 150px 0 80px;
    background: var(--ml-bg-dark);
}

.ml-single-hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ml-single-hero__title {
    color: var(--ml-white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.ml-single-hero__subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 30px;
}

.ml-single-hero__meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.ml-single-hero__meta-item {
    text-align: center;
}

.ml-single-hero__meta-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ml-gold);
}

.ml-single-hero__meta-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ml-single-hero__price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ml-gold);
}

.ml-single-hero__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.ml-single-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   Pagination
   ========================================= */
.ml-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.ml-pagination__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--ml-border);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--ml-transition);
}

.ml-pagination__item:hover,
.ml-pagination__item--active {
    background: var(--ml-primary);
    border-color: var(--ml-primary);
    color: var(--ml-white);
}

/* =========================================
   Breadcrumbs
   ========================================= */
.ml-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.ml-breadcrumbs a {
    color: rgba(255,255,255,0.6);
}

.ml-breadcrumbs a:hover {
    color: var(--ml-gold);
}

.ml-breadcrumbs span {
    color: rgba(255,255,255,0.4);
}

/* =========================================
   Utilities
   ========================================= */
.text-gold { color: var(--ml-gold); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1200px) {
    .ml-footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ml-about__grid {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .ml-nav {
        display: none;
    }
    
    .ml-mobile-toggle {
        display: flex;
    }
    
    .ml-hero__stats {
        gap: 40px;
    }
    
    .ml-about__grid {
        grid-template-columns: 1fr;
    }
    
    .ml-about__images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .ml-contact__grid {
        grid-template-columns: 1fr;
    }
    
    .ml-single-hero__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .ml-section {
        padding: 60px 0;
    }
    
    .ml-hero__stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .ml-transactions__grid,
    .ml-news__grid,
    .ml-projects__grid {
        grid-template-columns: 1fr;
    }
    
    .ml-footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ml-footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .ml-form__row {
        grid-template-columns: 1fr;
    }
    
    .ml-developments__header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ml-container {
        padding: 0 15px;
    }
    
    .ml-property__details {
        flex-wrap: wrap;
    }
    
    .ml-partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
