﻿:root {
            --primary: #1F2E5A; /* Deep Royal Navy */
            --primary-light: #123B6D;
            --accent: #C9A227; /* Premium Gold */
            --accent-light: #E3BE43;
            --text-dark: #1F2E5A;
            --text-gray: #5F6472;
            --text-light: #6C7280;
            --dark: #1F2E5A;
            --bg-white: #FFFCF5;
            --bg-soft: #F8F1DF;
            --surface-dark: #FFFFFF;
            --surface-cream: #FFFFFF;
            --input-bg: #FFF9EC;
            --border-gold: #EAD9A8;
            --divider-light: #EFE6CF;
            --alternate-section: #F9F3E6;
            --navbar-bg: #FFFFFF;
            --glass: rgba(255, 255, 255, 0.94);
            --shadow-sm: 0 10px 30px rgba(31, 46, 90, 0.08);
            --shadow-md: 0 16px 42px rgba(31, 46, 90, 0.10);
            --shadow-lg: 0 24px 60px rgba(31, 46, 90, 0.12);
            --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
            --radius: 12px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        img {
            max-width: 100%;
        }

        body {
            background-color: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, .font-serif {
            font-family: Tahoma, Geneva, Verdana, sans-serif, serif;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        section {
            padding: 120px 0;
            position: relative;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 32px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            gap: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-light);
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .btn-accent {
            background: var(--accent);
            color: white;
        }

        .btn-accent:hover {
            background: #B88A1A;
            transform: translateY(-5px);
            box-shadow: var(--shadow-sm);
        }

        /* Navbar */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--navbar-bg);
            transition: var(--transition);
            padding: 14px 0;
            box-shadow: var(--shadow-sm);
            border-bottom: 1px solid var(--border-gold);
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.50);
            backdrop-filter: blur(9px);
            -webkit-backdrop-filter: blur(12px);
            padding: 10px 0;
            box-shadow: 0 10px 28px rgba(8, 18, 42, 0.08);
            border-bottom-color: rgba(201, 162, 39, 0.28);
        }

        nav.scrolled .nav-links a {
            color: var(--primary);
        }

        nav.scrolled #loginBtn {
            color: var(--primary) !important;
            border-color: var(--primary) !important;
        }

        nav.scrolled .hamburger {
            color: var(--primary);
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: clamp(24px, 4vw, 64px);
        }

        .logo {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            height: 88px;
            width: 356px;
            max-width: 36vw;
            padding: 4px 0;
        }

        .logo img {
            display: block;
            width: auto;
            max-width: 100%;
            max-height: 87px;
            height: auto;
            object-fit: contain;
            object-position: left center;
        }

        .nav-links {
            display: flex;
            gap: clamp(22px, 3vw, 36px);
            align-items: center;
            flex-wrap: nowrap;
        }

        .nav-links a {
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            position: relative;
            color: var(--text-dark);
            text-shadow: none;
        }

        nav:not(.scrolled) .nav-links a {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a.active {
            color: var(--accent) !important;
        }

        .nav-auth {
            display: flex;
            gap: 15px;
            align-items: center;
            flex-shrink: 0;
        }

        .nav-auth #loginBtn {
            background: transparent !important;
            color: var(--primary) !important;
            border-color: var(--primary) !important;
        }

        .nav-auth #loginBtn:hover,
        nav.scrolled #loginBtn:hover {
            background: #1F2E5A !important;
            color: #FFFFFF !important;
            border-color: #1F2E5A !important;
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 680px;
            position: relative;
            display: flex;
            align-items: center;
            color: white;
            overflow: hidden;
            margin-top: 0;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slider::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(8, 18, 42, 0.16) 0%, rgba(8, 18, 42, 0.04) 52%, rgba(8, 18, 42, 0.22) 100%);
            z-index: 2;
            pointer-events: none;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.8s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .slider-arrows {
            position: absolute;
            right: 30px;
            bottom: 30px;
            display: flex;
            flex-direction: row;
            gap: 12px;
            z-index: 5;
        }

        .slider-arrow {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #1F2E5A;
            color: #FFFFFF;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 8px 24px rgba(0,0,0,0.18);
            transition: background 0.25s ease, transform 0.25s ease;
        }

        .slider-arrow:hover {
            background: #C9A227;
            color: #FFFFFF;
            transform: scale(1.06);
        }

        /* Search Bar */
        .search-container {
            background: var(--surface-cream);
            backdrop-filter: blur(25px);
            padding: 40px;
            border-radius: 16px;
            display: grid;
            grid-template-columns: repeat(4, 1fr) auto;
            gap: 25px;
            box-shadow: var(--shadow-lg);
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            border: 1px solid var(--border-gold);
        }

        .search-group {
            text-align: left;
        }

        .search-group label {
            display: block;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 10px;
            letter-spacing: 1.5px;
        }

        .search-group select, .search-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--border-gold);
            background: var(--input-bg);
            border-radius: 8px;
            font-size: 1rem;
            color: var(--text-dark);
            outline: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .search-group select:focus {
            border-color: var(--accent);
            background: var(--input-bg);
        }

        .search-btn {
            height: 100%;
            padding: 0 45px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 800;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .search-btn:hover {
            background: #B88A1A;
            box-shadow: var(--shadow-sm);
        }

        /* Stats Cards */
        .hero-stats {
            display: flex;
            gap: 30px;
            justify-content: center;
            margin-top: 80px;
        }

        .stat-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(15px);
            padding: 25px 45px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            animation: float 5s ease-in-out infinite;
            min-width: 200px;
        }

        .stat-card:nth-child(even) {
            animation-delay: 2.5s;
        }

        .stat-card h3 {
            font-size: 2.2rem;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .stat-card p {
            font-size: 0.9rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 700;
            margin: 0;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        /* Sections Header */
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-family:"Poppins";
        }

        .section-header .subtitle {
            color: var(--accent);
            text-transform: uppercase;
            font-weight: 800;
            font-size: 0.9rem;
            letter-spacing: 3px;
            display: block;
            margin-bottom: 15px;
        }

        .section-header h2 {
            font-size: 3.5rem;
            color: var(--primary);
            line-height: 1.2;
        }

        /* Properties Grid */
        .properties-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 40px;
        }

        .property-card {
            background: var(--surface-cream);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--border-gold);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .property-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .property-img-box {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .property-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.8s all ease;
        }

        .property-card:hover .property-img-box img {
            transform: scale(1.1);
        }

        .property-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .property-rating {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: var(--surface-cream);
            color: var(--accent);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 0.85rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: var(--shadow-sm);
        }

        .property-content {
            padding: 30px;
            flex-grow: 1;
        }

        .property-price {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 12px;
        }

        .property-title {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
        }

        .property-location {
            color: var(--text-light);
            font-size: 0.95rem;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .property-features {
            display: flex;
            justify-content: space-between;
            padding: 20px 0;
            border-top: 1px solid var(--divider-light);
            border-bottom: 1px solid var(--divider-light);
            margin-bottom: 25px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--text-gray);
            font-weight: 600;
        }

        .feature-item i {
            color: var(--accent);
        }

        /* Tags Area */
        .property-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .tag-btn {
            background: var(--input-bg);
            color: var(--primary);
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 0.7rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid transparent;
            transition: var(--transition);
        }

        .tag-btn:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }

        .btn-view {
            width: 100%;
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            font-weight: 800;
        }

        .btn-view:hover {
            background: var(--primary);
            color: white;
        }

        /* Our Team Section */
        #meet {
            background: var(--bg-white);
            padding-bottom: 50px;
        }

        #meet .section-header h2,
        #contact h2 {
            color: var(--primary) !important;
        }

        #offers {
            background: var(--bg-white);
            padding-top: 50px;
            padding-bottom: 70px;
        }

        .what-we-offer-page #offers {
            padding-top: 148px;
        }

        #about {
            background: var(--alternate-section);
            padding-top: 70px;
        }

        .about-page #about {
            padding-top: 166px;
        }
.network-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .network-card {
            background: var(--surface-cream);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-gold);
            transition: var(--transition);
        }

        .network-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-md);
        }

        .network-img {
            height: 220px;
            overflow: hidden;
        }

        .network-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.8s all ease;
        }

        .network-card:hover .network-img img {
            transform: scale(1.08);
        }

        .network-info {
            padding: 30px;
        }

        .network-info h3 {
            color: var(--accent);
            font-size: 1.45rem;
            margin-bottom: 12px;
        }

        .network-info p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin: 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(280px, 420px));
            gap: 34px;
            justify-content: center;
        }

        .team-card {
            background: var(--surface-cream);
            border-radius: 16px;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            transition: var(--transition);
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
        }

        .team-avatar {
            min-height: 210px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--input-bg);
            color: var(--primary);
            font-size: 4.5rem;
        }

        .team-info {
            padding: 30px;
        }

        .team-accent {
            display: block;
            width: 64px;
            height: 4px;
            background: var(--accent);
            border-radius: 999px;
            margin-bottom: 20px;
        }

        .team-info h3 {
            color: var(--primary);
            font-size: 1.55rem;
            margin-bottom: 10px;
        }

        .team-role {
            color: var(--accent);
            font-weight: 800;
            margin-bottom: 22px !important;
        }

        .team-info p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin: 0 0 12px;
        }

        .team-info i {
            color: var(--accent);
            margin-right: 10px;
        }

        /* What We Offer */
        .offer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .offer-card {
            background: var(--surface-cream);
            border-radius: 16px;
            border: 1px solid var(--border-gold);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .offer-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-md);
        }

        .offer-img {
            height: 210px;
            overflow: hidden;
        }

        .offer-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.8s all ease;
        }

        .offer-card:hover .offer-img img {
            transform: scale(1.08);
        }

        .offer-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .offer-card h3 {
            color: var(--primary);
            font-size: 1.55rem;
            margin-bottom: 12px;
        }

        .offer-card p {
            color: var(--text-gray);
            font-size: 0.95rem;
            margin: 0 0 28px;
            flex-grow: 1;
        }

        .offer-card .btn {
            align-self: flex-start;
            padding: 14px 24px;
            font-size: 0.78rem;
        }

        /* About Us Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .about-img-stack {
            position: relative;
            height: 650px;
        }

        .img-large {
            width: 85%;
            height: 85%;
            object-fit: cover;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
        }

        .img-small {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 55%;
            height: 55%;
            object-fit: cover;
            border-radius: 16px;
            border: 15px solid var(--bg-white);
            box-shadow: var(--shadow-md);
        }

        .about-text .subtitle {
            color: var(--accent);
            text-transform: uppercase;
            font-weight: 800;
            font-size: 0.9rem;
            letter-spacing: 3px;
            display: block;
            margin-bottom: 18px;
        }

        .about-text h3 {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 30px;
            line-height: 1.1;
        }

        .about-text p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        /* Timeline */
        .timeline {
            margin-top: 120px;
            position: relative;
        }

        .timeline::after {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 2px;
            height: 100%;
            background: var(--divider-light);
            transform: translateX(-50%);
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            margin-bottom: 80px;
            position: relative;
            text-align: right;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
            text-align: left;
        }

        .timeline-dot {
            position: absolute;
            top: 0;
            left: 50%;
            width: 24px;
            height: 24px;
            background: var(--accent);
            border: 5px solid var(--bg-white);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 2;
            box-shadow: var(--shadow-sm);
        }

        .timeline-content {
            padding: 0 50px;
        }

        .timeline-content h4 {
            color: var(--accent);
            font-size: 1.8rem;
            margin-bottom: 10px;
        }

        /* Contact Section */
        #contact {
            background: var(--bg-white);
            padding-top: 148px;
        }

        .home-page #contact {
            padding-top: 80px;
        }

        #contact > .container > .contact-grid > .reveal > p {
            color: var(--text-gray) !important;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 100px;
        }

        .info-cards {
            display: grid;
            gap: 30px;
        }

        .info-card {
            background: var(--surface-cream);
            padding: 40px;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 25px;
            align-items: center;
            border-left: 8px solid var(--accent);
        }

        .info-card i {
            font-size: 2.5rem;
            color: var(--accent);
        }

        .info-card h5 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .contact-person {
            margin-bottom: 22px;
        }

        .contact-person:last-child {
            margin-bottom: 0;
        }

        .contact-person h6 {
            margin: 0 0 4px;
            color: var(--primary);
            font-size: 1rem;
            font-weight: 800;
        }

        .contact-person p {
            margin: 3px 0;
            line-height: 1.55;
            color: var(--text-gray);
            font-size: 0.94rem;
        }

        .contact-person h6 + p {
            font-size: 0.88rem;
        }

        /* Enquiry Form */
        .contact-form-box {
            background: var(--surface-cream);
            padding: 52px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
        }

        .contact-form-box form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-bottom: 0;
        }

        .form-group {
            position: relative;
            display: flex;
            flex-direction: column-reverse;
            gap: 8px;
            margin-bottom: 0 !important;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            min-height: 58px;
            padding: 16px 18px;
            border: 1px solid var(--border-gold);
            border-radius: 12px;
            outline: none;
            font-size: 1rem;
            color: var(--dark);
            background: var(--input-bg);
            transition: var(--transition);
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--text-light);
            opacity: 1;
        }

        .form-group textarea {
            min-height: 130px;
            resize: vertical;
            line-height: 1.6;
        }

        .form-group select {
            cursor: pointer;
            appearance: auto;
            -webkit-appearance: menulist;
        }

        .form-group label {
            position: static;
            color: var(--dark);
            pointer-events: none;
            transition: var(--transition);
            font-weight: 800;
            font-size: 0.82rem;
            letter-spacing: 0.5px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            background: var(--input-bg);
            box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.16);
        }

        .contact-form-box .btn-primary {
            width: 100%;
            padding: 18px 24px !important;
            border-radius: 10px;
            margin-top: 4px;
        }

        .map-card {
            position: relative;
            margin-top: 100px;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            background: var(--surface-cream);
        }

        .map-card iframe {
            display: block;
        }

        .map-open-link {
            position: absolute;
            right: 24px;
            bottom: 24px;
            z-index: 3;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 18px;
            border-radius: 8px;
            background: var(--primary);
            color: #FFFFFF;
            font-size: 0.86rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.7px;
            box-shadow: 0 12px 30px rgba(8, 18, 42, 0.24);
        }

        .map-open-link:hover {
            background: var(--accent);
            color: #FFFFFF;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            background-image:
                radial-gradient(circle at 18% 0%, rgba(227, 190, 67, 0.18) 0%, transparent 34%),
                linear-gradient(135deg, #121D3F 0%, var(--primary) 48%, #123B6D 100%) !important;
            color: white;
            padding: 55px 0 34px;
            border-top: 4px solid var(--accent);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 64px;
            margin-bottom: 48px;
        }

        .footer-logo {
            margin-bottom: 18px;
            display: inline-block;
            width: 290px;
            height: 176px;
            max-width: 100%;
        }

        .footer-logo img {
            display: block;
            width: auto;
            max-width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: left center;
            transform: scale(1.16);
            transform-origin: left center;
            filter: drop-shadow(0 0 3px rgba(255,255,255,0.18)) drop-shadow(0 0 8px rgba(201,162,39,0.18));
        }

        .footer-desc {
            color: white;
            margin-bottom: 30px;
            font-size: 1rem;
        }

        .footer-links h5 {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--accent-light);
        }

        .footer-links ul li { margin-bottom: 18px; }

        .footer-links ul li a {
            color: white;
            font-size: 1rem;
        }

        .footer-links ul li a:hover {
            color: var(--accent-light);
            padding-left: 10px;
        }

        .footer-contact-person {
            margin-bottom: 22px;
        }

        .footer-contact-person:last-child {
            margin-bottom: 0;
        }

        .footer-contact-person h4 {
            margin: 0 0 6px;
            font-size: 1rem;
            font-weight: 700;
            color: white;
        }

        .footer-contact-person p {
            margin: 4px 0;
            line-height: 1.6;
            color: white;
            font-size: 0.95rem;
        }

        .footer-contact-person i {
            color: var(--accent-light);
            margin-right: 8px;
        }

        .footer-newsletter h5 {
            font-size: 1.3rem;
            margin-bottom: 30px;
            color: var(--accent-light);
        }

        .newsletter-box {
            display: flex;
            background: var(--input-bg);
            padding: 8px;
            border-radius: 10px;
            margin-bottom: 30px;
            border: 1px solid var(--border-gold);
        }

        .newsletter-box input {
            background: transparent;
            border: none;
            padding: 12px;
            color: var(--primary);
            flex-grow: 1;
            outline: none;
        }

        .newsletter-box input::placeholder {
            color: var(--text-gray);
            opacity: 1;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.12);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .x-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 1rem;
            font-weight: 900;
            line-height: 1;
        }

        .social-links a:hover {
            background: var(--accent-light);
            color: #FFFFFF;
            transform: translateY(-8px);
        }

        .social-links a:nth-child(1):hover {
            background: #1877F2;
        }

        .social-links a:nth-child(2):hover {
            background: linear-gradient(135deg, #F58529 0%, #DD2A7B 45%, #8134AF 100%);
        }

        .social-links a:nth-child(3):hover {
            background: #000000;
        }

        .social-links a:nth-child(4):hover {
            background: #0A66C2;
        }

        .footer-bottom {
            border-top: 1px solid rgba(231, 216, 178, 0.25);
            padding-top: 40px;
            text-align: center;
            color: white;
            font-size: 0.9rem;
        }

        /* Back to top */
        .back-to-top {
            position: fixed;
            bottom: 50px;
            right: 50px;
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        /* Reveal Animations */
        .reveal {
            opacity: 1;
            transform: translateY(0);
            transition: 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) all;
        }

        .reveal.hidden {
            opacity: 0;
            transform: translateY(50px);
        }

        .reveal.hidden.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Loader */
        .loader-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            transition: opacity 0.2s ease;
        }

        .loader-wrapper.hidden,
        .loader-wrapper.hide,
        .preloader.hide,
        #preloader.hide,
        .loader.hide,
        #loader.hide {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .loader {
            width: 70px;
            height: 70px;
            border: 5px solid rgba(255,255,255,0.1);
            border-top-color: var(--accent);
            border-radius: 50%;
            animation: spin 1s infinite linear;
        }

        @keyframes spin { to { transform: rotate(360deg); } }

        /* Responsive */
        @media (max-width: 1200px) {
            .container { max-width: 100%; }
            .search-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .search-btn { grid-column: span 2; }
            .about-grid { grid-template-columns: 1fr; gap: 60px; }
            .offer-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-logo { width: 260px; height: 160px; }
            .properties-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .network-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }

        @media (max-width: 900px) {
            .network-grid { grid-template-columns: minmax(0, 1fr); }
        }

        @media (max-width: 768px) {
            section { padding: 80px 0; }
            #meet { padding-bottom: 36px; }
            #offers { padding-top: 36px; padding-bottom: 48px; }
            #about { padding-top: 48px; }
            .about-page #about { padding-top: 120px; }
            .container { padding: 0 20px; }
            nav { padding: 12px 0; }
            .nav-content { gap: 16px; }
            .logo { width: 248px; height: 72px; max-width: 68vw; }
            .nav-links, .nav-auth { display: none; }
            .hamburger { display: block; }
            .hero {
                height: auto;
                min-height: 100vh;
                align-items: flex-start;
                padding: 100px 0 70px;
            }
            .slider-arrows {
                right: 24px;
                bottom: 24px;
                gap: 10px;
            }
            .slider-arrow {
                width: 42px;
                height: 42px;
            }
            .home-page .hero {
                padding-top: 128px;
            }
            .what-we-offer-page #offers {
                padding-top: 126px;
            }
            .hero-stats { display: none; }
            .section-header {
                margin-bottom: 45px;
            }
            .section-header h2 {
                font-size: clamp(2.2rem, 11vw, 3rem);
                overflow-wrap: break-word;
            }
            .section-header .subtitle {
                letter-spacing: 2px;
            }
            .properties-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
            .team-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
            .network-grid { grid-template-columns: 1fr; gap: 28px; }
            .network-info { padding: 30px; }
            .timeline::after { left: 30px; }
            .timeline-item { width: 100%; text-align: left !important; padding-left: 70px !important; padding-right: 0 !important; }
            .timeline-dot { left: 30px !important; }
            .contact-grid { grid-template-columns: 1fr; gap: 60px; }
            .map-card { margin-top: 64px; height: 420px; }
            .map-open-link { right: 18px; bottom: 18px; }
            .form-row { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            footer { padding: 44px 0 30px; }
            .footer-grid { gap: 34px; margin-bottom: 34px; }
            .footer-logo { width: 235px; height: 145px; margin-bottom: 14px; }
            .offer-grid { grid-template-columns: 1fr; gap: 28px; }
            .search-container {
                grid-template-columns: minmax(0, 1fr);
                padding: 28px;
                gap: 18px;
            }
            .search-group,
            .search-group select,
            .search-group input,
            .search-btn {
                min-width: 0;
            }
            .search-btn { grid-column: span 1; }
            .property-content,
            .offer-content,
            .contact-form,
            .network-info {
                min-width: 0;
            }
            .property-features {
                flex-wrap: wrap;
                gap: 14px;
            }
            .property-tags {
                gap: 8px;
            }
        }

        @media (max-width: 420px) {
            .container { padding: 0 16px; }
            section { padding: 65px 0; }
            #meet { padding-bottom: 28px; }
            #offers { padding-top: 28px; padding-bottom: 38px; }
            #about { padding-top: 38px; }
            .about-page #about { padding-top: 105px; }
            .hero { padding: 92px 0 60px; }
            .home-page .hero { padding-top: 118px; }
            .logo { width: 218px; height: 66px; }
            .slider-arrows { right: 20px; bottom: 22px; }
            .what-we-offer-page #offers { padding-top: 112px; }
            .search-container { padding: 22px; border-radius: 14px; }
            .search-btn,
            .btn {
                width: 100%;
                padding-left: 18px;
                padding-right: 18px;
            }
            .property-content,
            .offer-content,
            .network-info,
            .contact-form {
                padding: 24px;
            }
            .map-card { height: 360px; }
            .map-open-link {
                left: 16px;
                right: 16px;
                bottom: 16px;
                justify-content: center;
            }
            .offer-img,
            .network-img,
            .property-img-box {
                height: 190px;
            }
        }

        /* Mobile Nav */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 320px;
            height: 100vh;
            background: var(--surface-dark);
            z-index: 2000;
            padding: 80px 40px;
            box-shadow: var(--shadow-lg);
            transition: 0.5s ease;
        }

        .mobile-nav.active { right: 0; }

        .mobile-nav ul li { margin-bottom: 30px; }

        .mobile-nav ul li a {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary);
            text-transform: uppercase;
        }

        .mobile-nav ul li a.active {
            color: var(--accent);
        }

        .mobile-nav .btn-outline {
            border-color: var(--primary);
            color: var(--primary);
        }

        .mobile-nav .btn-primary {
            background: var(--accent);
            color: white;
        }

        .close-menu {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2rem;
            color: var(--accent);
            cursor: pointer;
            font-family: "Arial";
        }

.social-sidebar {
            position: fixed;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 900;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .social-sidebar a {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            width: 50px;
            height: 50px;
            border-radius: 10px;
            color: white;
            font-size: 1.3rem;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
            box-shadow: 0 8px 20px rgba(0,0,0,0.18);
            animation: slideInRight 0.6s ease both;
        }

        .social-sidebar a:nth-child(1) { background: #25D366; animation-delay: 0.1s; }
        .social-sidebar a:nth-child(2) { background: #1877F2; animation-delay: 0.2s; }
        .social-sidebar a:nth-child(3) { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); animation-delay: 0.3s; }
        .social-sidebar a:nth-child(4) { background: var(--primary); animation-delay: 0.4s; }

        .social-sidebar a:hover {
            width: 150px;
            box-shadow: 0 12px 28px rgba(0,0,0,0.26);
        }

        .social-sidebar a i {
            width: 50px;
            min-width: 50px;
            height: 50px;
            display:flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            flex-shrink: 0;
        }

        .social-sidebar a .sidebar-label {
            white-space: nowrap;
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            opacity: 0;
            width: 0;
            transition: opacity 0.3s ease 0.1s, width 0.3s ease;
            overflow: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif;
            padding-right: 14px;
        }

        .social-sidebar a:hover .sidebar-label {
            opacity: 1;
            width: 110px;
        }

        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to   { transform: translateX(0);   opacity: 1; }
        }

        @media (max-width: 600px) {
            .social-sidebar {
                right: 10px;
                top: 50%;
                bottom: auto;
                transform: translateY(-50%);
                flex-direction: column;
                gap: 8px;
                border-radius: 8px;
                overflow: visible;
                box-shadow: none;
            }
            .social-sidebar a {
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                font-size: 1rem;
                border-radius: 8px;
            }
            .social-sidebar a:hover { width: 40px; }
            .social-sidebar a i {
                width: 40px;
                min-width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                line-height: 1;
            }
            .social-sidebar a .sidebar-label { display: none; }
            body:has(.mobile-nav.active) .social-sidebar {
                opacity: 0;
                pointer-events: none;
            }
        }
