/* =========================
   DESIGN SYSTEM (GLOBAL)
========================= */
:root {
    --primary: #0F172A;   /* Dark Navy */
    --accent: #E67E22;    /* Orange */
    --text: #111;
    --bg: #ffffff;
    --card: #f8f8f8;
    --muted: #666;
}

/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text);
    background-color: #f5f7fa;
}

h1, h2, h3 {
    color: var(--primary);
}

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

/* =========================
   HEADER
========================= */
header {
    background-color: var(--bg);
    padding: 10px 0;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img {
    height: 50px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

header nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.3s;
}

header nav ul li a:hover {
    color: var(--accent);
}
/* =========================
   PREMIUM HEADER
========================= */
.main-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo */
.logo img {
    height: 45px;
}

/* Navigation */
.nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
}

.nav ul li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: 0.3s;
}

.nav ul li a:hover {
    color: var(--accent);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    border-radius: 8px;
    display: none;
    padding: 10px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-menu li {
    padding: 8px 20px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* CTA Button */
.header-cta .btn-primary {
    background: var(--accent);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.header-cta .btn-primary:hover {
    transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
}

/* =========================
   HERO (VIDEO READY)
========================= */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
}

.hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Search Bar */
.hero-search {
    background: white;
    border-radius: 50px;
    display: flex;
    padding: 10px;
    max-width: 600px;
    margin: 20px auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-search input {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
}

.hero-search button {
    background: var(--accent);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
}

/* =========================
   PROPERTY SECTION
========================= */
.properties {
    padding: 80px 0;
    background: var(--bg);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.property-card {
    background: var(--bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-10px);
}

.property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.property-info {
    padding: 20px;
}

.property-info p {
    color: var(--muted);
}

.property-info button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
}


/* =========================
   PARTNER LOGO STRIP (PREMIUM)
========================= */
.partners {
    background: #f5f7fa;
    overflow: hidden;
}

.partners-slider {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
}

/* Moving strip */
.partners-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

/* Pause on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* =========================
   APPLE-STYLE PARTNERS STRIP
========================= */
.partners {
    background: #f5f7fa;
    overflow: hidden;
}

.partners .section-heading {
    margin-bottom: 34px;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 22px 0;
    
    /* soft edge fade */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 90px;
    width: max-content;
    animation: partnerMarquee 30s linear infinite;
    will-change: transform;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

.partners-track img {
    height: 96px;      /* increase this if needed */
    width: auto;
    max-width: 220px;
    object-fit: contain;
    flex: 0 0 auto;

    filter: grayscale(100%);
    opacity: 0.72;

    transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
}

.partners-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.06);
}

@keyframes partnerMarquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .partners-track {
        gap: 52px;
    }

    .partners-track img {
        height: 68px;
        max-width: 160px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .partners-track {
        animation: none;
    }
}
/* =========================
   CONTACT
========================= */
.contact form {
    background: var(--bg);
    padding: 30px;
    border-radius: 10px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
}

.contact button {
    background: var(--accent);
    color: white;
    padding: 12px;
    border: none;
}

/* =========================
   FOOTER
========================= */
footer {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 20px;
}

footer .social-icon {
    color: white;
    margin: 0 10px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-search {
        flex-direction: column;
    }

    .hero-search button {
        margin-top: 10px;
    }
}

/* Whatsapp Button*/

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}
.whatsapp-btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.main-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .nav-links li a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav .nav-links li a:hover {
    color: var(--accent);
}
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 24px rgba(230, 126, 34, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(230, 126, 34, 0.28);
}

/* =========================
   SERVICES HERO
========================= */
.services-hero {
    position: relative;
    min-height: 82vh;
}

.services-hero .hero-content {
    max-width: 820px;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    backdrop-filter: blur(10px);
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 24px rgba(230, 126, 34, 0.24);
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.14);
}

/* =========================
   PREMIUM SERVICES SECTION
========================= */
.premium-services {
    background: #fff;
}

.section-heading {
    text-align: center;
    margin-bottom: 56px;
}

.section-heading span {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-label {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
}

.service-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 18px;
    line-height: 1.15;
}

.service-content p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.service-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    max-width: 560px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-image img:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 34px 70px rgba(15, 23, 42, 0.16);
}

/* =========================
   SERVICES CTA STRIP
========================= */
.services-cta-strip {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: #fff;
    padding: 56px 0;
}

.services-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.services-cta-inner span {
    display: inline-block;
    color: rgba(255,255,255,0.72);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.services-cta-inner h2 {
    color: #fff;
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    max-width: 680px;
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        display: none;
    }

    .services-hero {
        background: url("services-hero-poster.jpg") center center / cover no-repeat;
    }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
    .service-item,
    .service-item.reverse {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 64px;
    }

    .service-content,
    .service-image {
        width: 100%;
    }

    .service-image img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .services-hero {
        min-height: 72vh;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }
}

/*Trust bar*/
.trust-bar {
    background: #fff;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.trust-items {
    display: flex;
    justify-content: space-between;
    text-align: center;
    font-size: 1rem;
    color: var(--muted);
}

.trust-items strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary);
}
/*Testimonials*/
.testimonial-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}
/* =========================
   WHY CHOOSE US - PREMIUM PROCESS STYLE
========================= */
.premium-why {
    background: #f5f7fa;
    padding: 110px 0;
}

.why-header {
    margin-bottom: 70px;
}

.why-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
}

.why-header h2 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    line-height: 1.02;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.why-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 42px;
}

.why-step {
    min-width: 0;
}

.step-top {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 28px;
}

.step-number {
    font-size: clamp(3rem, 5vw, 4.4rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(15, 23, 42, 0.14);
    letter-spacing: -0.04em;
}

.step-line {
    flex: 1;
    height: 1px;
    border-top: 2px dashed rgba(15, 23, 42, 0.12);
    transform: translateY(3px);
}

.why-step h3 {
    margin: 0 0 18px 0;
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.why-step p {
    margin: 0;
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 32ch;
}

/* Tablet */
@media (max-width: 1200px) {
    .why-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 48px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .premium-why {
        padding: 80px 0;
    }

    .why-header {
        margin-bottom: 42px;
    }

    .why-process {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .step-top {
        margin-bottom: 18px;
    }

    .why-step p {
        max-width: 100%;
    }
}
/* =========================
   WHAT WE DO - PREMIUM UI
========================= */
.premium-what {
    background: #ffffff;
    padding: 110px 0;
}

.what-header {
    margin-bottom: 60px;
    text-align: left;
}

.what-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.what-header h2 {
    margin: 0;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.what-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 28px;
    padding: 34px 30px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}

.what-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(230, 126, 34, 0.08) 0%,
        rgba(230, 126, 34, 0) 45%
    );
    pointer-events: none;
}

.what-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.10);
    border-color: rgba(230, 126, 34, 0.18);
}

.what-number {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(15, 23, 42, 0.10);
    letter-spacing: -0.04em;
    margin-bottom: 26px;
}

.what-card h3 {
    margin: 0 0 16px 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.what-card p {
    margin: 0;
    font-size: 1.03rem;
    line-height: 1.85;
    color: #6b7280;
}

/* Tablet */
@media (max-width: 1100px) {
    .what-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .premium-what {
        padding: 80px 0;
    }

    .what-header {
        margin-bottom: 40px;
    }

    .what-card {
        padding: 28px 22px;
        border-radius: 22px;
    }
}
/* =========================
   TRUST PROOF - PREMIUM UI
========================= */
.premium-trust {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 110px 0;
}

.trust-header {
    max-width: 760px;
    margin-bottom: 64px;
}

.trust-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.trust-header h2 {
    margin: 0 0 18px 0;
    font-size: clamp(2.7rem, 6vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.trust-header p {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #6b7280;
    max-width: 62ch;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.trust-card {
    position: relative;
    padding: 32px 28px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(15, 23, 42, 0.10);
    border-color: rgba(230, 126, 34, 0.18);
}

.trust-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 26px;
}

.trust-number {
    font-size: clamp(2.8rem, 4vw, 4.2rem);
    font-weight: 700;
    line-height: 1;
    color: rgba(15, 23, 42, 0.10);
    letter-spacing: -0.04em;
}

.trust-line {
    flex: 1;
    height: 1px;
    border-top: 2px dashed rgba(15, 23, 42, 0.10);
    transform: translateY(2px);
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    background: rgba(230, 126, 34, 0.10);
    color: var(--accent);
    font-size: 1.35rem;
}

.trust-card h3 {
    margin: 0 0 14px 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.2;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.trust-card p {
    margin: 0;
    color: #6b7280;
    font-size: 1.02rem;
    line-height: 1.85;
}

/* Tablet */
@media (max-width: 1100px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .premium-trust {
        padding: 80px 0;
    }

    .trust-header {
        margin-bottom: 40px;
    }

    .trust-card {
        padding: 26px 22px;
        border-radius: 22px;
    }
}
/* =========================
   TESTIMONIALS - PREMIUM UI
========================= */
.premium-testimonials {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 110px 0;
}

.testimonials-header {
    max-width: 760px;
    margin-bottom: 60px;
}

.testimonials-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.testimonials-header h2 {
    margin: 0 0 18px 0;
    font-size: clamp(2.7rem, 6vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.testimonials-header p {
    margin: 0;
    max-width: 62ch;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #6b7280;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 28px;
    padding: 34px 30px 28px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 58px rgba(15, 23, 42, 0.10);
    border-color: rgba(230, 126, 34, 0.18);
}

.quote-mark {
    font-size: 4.8rem;
    line-height: 1;
    font-weight: 700;
    color: rgba(230, 126, 34, 0.18);
    margin-bottom: 14px;
    letter-spacing: -0.06em;
}

.testimonial-text {
    margin: 0 0 28px 0;
    font-size: 1.04rem;
    line-height: 1.9;
    color: #4b5563;
}

.testimonial-meta {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 18px;
}

.testimonial-meta h4 {
    margin: 0 0 4px 0;
    font-size: 1.15rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.testimonial-meta span {
    color: #6b7280;
    font-size: 0.96rem;
}

/* Tablet */
@media (max-width: 1100px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .premium-testimonials {
        padding: 80px 0;
    }

    .testimonials-header {
        margin-bottom: 40px;
    }

    .testimonial-card {
        padding: 28px 22px 24px;
        border-radius: 22px;
    }

    .quote-mark {
        font-size: 4rem;
        margin-bottom: 10px;
    }
}
/* =========================
   ABOUT US - PREMIUM UI
========================= */
.premium-about {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.25fr;
    gap: 48px;
    align-items: start;
}

.about-left {
    position: sticky;
    top: 110px;
}

.about-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.about-left h2 {
    margin: 0 0 18px 0;
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.about-lead {
    margin: 0;
    max-width: 28ch;
    font-size: 1.15rem;
    line-height: 1.85;
    color: #6b7280;
}

.about-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 30px;
    padding: 38px 34px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.about-card > p {
    margin: 0 0 22px 0;
    font-size: 1.06rem;
    line-height: 1.95;
    color: #4b5563;
}

.about-card > p:last-of-type {
    margin-bottom: 34px;
}

.about-points {
    display: grid;
    gap: 22px;
}

.about-point {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: start;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.about-point-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(15, 23, 42, 0.12);
    letter-spacing: -0.04em;
}

.about-point h3 {
    margin: 0 0 6px 0;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.about-point p {
    margin: 0;
    color: #6b7280;
    line-height: 1.75;
}

/* Tablet */
@media (max-width: 1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-left {
        position: static;
    }

    .about-lead {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .premium-about {
        padding: 80px 0;
    }

    .about-card {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .about-point {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }

    .about-point-number {
        font-size: 2rem;
    }
}
/* =========================
   PREMIUM LEAD SECTION
========================= */
.premium-lead {
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.lead-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
    align-items: center;
}

.lead-copy {
    max-width: 640px;
}

.lead-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.lead-copy h2 {
    margin: 0 0 18px 0;
    font-size: clamp(2.7rem, 6vw, 4.4rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.lead-copy p {
    margin: 0 0 24px 0;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #6b7280;
    max-width: 58ch;
}

.lead-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.lead-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #4b5563;
    font-size: 1rem;
}

.lead-points i {
    color: var(--accent);
}

.lead-card {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 28px;
    padding: 34px 30px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
}

.lead-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.6rem;
    color: var(--primary);
}

.lead-card p {
    margin: 0 0 22px 0;
    color: #6b7280;
    line-height: 1.8;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lead-form input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #fff;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.lead-form input:focus {
    border-color: rgba(230, 126, 34, 0.45);
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.10);
}

.lead-form button {
    margin-top: 4px;
    border: none;
    border-radius: 999px;
    padding: 15px 22px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(230, 126, 34, 0.20);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lead-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(230, 126, 34, 0.26);
}

.lead-card small {
    display: block;
    margin-top: 14px;
    color: #94a3b8;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 980px) {
    .lead-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .premium-lead {
        padding: 80px 0;
    }

    .lead-card {
        padding: 26px 22px;
        border-radius: 22px;
    }
}
/* =========================
   TEAM - PREMIUM UI
========================= */
.premium-team {
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.team-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 40px;
    align-items: center;
}

.team-image-wrap {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 560px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-content {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 30px;
    padding: 40px 36px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
}

.team-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
}

.team-content h2 {
    margin: 0 0 18px 0;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.team-lead {
    margin: 0 0 30px 0;
    font-size: 1.08rem;
    line-height: 1.9;
    color: #6b7280;
    max-width: 60ch;
}

.team-highlights {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.team-point {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 16px;
    align-items: start;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.team-number {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1;
    color: rgba(15, 23, 42, 0.12);
    letter-spacing: -0.04em;
}

.team-point h3 {
    margin: 0 0 6px 0;
    font-size: 1.15rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.team-point p {
    margin: 0;
    color: #6b7280;
    line-height: 1.75;
}

.team-btn {
    margin-top: 8px;
}

/* Tablet */
@media (max-width: 1100px) {
    .team-wrapper {
        grid-template-columns: 1fr;
    }

    .team-image-wrap {
        min-height: 460px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .premium-team {
        padding: 80px 0;
    }

    .team-content {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .team-image-wrap {
        min-height: 360px;
        border-radius: 24px;
    }

    .team-point {
        grid-template-columns: 46px 1fr;
        gap: 12px;
    }

    .team-number {
        font-size: 1.9rem;
    }
}

/* ===== PREMIUM PROPERTY SECTION ===== */
.premium-properties {
    padding: 100px 0;
    background: #f9fafb;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.property-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* Image */
.property-image {
    position: relative;
}

.property-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Tag */
.property-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Content */
.property-info {
    padding: 20px;
}

.property-info h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.property-desc {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* Details */
.property-details p {
    margin: 4px 0;
    font-size: 0.9rem;
}

.property-details .price {
    color: #E67E22;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Buttons */
.property-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-outline {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background: white;
    cursor: pointer;
}

.btn-primary {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #E67E22;
    color: white;
    cursor: pointer;
}

.btn-primary:hover {
    background: #d35400;
}

/* Mobile */
@media (max-width: 768px) {
    .property-grid {
        grid-template-columns: 1fr;
    }
}
.projects-filters {
    padding: 32px 0 0;
    background: #fff;
}

.filter-bar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.filter-bar select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    background: #fff;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .filter-bar {
        grid-template-columns: 1fr;
    }
}
.projects-cta {
    margin-top: 36px;
    text-align: center;
}
.property-card.hidden {
    display: none;
}