@charset "UTF-8";
/* CSS Document */

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

        body {
    font-family: "Jost", sans-serif;
    line-height: 1;
    color: #494949;
    background: #828282;
    margin: 0;
    padding: 0;
}

   /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(48,48,48,0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
            transition: all 0.3s ease;
			padding: 0;	
        }

        nav.scrolled {
            background: #545454;
            box-shadow: 0 2px 20px rgba(0,0,0,0.15);
        }

        .nav-container {
            max-width: 100%;
            margin: 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }

        .logo {
            font-size: 1.2rem;
            font-weight: 600;
            color: #DADADA;
            letter-spacing: 0.5px;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #DADADA;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-links a:hover {
            color: #3498db;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
        }

       .hamburger span {
    width: 25px;
    height: 3px;
    background: #DADADA;  /* Matches your nav links */
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero Banner */
        .hero-banner {
    position: relative;
    width: 100%;
    margin-top: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #828282 0%, #2c2c2c 100%);
}

        .banner-image {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    z-index: 0;
}

        .hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}
   

        /* Slideshow Section */
        .slideshow-section {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding: 2rem 1rem;
    position: relative;
    z-index: 100;
        }

        .slideshow-container {
            position: relative;
            background: rgba(142,142,142,0.00);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .slide {
    display: none;
    position: relative;
    line-height: 0;
    cursor: pointer;
}
        .slide.active {
            display: block;
            animation: fadeIn 0.8s ease-in-out;
        }

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

        .slide img {
            width: 100%;
            height: 600px;
            object-fit: cover;
        }

        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 2rem;
            font-size: 1.1rem;
        }

        .slideshow-controls {
            position: absolute;
            bottom: 2rem;
            right: 2rem;
            display: flex;
            gap: 1rem;
            z-index: 100;
        }

        .control-btn {
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .control-btn:hover {
            background: white;
            transform: scale(1.1);
        }

        .control-btn svg {
            width: 20px;
            height: 20px;
            fill: #1e3a5f;
        }

        .slide-indicators {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 100;
        }

        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: white;
            width: 30px;
            border-radius: 5px;
        }

        /* Lightbox */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .lightbox-image {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
            border-radius: 4px;
        }

        .lightbox-close {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: rgba(255,255,255,0.9);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10001;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .lightbox-close:hover {
            background: white;
            transform: scale(1.1);
        }

        .lightbox-close::before,
        .lightbox-close::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 3px;
            background: #1e3a5f;
            border-radius: 2px;
        }

        .lightbox-close::before {
            transform: rotate(45deg);
        }

        .lightbox-close::after {
            transform: rotate(-45deg);
        }

        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.9);
            border: none;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .lightbox-nav:hover {
            background: white;
            transform: translateY(-50%) scale(1.1);
        }

        .lightbox-nav.prev {
            left: 2rem;
        }

        .lightbox-nav.next {
            right: 2rem;
        }

        .lightbox-nav svg {
            width: 24px;
            height: 24px;
            fill: #1e3a5f;
        }

        .lightbox-counter {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(255,255,255,0.9);
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            color: #1e3a5f;
            font-weight: 600;
            font-size: 1rem;
        }


        @media (max-width: 768px) {
            .lightbox-close {
                top: 1rem;
                right: 1rem;
                width: 45px;
                height: 45px;
            }

            .lightbox-nav {
                width: 50px;
                height: 50px;
            }

            .lightbox-nav.prev {
                left: 1rem;
            }

            .lightbox-nav.next {
                right: 1rem;
            }

            .lightbox-counter {
                bottom: 1rem;
                font-size: 0.9rem;
                padding: 0.5rem 1rem;
            }
        }

        /* Content Sections */
        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 5rem 2rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            color: #292929;
            margin-bottom: 1rem;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .section-subtitle {
    font-size: 1.2rem;
    color: #292929;
    margin-bottom: 2rem;
    font-weight: 400;
        }

        /* Property Overview */
        .property-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

      .property-feature {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #686868;
    margin-bottom: 0.5rem;
}

.feature-text {
    color: #989898;
    font-size: 1rem;
}

        /* Description */
        .description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #2C2C2C;
            margin: 2rem 0;
        }

        .description p {
            margin-bottom: 1.5rem;
        }

        .highlight-box {
            background:#2a2a2a;
            border-left: 4px solid #444444;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 8px;
        }

        .highlight-box h3 {
    color: #DCDCDC;
    margin-bottom: 1rem;
    font-size: 1.5rem;
        }

        .highlight-list {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .highlight-list li {
            padding: 0.5rem 0;
            color: #989898;
        }

        .highlight-list li::before {
            content: "✓";
            color: #3498db;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        /* Location Section */
        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }

        .location-card {
            background: #E9E9E9;
            padding: 2rem;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }

        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .location-card h4 {
            color: #4F4F4F;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .location-card p {
            color: #4F4F4F;
            line-height: 1.6;
        }

       /* Contact Section */
        .contact-section {
            background: linear-gradient(0deg, #555555 0%, #808080 100%);
            color: white;
            padding: 5rem 2rem;
            text-align: center;
        }

        .contact-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .contact-section h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .contact-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .agent-info {
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            padding: 2rem;
            margin: 2rem auto;
            max-width: 500px;
        }

        .agent-name {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .agent-company {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 1.5rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.1rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .cta-button {
            display: inline-block;
            background: transparent;
            color: #E2E2E2;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
			 border: 2px solid #E2E2E2;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.3);
            background: #727272;
        }

        .cta-button.secondary {
            background: transparent;
            color: #E2E2E2;
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
			 border: 2px solid #E2E2E2;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

        .cta-button.secondary:hover {
			transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0,0,0,0.3);
            background: #727272;
        }

      /* Footer */
        footer {
            background: #2D2D2D;
            color: white;
            text-align: center;
            padding: 2rem;
            font-size: 0.9rem;
        }

        /* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: rgba(80,80,80,0.92);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 1.5rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

            

            .slide img {
                height: 400px;
            }

            .slideshow-controls {
                bottom: 1rem;
                right: 1rem;
            }

            .control-btn {
                width: 40px;
                height: 40px;
            }

			 .slide-indicators {
        display: none;  /* <-- ADD THIS LINE */
    }

            .section {
                padding: 3rem 1rem;
            }

            .property-grid,
            .location-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (min-width: 1600px) {
            .slide img {
                height: 700px;
            }
        }
  </style>
</head>