/* ===========================
   GLOBAL STYLES
=========================== */

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

:root {
    --color-white: #ffffff;
    --color-black: #212121;
    --color-text: rgba(0, 0, 0, 0.8);
    --color-light-bg: #f8f8f8;
    --color-loading-bg: #f5f3f0;
    --color-primary: #2d7a4f;
    --color-primary-dark: #1f5538;
    --color-primary-light: #3a9d63;
    --color-accent: #4caf50;
    --color-accent-hover: #45a049;
    --font-display: "Italiana", serif;
    --font-heading: "Italiana", serif;
    --font-body: "Manrope", sans-serif;
    --font-ui: "Raleway", sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* ===========================
   KEYFRAME ANIMATIONS
=========================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes buttonFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===========================
   SCROLL ANIMATIONS
=========================== */

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Contrast tweaks for hero filters/meta */
.properties-filters .filter-btn,
.properties-filters .filter-btn:hover,
.properties-filters .filter-btn.active {
    color: rgba(255, 255, 255, 0.9);
}
.properties-filters .filter-btn::after {
    background: rgba(255, 255, 255, 0.9);
}

/* Property meta contrast */
.property-meta-new,
.property-price-new {
    color: rgba(0, 0, 0, 0.75);
}

/* Button entrance animations */
.btn-animate {
    animation: buttonFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.btn-ready {
    opacity: 0;
    transform: translateY(20px);
}

/* Navbar scroll effect */
.navbar {
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* Page loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f5f3f0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-black);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease-out;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--color-black);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    background: var(--color-loading-bg);
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-black);
    margin-bottom: 0.5em;
}

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

img {
    width: 100%;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

.section-tag {
    font-family: var(--font-ui);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 3.5px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 58px;
    margin-bottom: 60px;
    color: var(--color-black);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

/* ===========================
   NAVBAR
=========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1002;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.navbar > div {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-ui);
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    padding-bottom: 4px;
}

.navbar.scrolled .nav-menu a {
    color: var(--color-black);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-black);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .nav-menu a::after {
    background: var(--color-black);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.menu-toggle.active ~ .nav-menu,
body.menu-open .nav-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 16px 50px;
}

/* When menu is open, navbar should be black */
body.menu-open .navbar {
    background: #000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

body.menu-open .navbar .logo {
    color: var(--color-white) !important;
}

body.menu-open .navbar .menu-line {
    background: var(--color-white) !important;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.menu-toggle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.menu-toggle:hover::before {
    transform: scale(1);
}

.menu-toggle:hover {
    transform: scale(1.1);
}

.navbar.scrolled .menu-toggle::before {
    background: rgba(0, 0, 0, 0.05);
}

body.menu-open .menu-toggle::before {
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.menu-line {
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: absolute;
    will-change: transform, opacity, background-color;
}

.navbar.scrolled .menu-line {
    background: var(--color-black);
}

.menu-line:nth-child(1) {
    top: 13px;
}

.menu-line:nth-child(2) {
    top: 21px;
}

.menu-line:nth-child(3) {
    top: 29px;
}

/* Hover effect on hamburger lines */
.menu-toggle:hover .menu-line:nth-child(1) {
    width: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover .menu-line:nth-child(2) {
    width: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle:hover .menu-line:nth-child(3) {
    width: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active .menu-line {
    background: var(--color-white) !important;
}

.menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Menu Overlay - Ultra Smooth & Modern */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60vh;
    max-height: 60vh;
    background: #000;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0.6s,
                pointer-events 0s linear 0.6s;
    will-change: transform, opacity;
    overflow: hidden;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s linear 0s,
                pointer-events 0s linear 0s;
}

.mobile-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    padding: 80px 50px 30px;
    max-width: 1600px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.mobile-menu-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    align-self: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    color: var(--color-white);
    text-decoration: none;
    line-height: 1.2;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    width: fit-content;
    will-change: transform, opacity;
    letter-spacing: -0.5px;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav-link:hover::after,
.mobile-nav-link.active::after {
    width: 100%;
}

.mobile-nav-link:hover {
    text-decoration: none;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav-link:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-nav-link:hover {
    opacity: 1;
}

.mobile-social {
    display: flex;
    gap: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active .mobile-social {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.mobile-social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.mobile-menu-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: center;
}

.mobile-menu-overlay.active .mobile-menu-right {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.mobile-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-contact-title {
    font-family: var(--font-ui);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.mobile-contact-name {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 3px;
}

.mobile-contact-role {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.mobile-contact-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-contact-item:hover {
    color: var(--color-white);
}

.mobile-contact-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-image {
    display: none;
}

.navbar .logo {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--color-white);
    font-size: 24px;
    letter-spacing: 0.5px;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.navbar.scrolled .logo {
    color: var(--color-black);
    font-size: 22px;
}

.navbar nav {
    display: flex;
    gap: 32px;
}

.navbar nav a {
    font-family: var(--font-ui);
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.navbar.scrolled nav a {
    color: var(--color-black);
}

.navbar nav a:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* ===========================
   HERO
=========================== */

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4));
    z-index: 1;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.7);
    animation: scaleIn 1.2s ease-out;
    transform-origin: center;
    aspect-ratio: 16 / 9;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
}

.hero-tag {
    font-family: var(--font-ui);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 500;
    animation: fadeIn 0.8s ease-out 0.3s both;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 110px;
    margin: 20px 0;
    font-weight: 400;
    line-height: 1;
    color: var(--color-white);
    animation: fadeInUp 1s ease-out 0.5s both;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4), 0 6px 24px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: 20px;
    margin-bottom: 50px;
    font-weight: 400;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    animation: fadeInUp 1s ease-out 0.7s both;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

/* ===========================
   BUTTONS
=========================== */

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-black);
    color: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: var(--color-white);
    border: 2px solid var(--color-black);
    color: var(--color-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-secondary:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Button variants for hero/CTA sections */
.hero .btn-primary,
.cta .btn-primary {
    background: var(--color-white);
    color: var(--color-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary:hover,
.cta .btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.hero .btn-secondary,
.cta .btn-secondary {
    background: transparent;
    border: 2px solid var(--color-white);
    color: var(--color-white);
}

.hero .btn-secondary:hover,
.cta .btn-secondary:hover {
    background: var(--color-white);
    color: var(--color-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
}

.center-btn {
    display: block;
    margin: 40px auto 0;
    width: fit-content;
}

/* ===========================
   SOLUTIONS
=========================== */

.solutions {
    padding: 120px 0;
    background: var(--color-white);
}

.solutions-tag {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.solutions-title {
    text-align: center;
}

.solutions-grid {
    display: flex;
    gap: 4px;
    margin-top: 60px;
    height: 600px;
}

.solution-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: block;
    flex: 1;
    transition: flex 0.45s ease;
}

.solutions-grid:hover .solution-card {
    flex: 0.95;
}

.solutions-grid .solution-card:hover {
    flex: 1.15;
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    filter: brightness(0.7);
}

.solution-card:hover img {
    transform: scale(1.02);
}

.solution-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    text-align: center;
    width: 100%;
    padding: 0 30px;
    transition: opacity 0.3s ease;
}

.solutions-grid:hover .solution-card:not(:hover) .solution-overlay {
    opacity: 0;
}

.solution-overlay h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    font-weight: 400;
    line-height: 1.2;
}

/* ===========================
   ABOUT
=========================== */

.about {
    padding: 120px 0;
    background: var(--color-light-bg);
}

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

.about-text .section-tag {
    margin-bottom: 16px;
}

.about-text .section-title {
    margin-bottom: 30px;
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.about-text .btn {
    margin-top: 20px;
}

.about-images {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-single {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img-single:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* ===========================
   STATS
=========================== */

.stats {
    padding: 120px 0;
    background: url('../images/OUR ACHIEVEMENTS-section.jpg') center center / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.65));
    z-index: 1;
    pointer-events: none;
}

.stats .container {
    position: relative;
    z-index: 2;
}

.stats .section-tag {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stats .section-title {
    text-align: center;
    color: var(--color-white);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

.stats-grid {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    position: relative;
    border-radius: 8px;
}

.stat-number {
    font-family: var(--font-body);
    font-size: 72px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
    white-space: nowrap;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum", "tnum";
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}


/* ===========================
   LISTINGS
=========================== */

.listings {
    padding: 120px 0;
    background: var(--color-light-bg);
}

.listings .section-tag {
    text-align: center;
}

.listings .section-title {
    text-align: center;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.listing-card {
    background: transparent;
    overflow: visible;
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.listing-card:hover,
.listing-card:focus,
.listing-card:hover .listing-title,
.listing-card:focus .listing-title {
    text-decoration: none;
}

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

.listing-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.listing-card:hover .listing-image-wrapper {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.listing-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    min-height: 350px !important;
    max-height: 350px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block;
    transition: transform 0.45s ease;
}

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

/* Ensure home page exclusive properties have consistent image sizes */
.listings .listing-card .listing-image-wrapper {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
}

.listings .listing-card img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 350px !important;
    max-height: 350px !important;
    object-fit: cover !important;
    object-position: center !important;
}

.awara-view-cursor {
    position: fixed;
    left: 0;
    top: 0;
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d7a4f 0%, #1f5538 100%);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-family: var(--font-ui);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    mix-blend-mode: normal;
    z-index: 1003;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.awara-view-cursor span {
    position: relative;
    top: 1px;
}

.awara-view-cursor.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 1024px) {
    .awara-view-cursor {
        display: none;
    }
}

.listing-info {
    pointer-events: none;
    padding: 0;
    background: transparent;
}

.listing-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 8px 14px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: capitalize;
    letter-spacing: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-family: var(--font-ui);
}

.badge-dot {
    color: #22c55e;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
}

.listing-title {
    font-family: var(--font-ui);
    font-size: 18px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
    line-height: 1.3;
}

.listing-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    color: #6b7280;
    font-size: 14px;
    font-weight: 400;
}

.meta-item svg {
    color: #9ca3af;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.listing-price {
    font-family: var(--font-ui);
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-top: 0;
}

.btn-view-all {
    display: inline-block;
    background: var(--color-black);
    color: var(--color-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 40px auto 0;
    text-align: center;
    display: block;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    cursor: pointer;
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

.btn-view-all::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.btn-view-all:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.btn-view-all:hover::before {
    left: 100%;
}

.btn-view-all:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ===========================
   FEATURED PROPERTIES PAGE
   =========================== */

/* Properties Hero Section */
.properties-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    aspect-ratio: 16 / 9;
}

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

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-bottom: 80px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-tag {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero-title-large {
    font-family: var(--font-heading);
    font-size: 110px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: 1.2;
}

/* Properties Section */
.properties-section {
    background: var(--color-white);
    padding: 120px 0;
}

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

.section-tag-properties {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.67);
    margin-bottom: 6px;
}

.section-title-properties {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    color: #212121;
    margin: 0;
    line-height: 1.2;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.property-card {
    background: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    text-decoration: none;
    display: block;
}

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

.property-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-image-wrapper {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.property-info {
    padding: 0 0 0 12px;
}

.property-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 8px 12px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: capitalize;
    font-family: var(--font-ui);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.property-title {
    font-family: var(--font-ui);
    font-size: 26px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.2;
}

.property-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.property-price {
    font-family: var(--font-ui);
    font-size: 26px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.btn-view-more {
    display: block;
    background: var(--color-black);
    color: var(--color-white);
    padding: 16px 40px;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-view-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-view-more:hover::before {
    left: 100%;
}

.btn-view-more:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}


/* ===========================
   TESTIMONIAL
=========================== */

.testimonial {
    padding: 80px 0;
    background: #f5f5f5;
    position: relative;
    transition: background 0.3s ease;
}

.testimonial:hover {
    background: #f5f5f5;
}

.testimonial-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content {
    position: relative;
    min-height: 180px;
    margin-bottom: 40px;
}

.testimonial-slide {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
    pointer-events: auto;
}

.testimonial-slide.slide-out-left {
    opacity: 0;
    transform: translateX(-30px);
}

.testimonial-slide.slide-out-right {
    opacity: 0;
    transform: translateX(30px);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 24px;
    font-style: normal;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-black);
    font-weight: 400;
    text-align: center;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-img.active {
    opacity: 1;
    position: relative;
}

.testimonial-author-text {
    text-align: left;
    position: relative;
    min-width: 150px;
    min-height: 50px;
}

.testimonial-author-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0 0 4px 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.testimonial-author-name.active {
    opacity: 1;
    position: relative;
}

.testimonial-author-role {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text);
    margin: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.6s ease;
    top: 28px;
}

.testimonial-author-role.active {
    opacity: 1;
    position: relative;
    top: 0;
}

.testimonial-nav {
    display: flex;
    gap: 12px;
}

.testimonial-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    color: var(--color-black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: rgba(0, 0, 0, 0.15);
}

.testimonial-nav-btn:active {
    background: rgba(0, 0, 0, 0.2);
}

.testimonial-nav-btn svg {
    width: 20px;
    height: 20px;
}

/* ===========================
   BLOGS
=========================== */

.blogs {
    padding: 120px 0;
    background: var(--color-white);
}

.blogs .section-tag {
    text-align: center;
}

.blogs .section-title {
    text-align: center;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.blogs-grid .blog-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.blogs-grid .blog-card:hover {
    transform: translateY(-4px);
}

.blogs-grid .blog-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.blog-date {
    font-family: var(--font-ui);
    font-size: 13px;
    color: var(--color-text);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.3;
    color: var(--color-black);
    font-weight: 400;
}

/* ===========================
   FAQ
=========================== */

.faq {
    padding: 120px 0;
    background: var(--color-white);
}

.faq-container {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(620px, 1.35fr);
    gap: 80px;
    align-items: start;
}

.faq-header {
    position: sticky;
    top: 120px;
}

.faq-header .section-tag {
    text-align: left;
    margin-bottom: 20px;
}

.faq-main-title {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    color: var(--color-black);
    font-weight: 400;
}

.faq-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 820px;
}

.faq-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: padding 0.3s ease;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
    gap: 20px;
    user-select: none;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-black);
    font-weight: 400;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    padding-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                padding-top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height, opacity, padding-top;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding-top: 16px;
}

.faq-item:not(.active) .faq-answer {
    padding-top: 0;
}


/* ===========================
   CTA
=========================== */

.cta {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.cta-bg {
    display: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 60px 20px;
    max-width: 900px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 68px;
    margin-bottom: 24px;
    font-weight: 400;
    color: var(--color-white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.cta-subtitle {
    font-family: var(--font-ui);
    font-size: 22px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===========================
   PAST TRANSACTIONS PAGE
=========================== */

.past-transactions-hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.past-transactions-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.75);
    transition: transform 0.3s ease;
}

.past-transactions-hero:hover .past-transactions-hero-image {
    transform: scale(1.02);
}

.past-transactions-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.past-transactions-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
}

.past-transactions-hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.past-transactions-hero-text .section-tag {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.past-transactions-hero-title {
    font-family: var(--font-heading);
    font-size: 110px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2em;
    margin: 0;
    letter-spacing: 0em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 6px 24px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.past-transactions-hero-subtitle {
    font-family: var(--font-ui);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: 1.2em;
    letter-spacing: 0em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Transactions Section */
.transactions-section {
    background: var(--color-white);
    padding: 120px 0;
}

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

.transactions-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 48px;
}

.transactions-header .section-tag {
    opacity: 0.67;
}

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

.transaction-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.transaction-card:hover {
    transform: translateY(-8px);
}

.transaction-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.transaction-card:hover .transaction-image-wrapper {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.transaction-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.transaction-status {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--color-white);
    padding: 8px 12px 8px 16px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 2;
}

.transaction-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-left: 12px;
}

.transaction-address {
    font-family: var(--font-ui);
    font-size: 26px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.2;
    margin: 0;
}

.transaction-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.transaction-spec {
    display: flex;
    align-items: center;
    gap: 8px;
}

.transaction-spec svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-black);
}

.transaction-spec span {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-black);
}

.transaction-price {
    font-family: var(--font-ui);
    font-size: 26px;
    font-weight: 500;
    color: var(--color-black);
    margin: 0;
}

/* ===========================
   CTA SECTION
=========================== */

.cta-section {
    width: 100%;
    height: min-content;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 200px 0;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 90%;
    max-width: 1200px;
}

.cta-content .section-tag {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 22px;
    letter-spacing: 0em;
    text-transform: uppercase;
    line-height: 1.2em;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2em;
    margin: 0;
    letter-spacing: 0em;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background: var(--color-white);
    color: var(--color-black);
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0em;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    line-height: 110%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* ===========================
   FOOTER
=========================== */

.footer {
    background: #f5f5f5;
    color: rgba(0, 0, 0, 0.7);
    padding: 80px 0 40px;
}

.footer-top {
    margin-bottom: 60px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-black);
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.footer-logo svg {
    width: 32px;
    height: 32px;
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.footer-logo * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.footer-newsletter {
    max-width: 500px;
}

.newsletter-title {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-black);
    margin-bottom: 12px;
    font-weight: 400;
}

.newsletter-description {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    background: white;
    color: var(--color-black);
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.3);
}

.newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.newsletter-btn {
    padding: 14px 32px;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.footer-links,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-family: var(--font-ui);
    color: var(--color-black);
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-link {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-link svg {
    width: 16px;
    height: 16px;
    color: rgba(0, 0, 0, 0.4);
}

.footer-link:hover {
    color: var(--color-black);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: #5a9a9a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #4a8585;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-credit,
.footer-copyright,
.footer-framer {
    font-family: var(--font-ui);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

.footer-framer {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-framer svg {
    width: 16px;
    height: 16px;
}

/* Powered by Locava - Modern Design */
.footer-powered {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-powered::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-powered:hover::before {
    left: 100%;
}

.footer-powered span {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

.footer-powered strong {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    position: relative;
}

.footer-powered strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a8585, #5a9999);
    transition: width 0.3s ease;
}

.footer-powered:hover strong::after {
    width: 100%;
}

.footer-powered svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-powered:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.footer-powered:hover svg {
    stroke: #ffffff;
    transform: translateX(3px);
}

/* ===========================
   ABOUT PAGE
=========================== */

.about-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.about-hero .hero-bg-image {
    filter: brightness(0.75);
    transition: transform 0.3s ease;
}

.about-hero:hover .hero-bg-image {
    transform: scale(1.02);
}

.about-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.about-hero .hero-tag {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-title-large {
    color: var(--color-white);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 6px 24px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.about-content {
    background: #fff;
    padding: 120px 0;
}

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

.about-image-wrapper {
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-subtitle {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.about-name {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    line-height: 1.2;
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-description p {
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.about-contact {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid #e0e0e0;
}

.contact-heading {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 15px;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item svg {
    width: 16px;
    height: 16px;
    color: rgba(0, 0, 0, 0.4);
}

.contact-item:hover {
    color: var(--color-black);
}

.mission-section {
    background: #f5f5f5;
    padding: 120px 0;
}

.mission-header {
    text-align: center;
    margin-bottom: 64px;
}

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

.value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--color-black);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-title {
    font-family: var(--font-ui);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
}

.value-description {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    color: #666;
    margin: 0;
}

/* Partners Section */
.partners-section {
    background: #f9f9f9;
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.partners-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Fade effect on edges */
.partners-wrapper::before,
.partners-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.partners-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f9f9f9 0%, rgba(249, 249, 249, 0.8) 30%, transparent 100%);
}

.partners-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f9f9f9 0%, rgba(249, 249, 249, 0.8) 30%, transparent 100%);
}

.partners-track {
    display: flex;
    gap: 50px;
    animation: scroll-left 25s linear infinite;
    width: fit-content;
    will-change: transform;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-text {
    font-family: var(--font-ui);
    font-size: 18px;
    white-space: nowrap;
    user-select: none;
    cursor: default;
    pointer-events: none;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

.about-blog-section {
    background: #fff;
    padding: 120px 0;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

/* Removed - using blog page specific styles below */

.blog-content {
    padding: 0 12px;
}

.blog-date {
    font-family: var(--font-ui);
    font-size: 14px;
    color: #999;
    margin: 0 0 12px 0;
}

.blog-title {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.3;
    margin: 0;
}

.blog-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Duplicate btn-view-all removed - using main button styles above */

/* ===========================
   CONTACT PAGE
=========================== */

.contact-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.contact-hero .hero-bg-image {
    filter: brightness(0.75);
    transition: transform 0.3s ease;
}

.contact-hero:hover .hero-bg-image {
    transform: scale(1.02);
}

.contact-hero .hero-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.contact-hero .hero-tag {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.contact-hero .hero-title-large {
    color: var(--color-white);
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 6px 24px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.contact-hero .hero-subtitle {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: var(--font-ui);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    text-align: center;
    margin: 0;
}

.contact-form-section {
    background: #f5f5f5;
    padding: 120px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.contact-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 48px 0;
}

.form-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-tag {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.67);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    line-height: 1.2;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(187, 187, 187, 0.08);
    border: 2px solid rgba(136, 136, 136, 0.15);
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 400;
    color: #262626;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(0, 0, 0, 0.4);
    background: white;
}

.form-input.valid,
.form-select.valid,
.form-textarea.valid {
    border-color: #2d7a4f;
    background: rgba(45, 122, 79, 0.05);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.form-select option[value=""][disabled] {
    color: #999;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-ui);
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 6px;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.contact-image-wrapper {
    width: 100%;
    justify-self: center;
    min-height: 520px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(145deg, #ffffff, #f5f7f4);
    box-shadow:
        0 26px 80px rgba(0, 0, 0, 0.16),
        0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: visible;
}

.contact-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
    aspect-ratio: 16 / 9;
}

.contact-status {
    font-family: var(--font-ui);
    font-size: 14px;
    margin: 4px 0 2px;
}
.contact-status.success {
    color: #2d7a4f;
}
.contact-status.error {
    color: #c0392b;
}
.contact-image-callout {
    margin-top: 8px;
    padding: 18px 18px 16px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    color: #1f1f1f;
    display: grid;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-callout-kicker {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 12px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
}

.contact-callout-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    color: #0f0f0f;
    line-height: 1.25;
}

.contact-callout-body {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 15px;
    color: rgba(0, 0, 0, 0.78);
    line-height: 1.55;
}

.contact-callout-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
    flex-wrap: wrap;
}

.contact-callout-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2d7a4f;
    display: inline-block;
    box-shadow: 0 0 0 6px rgba(45, 122, 79, 0.12);
}

.contact-callout-separator {
    color: rgba(0, 0, 0, 0.35);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 76px;
    }

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

    .cta-title {
        font-size: 52px;
    }

    .navbar {
        padding: 18px 30px;
    }

    .container {
        padding: 0 30px;
    }

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

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

    .about-image-wrapper {
        height: 500px;
    }

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

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

    .hero-title-large {
        font-size: 76px;
    }

    .section-title-properties {
        font-size: 51px;
    }

    .past-transactions-hero-title {
        font-size: 76px;
    }

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

    .cta-title {
        font-size: 51px;
    }

    .cta-content .section-tag {
        font-size: 16px;
    }

    .blog-hero-title {
        font-size: 76px;
    }

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

/* Larger screens - better mobile menu layout */
/* Larger screens (769px and above) - Optimized design */
@media (min-width: 769px) {
    .mobile-menu-overlay {
        height: 60vh;
        max-height: 60vh;
    }

    .mobile-menu-content {
        padding: 70px 50px 40px;
        gap: 60px;
        align-items: center;
    }

    .mobile-menu-left {
        gap: 24px;
        align-self: center;
    }

    .mobile-nav {
        gap: 8px;
    }

    .mobile-nav-link {
        font-size: clamp(26px, 4vw, 38px);
        padding-bottom: 6px;
    }

    .mobile-social {
        gap: 16px;
        margin-top: 8px;
    }

    .mobile-social-icon {
        width: 40px;
        height: 40px;
    }

    .mobile-menu-right {
        gap: 20px;
        align-self: center;
    }

    .mobile-contact-info {
        gap: 16px;
    }

    .mobile-contact-title {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .mobile-contact-name {
        font-size: 24px;
        margin-bottom: 3px;
    }

    .mobile-contact-role {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .mobile-contact-details {
        gap: 10px;
    }

    .mobile-contact-item {
        font-size: 13px;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    /* Better container padding for readability */
    .container {
        padding: 0 24px;
    }

    .mobile-menu-overlay {
        height: 100vh !important;
        max-height: 100vh !important;
        overflow-y: auto !important;
    }

    .mobile-menu-content {
        grid-template-columns: 1fr !important;
        padding: 100px 30px 50px !important;
        gap: 40px !important;
    }

    .mobile-menu-left {
        justify-content: flex-start !important;
    }

    .mobile-nav-link {
        font-size: clamp(28px, 7vw, 36px) !important;
    }

    /* Hide contact info on mobile phones */
    .mobile-menu-right {
        display: none !important;
    }

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

    .past-transactions-hero-title {
        font-size: 54px;
    }

    .past-transactions-hero-subtitle {
        font-size: 16px;
    }

    .transactions-section {
        padding: 60px 0;
    }

    .transactions-header {
        gap: 32px;
    }

    .transactions-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .transaction-image-wrapper {
        height: 345px;
    }

    .transaction-address {
        font-size: 24px;
    }

    .transaction-price {
        font-size: 24px;
    }

    .cta-title {
        font-size: 41px;
    }

    .cta-content .section-tag {
        font-size: 16px;
    }

    .cta-button {
        padding: 16px 32px;
        font-size: 16px;
    }

    .cta-section {
        padding: 120px 0;
    }

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

    .blog-hero-title {
        font-size: 54px;
    }

    .blog-section {
        padding: 60px 0;
    }

    .blog-container {
        gap: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-tag {
        font-size: 11px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
        line-height: 1.3;
    }

    .section-tag {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 16px;
    }

    .solutions-grid {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .solution-card {
        height: 400px;
    }

    .solution-overlay h3 {
        font-size: 32px;
        line-height: 1.3;
    }

    .solutions-grid:hover .solution-card {
        flex: 1;
    }

    .solutions-grid .solution-card:hover {
        flex: 1;
    }

    .solutions-grid:hover .solution-card:not(:hover) .solution-overlay {
        opacity: 1;
    }

    .listings-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Fix property card images to be same size on mobile */
    .listing-image-wrapper {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }

    .listing-card img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 280px !important;
        max-height: 280px !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .listings .listing-card .listing-image-wrapper {
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
    }

    .listings .listing-card img {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 280px !important;
        max-height: 280px !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .listing-title {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .listing-price {
        font-size: 26px;
        margin-top: 8px;
    }

    .listing-details {
        font-size: 15px;
        margin: 12px 0;
    }

    .properties-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-title-large {
        font-size: 54px;
    }

    .section-title-properties {
        font-size: 41px;
    }

    .properties-section {
        padding: 60px 0;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    /* Image first, then text on mobile */
    .about-images {
        order: 1;
    }

    .about-text {
        order: 2;
    }

    .about-img-single {
        max-width: 100%;
        border-radius: 8px;
    }

    /* Better readability on mobile */
    .about-description {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center !important;
    }

    .stat-item {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .stat-number {
        font-size: 56px;
        text-align: center !important;
        width: 100%;
    }

    .stat-label {
        text-align: center !important;
        width: 100%;
    }

    .cta-title {
        font-size: 40px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    /* Footer mobile styles */
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-powered {
        padding: 12px 20px;
        gap: 10px;
    }

    .footer-powered span {
        font-size: 12px;
    }

    .footer-powered strong {
        font-size: 14px;
    }

    .footer-links,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .navbar {
        padding: 16px 25px;
    }

    .navbar .logo {
        font-size: 22px;
    }

    .navbar nav {
        gap: 20px;
    }

    .navbar nav a {
        font-size: 13px;
    }

    .container {
        padding: 0 25px;
    }

    .testimonial-quote {
        font-size: 24px;
    }

    .faq-question {
        font-size: 22px;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-header {
        position: static;
    }

    .faq-main-title {
        font-size: 42px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

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

    .cta-title {
        font-size: 32px;
    }

    .navbar nav {
        display: none;
    }

    .footer-links,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content,
    .mission-section,
    .about-blog-section {
        padding: 60px 0;
    }

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

    .about-image-wrapper {
        height: 350px;
    }

    .about-name {
        font-size: 36px;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .blog-header {
        margin-bottom: 32px;
    }

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

    .contact-form-wrapper {
        padding: 0;
    }

    .form-title {
        font-size: 41px;
    }

    .contact-image-wrapper {
        min-height: 400px;
        max-height: 500px;
    }

    .mobile-menu-content {
        grid-template-columns: 1fr;
        padding: 100px 30px 30px;
    }

    .mobile-menu-left {
        padding-right: 0;
    }

    .mobile-nav-link {
        font-size: 36px;
    }

    .mobile-menu-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .contact-image-wrapper {
        display: none;
    }

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

    .contact-form-wrapper {
        padding: 0;
    }
}

/* ===========================
   BLOG PAGE STYLES
   =========================== */

/* Blog Hero Section */
.blog-hero {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.blog-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.75);
    transition: transform 0.3s ease;
}

.blog-hero:hover .blog-hero-image {
    transform: scale(1.02);
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    height: 100%;
}

.blog-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.blog-hero-text .section-tag {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.blog-hero-title {
    font-family: var(--font-heading);
    font-size: 110px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2em;
    margin: 0;
    letter-spacing: 0em;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 6px 24px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.6);
}

.blog-hero-subtitle {
    font-family: var(--font-ui);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: 1.2em;
    letter-spacing: 0em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* Blog Section */
.blog-section {
    background: var(--color-white);
    padding: 100px 0 120px 0;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 60px;
    column-gap: 40px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.2;
    margin: 0;
}

.blog-date {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

.blog-image-wrapper {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 12px;
    display: block;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    display: block;
}

.blog-card:hover .blog-image {
    transform: scale(1.02);
}

/* ===================================
   BLOG ARTICLE PAGE STYLES
   =================================== */

/* Blog Article Hero */
.blog-article-hero {
    width: 100%;
    height: 60vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-article-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 1;
}

.blog-article-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.75);
    aspect-ratio: 16 / 9;
    transition: transform 0.3s ease;
}

.blog-article-hero:hover .blog-article-hero-image {
    transform: scale(1.02);
}

.blog-article-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
}

.blog-article-hero-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.blog-article-date {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.blog-article-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.2em;
    margin: 0;
    max-width: 900px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5), 0 6px 24px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.6);
}

/* Blog Article Content Section */
.blog-article-section {
    background: var(--color-white);
    padding: 80px 0;
}

.blog-article-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.blog-article-content {
    max-width: 800px;
}

.blog-article-intro {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.6em;
    margin: 0 0 40px 0;
    opacity: 0.8;
}

.blog-article-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.3em;
    margin: 48px 0 20px 0;
}

.blog-article-content h2:first-of-type {
    margin-top: 0;
}

.blog-article-content p {
    font-family: var(--font-ui);
    font-size: 17px;
    font-weight: 400;
    color: var(--color-black);
    line-height: 1.7em;
    margin: 0 0 24px 0;
    opacity: 0.85;
}

.blog-article-cta {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 8px;
    margin-top: 60px;
    text-align: center;
}

.blog-article-cta h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0 0 12px 0;
}

.blog-article-cta p {
    font-family: var(--font-ui);
    font-size: 16px;
    color: var(--color-black);
    opacity: 0.7;
    margin: 0 0 24px 0;
}

/* Blog Article Sidebar */
.blog-article-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.blog-article-sidebar h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0 0 24px 0;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.related-article-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.related-article-card:hover {
    transform: translateY(-4px);
}

.related-article-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
}

.related-article-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.related-article-date {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    color: var(--color-black);
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.related-article-card h4 {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.4em;
    margin: 0;
}

/* Responsive Styles for Blog Article Pages */
@media (max-width: 1024px) {
    .blog-article-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .blog-article-sidebar {
        position: static;
    }

    .related-articles {
        flex-direction: row;
        gap: 20px;
    }

    .related-article-card {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .blog-article-hero {
        height: 50vh;
    }

    .blog-article-hero-content {
        padding: 0 20px;
    }

    .blog-article-title {
        font-size: 40px;
    }

    .blog-article-section {
        padding: 60px 0;
    }

    .blog-article-container {
        padding: 0 20px;
        gap: 40px;
    }

    .blog-article-content h2 {
        font-size: 26px;
        margin: 32px 0 16px 0;
    }

    .blog-article-cta {
        padding: 30px 20px;
    }

    .blog-article-cta h3 {
        font-size: 24px;
    }

    .related-articles {
        flex-direction: column;
    }
}

/* ===========================
   TESTIMONIAL (NEW)
=========================== */
.testimonial-modern {
    padding: 100px 0;
    background: #f8f8f8;
}

.testimonial-modern__wrapper {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonial-modern__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-modern__subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: rgba(0, 0, 0, 0.65);
    margin: 12px 0 0 0;
    max-width: 520px;
}

.testimonial-modern__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-modern__card {
    position: relative;
    padding: 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f5f2 100%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-modern__quote-mark {
    font-family: var(--font-heading);
    font-size: 42px;
    color: rgba(0, 0, 0, 0.12);
    line-height: 1;
}

.testimonial-modern__quote {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.5;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-modern__meta {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.testimonial-modern__meta img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 0, 0, 0.06);
}

.testimonial-modern__name {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 700;
    color: #0f0f0f;
    margin: 0;
}

.testimonial-modern__role {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    margin: 2px 0 0 0;
}

.testimonial-modern__deal {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(45, 122, 79, 0.08);
    color: #2d7a4f;
    justify-self: end;
}

@media (max-width: 768px) {
    .testimonial-modern {
        padding: 70px 0;
    }

    .testimonial-modern__header {
        align-items: flex-start;
    }

    .testimonial-modern__grid {
        grid-template-columns: 1fr;
    }
}
