/* ══════════════════════════════════════
   PALM MANAGEMENT — STYLES
   ══════════════════════════════════════ */

:root {
    --sand: #F5F0E8;
    --sand-deep: #E8DFD0;
    --terracotta: #C4704B;
    --terracotta-dark: #A85A38;
    --palm-green: #2D4A3E;
    --palm-deep: #1A3028;
    --midnight: #1A1A1A;
    --ivory: #FDFBF7;
    --gold: #C9A84C;
    --gold-light: #D4B963;
    --warm-gray: #8A8078;
    --soft-white: #FAF8F5;
}

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

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

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--midnight);
    background: var(--ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ══════════════════════════════════════
   UTILITY BAR
   ══════════════════════════════════════ */
.utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: var(--midnight);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.utility-bar.hidden {
    transform: translateY(-100%);
}

.utility-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.45rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.utility-contact {
    display: flex;
    gap: 1.5rem;
}

.utility-contact a,
.utility-actions a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
    letter-spacing: 0.02em;
}

.utility-contact a:hover,
.utility-actions a:hover {
    color: rgba(255,255,255,0.8);
}

.utility-contact svg,
.utility-actions svg {
    width: 12px;
    height: 12px;
    opacity: 0.6;
}

.utility-login {
    font-weight: 500 !important;
    color: var(--gold-light) !important;
    text-transform: uppercase;
    letter-spacing: 0.06em !important;
    font-size: 0.68rem !important;
}

.utility-login:hover {
    color: var(--gold) !important;
}

.utility-login svg {
    opacity: 0.8 !important;
}

/* ══════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav.scrolled,
.nav.nav-solid {
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ivory);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color 0.5s;
}

.nav.scrolled .nav-logo,
.nav.nav-solid .nav-logo {
    color: var(--palm-deep);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav.scrolled .nav-links a,
.nav.nav-solid .nav-links a {
    color: var(--warm-gray);
}

.nav-links a:hover {
    color: var(--gold-light);
}

.nav.scrolled .nav-links a:hover,
.nav.nav-solid .nav-links a:hover {
    color: var(--terracotta);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--terracotta);
    font-weight: 500;
}

.nav.scrolled .nav-links a.active,
.nav.nav-solid .nav-links a.active {
    color: var(--terracotta);
}

.nav-cta {
    background: rgba(255,255,255,0.15) !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 2px;
    transition: all 0.3s !important;
    text-transform: uppercase !important;
}

.nav.scrolled .nav-cta,
.nav.nav-solid .nav-cta {
    background: var(--palm-green) !important;
    border-color: var(--palm-green) !important;
    color: white !important;
}

.nav-cta:hover {
    background: rgba(255,255,255,0.25) !important;
}

.nav.scrolled .nav-cta:hover,
.nav.nav-solid .nav-cta:hover {
    background: var(--palm-deep) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-login-mobile {
    display: none;
}

/* Mobile menu */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ivory);
    margin: 5px 0;
    transition: all 0.3s;
}

.nav.scrolled .nav-toggle span,
.nav.nav-solid .nav-toggle span {
    background: var(--midnight);
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--palm-deep);
    overflow: hidden;
}

.hero-photo {
    position: absolute;
    inset: 0;
    background-image: url('/images/hero-home.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
    opacity: 0.3;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(26, 48, 40, 0.95) 0%,
            rgba(45, 74, 62, 0.85) 30%,
            rgba(196, 112, 75, 0.4) 70%,
            rgba(201, 168, 76, 0.3) 100%
        );
    z-index: 1;
}

.hero-texture {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: 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.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

/* Decorative palm leaf silhouettes */
.hero-leaf {
    position: absolute;
    z-index: 1;
    opacity: 0.06;
}

.hero-leaf-1 {
    top: -5%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(ellipse at center, var(--gold) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    transform: rotate(-15deg);
}

.hero-leaf-2 {
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(ellipse at center, var(--terracotta) 0%, transparent 70%);
    border-radius: 0 100% 0 0;
    transform: rotate(10deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 4rem 4rem 3.5rem;
    background: rgba(26, 48, 40, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 4px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 2px;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero-badge-line {
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.hero-badge span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    color: var(--ivory);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.75rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.5s forwards;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 3rem;
    font-weight: 300;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.9s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(196, 112, 75, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    background: transparent;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
    color: white;
}

/* Dark-background button variants for sub pages */
.btn-secondary-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.25rem;
    background: transparent;
    color: var(--palm-deep);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid var(--sand-deep);
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary-dark:hover {
    border-color: var(--palm-green);
    color: var(--palm-green);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.8; transform: scaleY(1.2); }
}

/* ══════════════════════════════════════
   PAGE HERO (sub pages)
   ══════════════════════════════════════ */
.page-hero {
    position: relative;
    padding: 11rem 3rem 5rem;
    background: var(--palm-deep);
    overflow: hidden;
    text-align: center;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(26, 48, 40, 0.95) 0%,
        rgba(45, 74, 62, 0.85) 40%,
        rgba(196, 112, 75, 0.3) 100%
    );
    z-index: 1;
}

.page-hero .hero-texture {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: 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.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .hero-badge {
    animation: fadeUp 0.6s 0.1s forwards;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    color: var(--ivory);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s 0.2s forwards;
}

.page-hero h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    font-weight: 300;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s 0.35s forwards;
}

/* ══════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════ */
section {
    padding: 7rem 3rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.section-label-line {
    width: 30px;
    height: 1px;
    background: var(--terracotta);
}

.section-label span {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    color: var(--palm-deep);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.section-title em {
    font-style: italic;
    color: var(--terracotta);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
    max-width: 520px;
    font-weight: 300;
}

/* ══════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════ */
.stats {
    background: var(--palm-deep);
    padding: 4rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.3), transparent);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-weight: 400;
}

/* ══════════════════════════════════════
   SERVICES
   ══════════════════════════════════════ */
.services {
    background: var(--ivory);
}

.services-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.services-header .section-desc {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 2.5rem;
    background: var(--soft-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border-color: transparent;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--terracotta);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--palm-deep);
}

.service-card p {
    font-size: 0.925rem;
    line-height: 1.65;
    color: var(--warm-gray);
    font-weight: 300;
}

/* Service card link variant */
.service-card-link {
    text-decoration: none;
    display: block;
}

/* ══════════════════════════════════════
   ABOUT / WHY CHOOSE US
   ══════════════════════════════════════ */
.about {
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

.about-texture {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 C55 35, 65 45, 100 50 C65 55, 55 65, 50 100 C45 65, 35 55, 0 50 C35 45, 45 35, 50 0Z' fill='%232D4A3E'/%3E%3C/svg%3E");
    background-size: 80px 80px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.about-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--palm-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.about-feature-icon svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
}

.about-feature h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin-bottom: 0.3rem;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.6;
    font-weight: 300;
}

.about-visual {
    position: relative;
}

.about-card {
    background: var(--ivory);
    padding: 3rem;
    border-radius: 3px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.08);
    position: relative;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 1px solid var(--gold);
    opacity: 0.2;
    border-radius: 3px;
}

.about-card-stat {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand-deep);
}

.about-card-stat .stat-number {
    color: var(--terracotta);
    margin-bottom: 0.3rem;
}

.about-card-stat .stat-label {
    color: var(--warm-gray);
}

.about-card blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--palm-deep);
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold);
}

.about-card cite {
    display: block;
    margin-top: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-weight: 400;
}

/* ══════════════════════════════════════
   PROPERTIES / PORTFOLIO
   ══════════════════════════════════════ */
.properties {
    background: var(--ivory);
}

.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.property-card {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.property-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.1) 50%, transparent 100%);
    transition: opacity 0.4s;
}

.property-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translateY(10px);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.property-card:hover .property-info {
    transform: translateY(0);
}

.property-type {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
}

.property-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.5rem;
}

.property-details {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* ══════════════════════════════════════
   PROCESS
   ══════════════════════════════════════ */
.process {
    background: var(--palm-deep);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-header .section-label span {
    color: var(--gold);
}

.process-header .section-label-line {
    background: var(--gold);
}

.process-header .section-title {
    color: var(--ivory);
}

.process-header .section-title em {
    color: var(--gold-light);
}

.process-header .section-desc {
    color: rgba(255,255,255,0.5);
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(201,168,76,0.15);
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--gold-light);
    background: var(--palm-deep);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 0.6rem;
}

.process-step p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    font-weight: 300;
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials {
    background: var(--sand);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-header .section-desc {
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--ivory);
    padding: 2.5rem;
    border-radius: 3px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.testimonial-quote {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--sand-deep);
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--palm-deep);
    margin-bottom: 1.75rem;
    font-weight: 300;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--palm-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold-light);
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 500;
    font-size: 0.925rem;
    color: var(--palm-deep);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-top: 0.15rem;
}

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
.contact {
    background: var(--ivory);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    margin-top: 2.5rem;
}

.contact-methods {
    display: grid;
    gap: 1.75rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--terracotta);
}

.contact-method-icon svg {
    width: 18px;
    height: 18px;
}

.contact-method h4 {
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin-bottom: 0.2rem;
}

.contact-method p,
.contact-method a {
    font-size: 0.875rem;
    color: var(--warm-gray);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: var(--terracotta);
}

.contact-form {
    background: var(--soft-white);
    padding: 3rem;
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin-bottom: 0.5rem;
}

.contact-form > p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    margin-bottom: 2rem;
    font-weight: 300;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--sand-deep);
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--midnight);
    background: var(--ivory);
    transition: all 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--palm-green);
    box-shadow: 0 0 0 3px rgba(45,74,62,0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--palm-green);
    color: white;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.form-submit:hover {
    background: var(--palm-deep);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(45,74,62,0.2);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    background: var(--midnight);
    padding: 5rem 3rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .nav-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    font-weight: 300;
    max-width: 300px;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 1.25rem;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 300;
}

.footer-col ul a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    font-weight: 300;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════
   PORTAL MOCKUP SECTIONS
   ══════════════════════════════════════ */
.portal-mockup {
    background: var(--palm-deep);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}

.portal-toolbar {
    background: rgba(255,255,255,0.06);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.portal-dots {
    display: flex;
    gap: 6px;
}

.portal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
}

.portal-dots span:first-child { background: #ff5f57; }
.portal-dots span:nth-child(2) { background: #ffbd2e; }
.portal-dots span:nth-child(3) { background: #28ca41; }

.portal-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 0.35rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-family: 'DM Sans', sans-serif;
}

.portal-body {
    padding: 1.5rem;
    min-height: 350px;
}

.portal-sidebar {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    min-height: 380px;
}

.portal-nav {
    background: rgba(255,255,255,0.03);
    padding: 1.25rem 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.portal-nav-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    transition: all 0.2s;
}

.portal-nav-item.active {
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
    border-right: 2px solid var(--gold);
}

.portal-nav-item svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.portal-nav-item.active svg {
    opacity: 1;
}

.portal-main {
    padding: 1.5rem;
}

.portal-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.portal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--ivory);
    font-weight: 500;
}

.portal-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.75rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.portal-badge-green {
    background: rgba(40,202,65,0.15);
    color: #28ca41;
}

.portal-badge-gold {
    background: rgba(201,168,76,0.15);
    color: var(--gold-light);
}

.portal-badge-blue {
    background: rgba(100,149,237,0.15);
    color: #6495ed;
}

.portal-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.portal-stat-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 1rem;
}

.portal-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 0.4rem;
}

.portal-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--gold-light);
    font-weight: 500;
}

.portal-table {
    width: 100%;
    border-collapse: collapse;
}

.portal-table th {
    text-align: left;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3);
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-weight: 500;
}

.portal-table td {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.portal-table tr:last-child td {
    border-bottom: none;
}

/* Portal chart mockup */
.portal-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 80px;
    margin-top: 1rem;
    padding-top: 0.5rem;
}

.portal-chart-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ══════════════════════════════════════
   CONTENT SECTIONS (sub pages)
   ══════════════════════════════════════ */
.content-section {
    padding: 6rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section.bg-sand {
    background: var(--sand);
    max-width: 100%;
}

.content-section.bg-sand > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-section.bg-ivory {
    background: var(--ivory);
    max-width: 100%;
    padding: 6rem 3rem;
}

.content-section.bg-ivory > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-section.bg-dark {
    background: var(--palm-deep);
    max-width: 100%;
    padding: 6rem 3rem;
}

.content-section.bg-dark > * {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.content-section.bg-dark .section-title {
    color: var(--ivory);
}

.content-section.bg-dark .section-title em {
    color: var(--gold-light);
}

.content-section.bg-dark .section-desc {
    color: rgba(255,255,255,0.5);
}

.content-section.bg-dark .section-label span {
    color: var(--gold);
}

.content-section.bg-dark .section-label-line {
    background: var(--gold);
}

.content-header {
    text-align: center;
    margin-bottom: 4rem;
}

.content-header .section-desc {
    margin: 0 auto;
}

/* Service detail cards (services page) */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.service-detail-content h3 em {
    font-style: italic;
    color: var(--terracotta);
}

.service-detail-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--warm-gray);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.service-detail-features {
    display: grid;
    gap: 0.75rem;
}

.service-detail-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--palm-deep);
}

.service-detail-feature svg {
    width: 18px;
    height: 18px;
    color: var(--palm-green);
    flex-shrink: 0;
}

.service-detail-visual {
    position: relative;
}

/* Values grid (about page) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--ivory);
    border-radius: 3px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
}

.value-icon svg {
    width: 26px;
    height: 26px;
}

.value-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.65;
    font-weight: 300;
}

/* Timeline (about page) */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 3rem auto 0;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: var(--sand-deep);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.35rem;
    top: 0.3rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--terracotta);
    border: 3px solid var(--ivory);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--terracotta);
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.timeline-text {
    font-size: 0.925rem;
    color: var(--warm-gray);
    line-height: 1.65;
    font-weight: 300;
}

/* Portfolio filter */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.portfolio-filter {
    padding: 0.55rem 1.5rem;
    border: 1px solid var(--sand-deep);
    border-radius: 2px;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.portfolio-filter:hover,
.portfolio-filter.active {
    border-color: var(--palm-green);
    color: var(--palm-green);
    background: rgba(45,74,62,0.04);
}

/* Portfolio detail cards */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-card {
    background: var(--soft-white);
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.portfolio-card-img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    position: relative;
}

.portfolio-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.75rem;
    background: rgba(26,48,40,0.85);
    backdrop-filter: blur(8px);
    border-radius: 2px;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.portfolio-card-body {
    padding: 1.5rem;
}

.portfolio-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin-bottom: 0.4rem;
}

.portfolio-card-location {
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-bottom: 1rem;
    font-weight: 300;
}

.portfolio-card-stats {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--sand-deep);
}

.portfolio-card-stat {
    font-size: 0.75rem;
    color: var(--warm-gray);
}

.portfolio-card-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin-bottom: 0.15rem;
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 350px;
    background: var(--sand);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--warm-gray);
    border: 1px solid var(--sand-deep);
}

.map-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.4;
}

.map-placeholder span {
    font-size: 0.85rem;
    font-weight: 300;
}

/* CTA Banner */
.cta-banner {
    text-align: center;
    padding: 5rem 3rem;
    background: var(--palm-deep);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,0.2), transparent);
}

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 1rem;
}

.cta-banner h2 em {
    font-style: italic;
    color: var(--gold-light);
}

.cta-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    background: var(--terracotta);
}

/* Legal pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 1rem;
    font-weight: 300;
}

.legal-content ul {
    margin: 0.5rem 0 1.5rem 1.5rem;
}

.legal-content li {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.legal-content a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: var(--terracotta-dark);
}

.legal-updated {
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--sand-deep);
}

/* ══════════════════════════════════════
   LOGIN PAGE
   ══════════════════════════════════════ */
.login-portals {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.login-portal-card {
    background: var(--soft-white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: 3px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.login-portal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: left;
}

.login-portal-card:hover::before {
    transform: scaleX(1);
}

.login-portal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    border-color: transparent;
}

.login-portal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.login-portal-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.login-portal-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--palm-deep);
    margin-bottom: 0.5rem;
}

.login-portal-card > p {
    font-size: 0.875rem;
    color: var(--warm-gray);
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 1.75rem;
}

.login-portal-form .form-group {
    margin-bottom: 1rem;
}

.login-portal-form .form-submit {
    margin-top: 0.5rem;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--warm-gray);
    cursor: pointer;
}

.login-remember input[type="checkbox"] {
    accent-color: var(--palm-green);
}

.login-forgot {
    font-size: 0.8rem;
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s;
}

.login-forgot:hover {
    color: var(--terracotta-dark);
}

.login-help {
    text-align: center;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.login-help p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    font-weight: 300;
}

.login-help a {
    color: var(--terracotta);
    text-decoration: none;
    transition: color 0.3s;
}

.login-help a:hover {
    color: var(--terracotta-dark);
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid,
    .properties-grid,
    .testimonials-grid,
    .portfolio-grid,
    .login-portals {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .service-detail.reverse {
        direction: ltr;
    }

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

    .portal-sidebar {
        grid-template-columns: 1fr;
    }

    .portal-nav {
        display: flex;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        padding: 0.75rem 1rem;
    }

    .portal-nav-item {
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }

    .portal-nav-item.active {
        border-right: none;
        border-bottom: 2px solid var(--gold);
    }

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

@media (max-width: 768px) {
    /* ── MOBILE NAV REWRITE ── */

    /* Hide utility bar entirely */
    .utility-bar {
        display: none;
    }

    /* Nav: always pinned to top, always dark, no transitions fighting */
    .nav,
    .nav.scrolled,
    .nav.nav-solid {
        top: 0 !important;
        background: var(--palm-deep) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        padding: 1rem 1.5rem;
    }

    .nav .nav-logo,
    .nav.scrolled .nav-logo,
    .nav.nav-solid .nav-logo {
        color: var(--ivory) !important;
    }

    /* Hamburger always white */
    .nav-toggle {
        display: block;
    }

    .nav-toggle span,
    .nav.scrolled .nav-toggle span,
    .nav.nav-solid .nav-toggle span {
        background: white !important;
    }

    /* X animation when open */
    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Fullscreen menu overlay */
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--palm-deep);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links.open a {
        color: rgba(255,255,255,0.7) !important;
        font-size: 1rem;
    }

    .nav-links.open a:hover {
        color: white !important;
    }

    .nav-links.open .nav-cta {
        border-color: rgba(255,255,255,0.2) !important;
        background: var(--terracotta) !important;
        color: white !important;
    }

    /* Login link in mobile menu */
    .nav-login-mobile {
        display: list-item;
    }

    .nav-links.open .nav-login-mobile a {
        color: var(--gold-light) !important;
        font-weight: 500;
        letter-spacing: 0.06em;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 3rem 1.5rem;
    }

    .services-grid,
    .properties-grid,
    .testimonials-grid,
    .portfolio-grid,
    .login-portals {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .process-steps {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 320px;
    }

    .properties-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-content {
        padding: 2.5rem 2rem 2rem;
        margin: 0 0.5rem;
    }

    .hero-scroll {
        display: none;
    }

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

    .page-hero {
        padding: 9rem 1.5rem 4rem;
    }

    .content-section {
        padding: 4rem 1.5rem;
    }

    .content-section.bg-sand,
    .content-section.bg-ivory,
    .content-section.bg-dark {
        padding: 4rem 1.5rem;
    }

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

    .portal-stat-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        padding: 4rem 1.5rem;
    }

    .legal-content {
        padding: 3rem 1.5rem;
    }
}
