@font-face {
    font-family: 'Blatant';
    src: url('assets/fonts/Blatant.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:where([class^="ri-"])::before { content: "\f3c2"; }
        
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
        }
        
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background-color: #FF7F50;
            width: 0%;
            z-index: 100;
            transition: width 0.1s ease-out;
        }
        
        .hero-video-container {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .hero-video-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 1;
        }
        
        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            object-fit: cover;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .scroll-indicator {
            position: absolute !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            z-index: 20 !important;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(12px); }
        }
        
        /* .service-card styles removed */
        
        .property-card {
            overflow: hidden;
        }
        
        .property-image {
            transition: transform 0.5s ease;
        }
        
        .property-card:hover .property-image {
            transform: scale(1.05);
        }
        
        .property-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .property-card:hover .property-overlay {
            opacity: 1;
        }
        
        .custom-checkbox {
            position: relative;
            padding-left: 30px;
            cursor: pointer;
            user-select: none;
        }
        
        .custom-checkbox input {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }
        
        .checkmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 20px;
            width: 20px;
            background-color: #fff;
            border: 2px solid #ddd;
            border-radius: 4px;
        }
        
        .custom-checkbox:hover input ~ .checkmark {
            border-color: #ccc;
        }
        
        .custom-checkbox input:checked ~ .checkmark {
            background-color: #FF7F50;
            border-color: #FF7F50;
        }
        
        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }
        
        .custom-checkbox input:checked ~ .checkmark:after {
            display: block;
        }
        
        .custom-checkbox .checkmark:after {
            left: 6px;
            top: 2px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        
        .testimonial-slider {
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
        }
        
        .testimonial-slide.active {
            opacity: 1;
            z-index: 1;
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slider-dot.active {
            background-color: #FF7F50;
        }
        
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        .parallax {
            position: relative;
            overflow: hidden;
        }
        
        .parallax-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120%;
            background-position: center;
            background-size: cover;
            transform: translateY(0);
            z-index: -1;
        }
        
        input[type="number"]::-webkit-inner-spin-button,
        input[type="number"]::-webkit-outer-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        
        /* Remove glassmorphism, gradient overlay, floating elements, upgraded scroll indicator styles */
        .glassmorphism-card, .hero-gradient-overlay, .floating-decorative, .scroll-indicator.upgraded, .arrow-glow {
            display: none !important;
        }
        /* Updated scroll-indicator styles for responsive design */
        .scroll-indicator {
            position: absolute !important;
            left: 50% !important;
            transform: translateX(-50%) !important;
            z-index: 20 !important;
        }
        
        /* Remove conflicting specific styles to let Tailwind classes work */
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(12px); }
        }
        
        /* Font updates for hero */
        .hero-content h1 { font-family: 'Sora', 'Playfair Display', serif; }
        .hero-content p { font-family: 'Urbanist', 'Plus Jakarta Sans', sans-serif; }
        .hero-content a { font-family: 'Inter', 'Plus Jakarta Sans', sans-serif; }

        /* Hero Section Responsive Improvements */
        @media (max-width: 640px) {
            .hero-content {
                padding-left: 1rem;
                padding-right: 1rem;
                padding-top: 4rem;
                padding-bottom: 4rem;
            }
            
            .hero-content h1 {
                line-height: 1.1;
                letter-spacing: -0.02em;
            }
            
            .hero-content p {
                line-height: 1.5;
            }
            
            /* Ensure trust indicators wrap properly on small screens */
            #hero-trust .flex-wrap > div {
                flex-shrink: 0;
                min-width: fit-content;
            }
        }

        @media (min-width: 641px) and (max-width: 1024px) {
            .hero-content {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }
            
            .hero-content h1 {
                line-height: 1.15;
                letter-spacing: -0.015em;
            }
        }

        @media (min-width: 1025px) {
            .hero-content h1 {
                line-height: 1.1;
                letter-spacing: -0.01em;
            }
            
            .hero-content p {
                line-height: 1.6;
            }
        }

        /* Improve button responsiveness */
        @media (max-width: 640px) {
            #hero-cta a {
                padding: 0.875rem 1.5rem;
                font-size: 0.9rem;
                min-height: 48px; /* Ensure touch-friendly size */
            }
        }

        /* Remove custom responsive CSS for video, images, and footer grid */
        @media (max-width: 640px) {}
        @media (max-width: 768px) {}

        /* --- Preloader Styles Update --- */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.75s ease, visibility 0.75s ease, transform 0.75s ease;
        }
        
        /* Preloader Animation Delays */
        .logo-black:nth-child(1) { animation-delay: 0s; }
        .logo-black:nth-child(2) { animation-delay: 0.1s; }
        .house-icon { animation-delay: 0.3s; }
        .logo-black:nth-child(4) { animation-delay: 0.8s; }
        .logo-black:nth-child(5) { animation-delay: 0.9s; }
        .logo-black:nth-child(6) { animation-delay: 1.0s; }
        .logo-black:nth-child(7) { animation-delay: 1.1s; }
        .logo-orange:nth-child(1) { animation-delay: 1.3s; }
        .logo-orange:nth-child(2) { animation-delay: 1.4s; }
        .logo-orange:nth-child(3) { animation-delay: 1.5s; }
        .logo-orange:nth-child(4) { animation-delay: 1.6s; }
        .logo-orange:nth-child(5) { animation-delay: 1.7s; }
        .logo-orange:nth-child(6) { animation-delay: 1.8s; }
        .logo-orange:nth-child(7) { animation-delay: 1.9s; }
        
        /* Map placeholder styles */
        .map-placeholder {
            background-image: url('https://public.readdy.ai/gen_page/map_placeholder_1280x720.png');
            background-size: cover;
            background-position: center;
            width: 100%;
            height: 100%;
        }
        .preloader-hidden {
            opacity: 0;
            visibility: hidden;
            transform: translateY(-20px);
        }
        .preloader-hidden .house-icon {
            animation: none;
        }
        .logo, .boateng-part, .logo-livings {
            font-family: 'Blatant', 'Courier New', Courier, monospace, sans-serif !important;
        }
        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 400;
        }
        .boateng-part {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2.6rem;
            font-weight: 700;
            letter-spacing: 0.35rem;
            width: 100%;
            padding-bottom: 0;
            margin-bottom: -0.40em;
            flex-wrap: nowrap;
        }
        .logo-livings {
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 2.0rem;
            letter-spacing: 0.18rem;
            width: 100%;
            padding-top: 0;
            margin-top: 0;
        }
        .house-icon {
            
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.4rem;
            letter-spacing: 0.35rem;
            width: 100%;
            padding-bottom: 0;
            margin-bottom: -0.40em;
            flex-wrap: nowrap;
            color: #FF6600;
            margin: 0 0.15em;
            position: relative;
            top: 0;
            left: 0;
            transform: translateY(0) scale(0.5);
            opacity: 0;
            animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards, glow 2s infinite ease-in-out;
            animation-delay: 0.2s, 0.8s;
            vertical-align: baseline;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .boateng-part {
                font-size: 2rem;
                letter-spacing: 0.22rem;
            }
            .logo-livings {
                font-size: 1.4rem;
                letter-spacing: 0.13rem;
            }
            .cursor-container::after {
                height: 0.8em;
            }
            .house-icon {
                font-size: 1.2rem;
                letter-spacing: 0.22rem;
            }
        }
        @media (max-width: 480px) {}
        .logo span {
            opacity: 0;
            animation: fadeIn 0.1s forwards;
        }
        .logo-black {
            color: #1a1a1a;
        }
        .logo-orange {
            color: #FF6600;
        }
        .cursor-container {
            position: relative;
        }
        .cursor-container::after {
            display: none !important;
        }
        .logo-livings .cursor-container::after {
            animation: blink 1s infinite, hideCursor 0.1s forwards;
            animation-delay: 0s, 1.2s;
        }
        @keyframes fadeIn {
            to { opacity: 1; }
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        @keyframes hideCursor {
            to { opacity: 0; }
        }
        @keyframes popIn {
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        @keyframes glow {
            0%, 100% {
                filter: drop-shadow(0 0 3px rgba(255, 102, 0, 0.4));
            }
            50% {
                filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.8));
            }
        }
        /* Center the house icon vertically with BOATENG text */
        .boateng-part .house-icon {
            vertical-align: middle;
            align-self: center;
            position: relative;
        }

        /* Trusted Clients Section Styles */
        .trust-item {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .trust-item:hover {
            transform: translateY(-5px);
        }

        .trust-item:hover .w-16 {
            background-color: rgba(255, 127, 80, 0.2) !important;
            transform: scale(1.1);
            transition: all 0.3s ease;
        }

        .partner-logo {
            transition: transform 0.3s ease;
        }

        .partner-logo:hover {
            transform: translateY(-3px);
        }

        .partner-logo .w-24 {
            transition: all 0.3s ease;
        }

        .partner-logo:hover .w-24 {
            box-shadow: 0 4px 12px rgba(255, 127, 80, 0.2);
        }

        .trust-badge {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .trust-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Responsive adjustments for trusted clients section */
        @media (max-width: 768px) {
            .trust-item .w-16 {
                width: 3rem;
                height: 3rem;
            }
            
            .trust-item h3 {
                font-size: 1.125rem;
            }
            
            .partner-logo .w-24 {
                width: 5rem;
                height: 3rem;
            }
            
            .trust-badge {
                font-size: 0.75rem;
                padding: 0.5rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .trust-item .w-16 {
                width: 2.5rem;
                height: 2.5rem;
            }
            
            .trust-item h3 {
                font-size: 1rem;
            }
            
            .partner-logo .w-24 {
                width: 4rem;
                height: 2.5rem;
            }
            
            .trust-badge {
                font-size: 0.7rem;
                padding: 0.375rem 0.75rem;
            }
        }

        @media (max-width: 480px) {
            #slider-track > div,
            .property-card {
                width: 100vw !important;
                max-width: 100vw !important;
                min-width: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                box-sizing: border-box;
            }
            .property-image {
                display: block;
                margin-left: auto;
                margin-right: auto;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
                max-width: 100vw !important;
            }
        }

        /* Responsive grid for featured properties */
        #property-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        @media (min-width: 640px) {
            #property-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            #property-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Navigation Styles */
        .nav-link {
            position: relative;
            overflow: hidden;
        }

        .nav-underline {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #FF7F50, #FF6347);
            transition: width 0.3s ease;
        }

        .nav-link:hover .nav-underline {
            width: 100%;
        }

        /* Hamburger Menu */
        .hamburger-menu {
            position: relative;
            width: 24px;
            height: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger-line {
            width: 100%;
            height: 2px;
            background-color: currentColor;
            border-radius: 1px;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        /* Hamburger Animation */
        .hamburger-menu.active .hamburger-line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger-menu.active .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger-menu.active .hamburger-line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Mobile Menu Animation */
        #mobile-menu {
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
        }

        #mobile-menu.active {
            max-height: 500px;
            opacity: 1;
            transform: translateY(0);
        }

        #mobile-menu:not(.active) {
            max-height: 0;
            opacity: 0;
            transform: translateY(-10px);
        }

        /* Mobile Nav Links Animation */
        .mobile-nav-link {
            opacity: 0;
            transform: translateX(-20px);
            transition: all 0.3s ease;
        }

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

        #mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
        #mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
        #mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
        #mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
        #mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }

        /* Navigation Scroll Effect */
        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        /* Active Navigation Link */
        .nav-link.active {
            color: #FF7F50;
        }

        .nav-link.active .nav-underline {
            width: 100%;
        }

        /* Mobile Menu Backdrop */
        .mobile-menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 40;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu-backdrop.active {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Navigation Adjustments */
        @media (max-width: 1023px) {
            nav {
                padding: 0;
            }
            
            .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger-menu {
                width: 20px;
                height: 16px;
            }
            
            .hamburger-menu.active .hamburger-line:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }
            
            .hamburger-menu.active .hamburger-line:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }
        }

        /* Focus States for Accessibility */
        .nav-link:focus,
        .mobile-nav-link:focus,
        #mobile-menu-button:focus {
            outline: 2px solid #FF7F50;
            outline-offset: 2px;
            border-radius: 4px;
        }

        /* High Contrast Mode Support */
        @media (prefers-contrast: high) {
            .nav-underline {
                height: 3px;
            }
            
            .hamburger-line {
                height: 3px;
            }
        }

        /* Reduced Motion Support */
        @media (prefers-reduced-motion: reduce) {
            .nav-underline,
            .hamburger-line,
            #mobile-menu,
            .mobile-nav-link {
                transition: none;
            }
            
            .hamburger-menu.active .hamburger-line {
                transition: none;
            }
        }