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

*, *::before, *::after {
    box-sizing: border-box; 
}

ul {
    list-style: none; 
}

a {
    text-decoration: none; 
}

:root {
    
    --bg-dark: #050507;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent-purple: #a18cd1;
    --accent-pink: #fbc2eb;
    --grad-primary: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    
    
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-glass: rgba(255, 255, 255, 0.1);
    
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --container-width: 1400px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
}


body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden; 
}

h1, h2, h3, h4, .header-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}


section {
    position: relative;
}

body {
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(106, 17, 203, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(37, 117, 252, 0.1) 0%, transparent 40%);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  margin: 0;
  line-height: 1.6;
}

.glass-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 24px;
}


.btn-primary {
  background: var(--gradient-main);
  border: none;
  border-radius: 50px;
  color: white;
  padding: 12px 30px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(106, 17, 203, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 17, 203, 0.5);
}


@media (max-width: 1024px) {
  
  .container { width: 90%; }
}

@media (max-width: 768px) {
  
  .grid { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
}


.header-up {
    background: #000;
    padding: 10px 40px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-glass);
}

.header-up-adress, .header-up-phone a {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}


header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    position: sticky; 
    top: 0;
    z-index: 1000;
}


.header-logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.header-logo span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-list li a:hover {
    color: #fff;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: var(--transition-smooth);
}

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


.header-booking-btn {
    background: var(--grad-primary);
    color: #000;
    padding: 12px 25px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(161, 140, 209, 0.2);
}

.header-booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(161, 140, 209, 0.4);
}


.burger {
    display: none; 
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: var(--transition-smooth);
}


@media (max-width: 1024px) {
    .header-up {
        display: none; 
    }

    .nav {
        position: fixed;
        top: 0;
        right: -800%; 
        width: 70%;
        height: 100vh;
        background: #0a0a0c;
        padding: 100px 40px;
        transition: 0.5s;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav.active {
        right: 0; 
    }

    .nav-list {
        flex-direction: column;
        gap: 40px;
    }

    .nav-list li a {
        font-size: 1.5rem;
    }

    .burger {
        display: flex;
        z-index: 1001;
    }
}


.hero {
    padding: 140px 40px 80px;
    background: radial-gradient(circle at top right, rgba(161, 140, 209, 0.05), transparent);
    overflow: hidden;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}


.hero-left h1 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-purple);
    margin-bottom: 20px;
}

.hero-left h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-btn {
    display: flex;
    gap: 20px;
}

.hero-btn a {
    padding: 18px 35px;
    border-radius: 14px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.hero-btn a:first-child {
    background: var(--grad-primary);
    color: #000;
}

.hero-btn a:last-child {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
}

.hero-btn a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(161, 140, 209, 0.3);
}


.hero-right {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    position: relative;
}

.hero-right h2 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.hero-right p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.hero-right img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-right-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-right-list li {
    padding-left: 20px;
    border-left: 2px solid var(--accent-purple);
}

.hero-right-list h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
}

.hero-right-list p {
    font-size: 0.85rem;
    margin: 0;
}


@media (max-width: 1100px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left p { margin-left: auto; margin-right: auto; }
    .hero-btn { justify-content: center; }
    .hero-right { max-width: 600px; margin: 40px auto 0; text-align: left; }
}

@media (max-width: 600px) {
    .hero { padding: 50px 20px 40px; }
    .hero-btn { flex-direction: column; }
    .hero-btn a { width: 100%; text-align: center; }
    .hero-right {
        padding: 20px;
    }
}


.browsing-realestate {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.browsing-realestate h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
}

.browsing-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 60px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.browsing-top h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #fff;
}

.browsing-top p {
    color: var(--text-muted);
    margin-bottom: 40px;
}


.browsing-btn {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 20px;
    margin-bottom: 40px;
    gap: 5px;
}

.browsing-btn a {
    padding: 12px 25px;
    border-radius: 15px;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition-smooth);
}


.browsing-btn a.active {
    background: #fff;
    color: #000;
    box-shadow: 0 10px 20px rgba(255,255,255,0.1);
}


.browsing-input {
    display: flex;
    background: #fff;
    padding: 10px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.browsing-input input {
    flex: 1;
    border: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    color: #000;
    background: transparent;
    outline: none;
}

.browsing-input a {
    background: var(--bg-dark);
    color: #fff;
    padding: 15px 35px;
    border-radius: 14px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.browsing-input a:hover {
    background: var(--accent-purple);
    transform: scale(1.02);
}


@media (max-width: 768px) {
    .browsing-wrapper { padding: 40px 20px; }
    .browsing-btn { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
    .browsing-input { flex-direction: column; background: transparent; gap: 15px; box-shadow: none; }
    .browsing-input input { background: #fff; border-radius: 15px; width: 100%; }
    .browsing-input a { width: 100%; text-align: center; }
}


.why-new-zealand {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.why-new-zealand h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
}

.why-new-zealand > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 60px;
}


.why-new-zealand-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

.why-new-zealand-list li {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 32px;
    text-align: left;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.why-new-zealand-list li:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.05);
}


.why-new-zealand-list img {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(161, 140, 209, 0.3)); 
}

.why-new-zealand-list h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.why-new-zealand-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


.why-new-zealand-list li::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(161, 140, 209, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.why-new-zealand-list li:hover::after {
    opacity: 1;
}


@media (max-width: 768px) {
    .why-new-zealand {
        padding: 60px 20px;
    }
    
    .why-new-zealand-list {
        grid-template-columns: 1fr;
    }
    
    .why-new-zealand-list li {
        padding: 30px;
    }
}


.infograph {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.infograph-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 50px;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    list-style: none;
    text-align: center;
    position: relative;
}

.infograph-list li {
    position: relative;
}


.infograph-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent);
}

.infograph-list h3 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    font-weight: 900;
}

.infograph-list p {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    font-weight: 600;
}


@media (max-width: 1024px) {
    .infograph-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .infograph-list li:nth-child(2)::after {
        display: none; 
    }
}

@media (max-width: 600px) {
    .infograph {
        padding: 40px 20px;
    }
    
    .infograph-list {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .infograph-list li::after {
        display: none !important;
    }
}


.featured-properties {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-properties h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.featured-properties > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}


.featured-properties-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

.featured-properties-list li {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 30px;
    padding: 20px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.featured-properties-list li:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}


.featured-properties-list img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.featured-properties-list h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}


.featured-price-location {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-glass);
}

.featured-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--accent-pink);
}

.featured-location {
    font-size: 0.85rem;
    color: var(--text-muted);
}


.features-text {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.features-text span {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
}


.featured-properties-list a {
    margin-top: auto; 
    display: block;
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.featured-properties-list li:hover a {
    background: #fff;
    color: #000;
}


@media (max-width: 768px) {
    .featured-properties {
        padding: 60px 20px;
    }
}


.explore-by-region {
    padding: 100px 40px;
    background: radial-gradient(circle at left, rgba(161, 140, 209, 0.03), transparent);
}

.explore-container {
    max-width: 1200px;
    margin: 0 auto;
}

.region-header {
    text-align: center;
    margin-bottom: 60px;
}

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


.map-visual {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


.nz-map-svg {
    width: 300px;
    height: 450px;
    background: url('https://upload.wikimedia.org/wikipedia/commons/d/d3/New_Zealand_map_blank.svg') no-repeat center;
    background-size: contain;
    position: relative;
    filter: invert(1) opacity(0.2); 
}


.map-point {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--accent-purple);
    transition: all 0.3s ease;
}

.map-point.active {
    background: var(--accent-purple);
    width: 20px;
    height: 20px;
    box-shadow: 0 0 30px var(--accent-purple);
}


.region-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.region-links a {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.region-links a span {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.region-links a:hover {
    transform: translateX(20px);
    border-color: var(--accent-purple);
    background: rgba(161, 140, 209, 0.05);
}


@media (max-width: 900px) {
    .explore-wrapper { grid-template-columns: 1fr; }
    .map-visual { order: 2; height: 400px; }
}


.for-buyers-investors-expats {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.for-buyers-investors-expats h2 {
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.for-buyers-investors-expats > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}


.for-buyers-investors-expats-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}


.for-buyers-investors-expats-list > li {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    padding: 45px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.for-buyers-investors-expats-list > li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-purple);
}

.for-buyers-investors-expats-list h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.for-buyers-investors-expats-list > li > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 35px;
    min-height: 50px; 
}


.for-buyers-investors-expats-text {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 25px;
    border-top: 1px solid var(--border-glass);
    padding-top: 30px;
}

.for-buyers-investors-expats-item h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}


.for-buyers-investors-expats-item h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-purple);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-purple);
}

.for-buyers-investors-expats-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    padding-left: 20px;
}


@media (max-width: 1200px) {
    .for-buyers-investors-expats-list {
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 768px) {
    .for-buyers-investors-expats {
        padding: 60px 20px;
    }
    
    .for-buyers-investors-expats-list > li {
        padding: 30px;
    }
    
    .for-buyers-investors-expats h2 {
        font-size: 2rem;
    }
}


.market-insights-preview {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.market-insights-preview h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}

.market-insights-preview > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}


.market-insights-preview-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
}

.market-insights-preview-list li {
    background: transparent;
    transition: var(--transition-smooth);
    cursor: pointer;
}


.market-insights-preview-list img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 25px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.market-insights-preview-list li:hover img {
    transform: scale(1.05);
}

.market-insights-preview-list h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.market-insights-preview-list li:hover h3 {
    color: var(--accent-purple);
}

.market-insights-preview-list li > p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}


.market-insights-preview-list-text {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
}

.market-insights-preview-list-text span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}


.market-insights-preview-list-text span:first-child {
    color: var(--accent-pink);
    font-weight: 700;
}


.market-insights-preview-list-text span:not(:last-child)::after {
    content: "•";
    margin-left: 15px;
    color: var(--border-glass);
}


@media (max-width: 768px) {
    .market-insights-preview {
        padding: 60px 20px;
    }
    .market-insights-preview-list {
        grid-template-columns: 1fr;
    }
}


.cta {
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(161, 140, 209, 0.2) 0%, rgba(251, 194, 235, 0.1) 100%);
    border: 1px solid var(--border-glass);
    padding: 80px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}


.cta-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent-purple);
    filter: blur(120px);
    opacity: 0.2;
    z-index: -1;
}

.cta-text h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
    max-width: 700px;
}

.cta-text p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
}


.cta-wrapper a {
    background: #fff;
    color: #000;
    padding: 20px 45px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.1rem;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.cta-wrapper a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
    background: var(--accent-pink);
    color: #000;
}


@media (max-width: 1100px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
    }
    
    .cta-text h2, .cta-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .cta {
        padding: 40px 20px;
    }
    
    .cta-wrapper {
        padding: 50px 25px;
        border-radius: 30px;
    }
    
    .cta-wrapper a {
        width: 100%;
        text-align: center;
    }
}


footer {
    background: #050507;
    padding: 100px 40px 40px;
    border-top: 1px solid var(--border-glass);
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
}


.footer-first .footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    display: block;
    margin-bottom: 25px;
}

.footer-first .footer-logo span {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-first p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
}


footer h3 {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}


.footer-second-list, .footer-third-list, .footer-fourth-contact {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 15px;
}

footer ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

footer ul li a:hover {
    color: var(--accent-purple);
    padding-left: 8px; 
}


.footer-fourth-contact li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
    position: relative;
    padding-left: 30px;
}


.footer-fourth-contact li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--accent-purple);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    opacity: 0.5;
}

.footer-fourth-email::before { background: var(--accent-purple); border-radius: 4px; } 


.footer-copyright {
    max-width: 1400px;
    margin: 80px auto 0;
    padding-top: 30px;
    border-top: 1px solid var(--border-glass);
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}


@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    footer {
        padding: 60px 20px 30px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-first p {
        margin: 0 auto;
    }

    .footer-fourth-contact li {
        padding-left: 0;
    }

    .footer-fourth-contact li::before {
        display: none;
    }
    
    footer ul li a:hover {
        padding-left: 0;
    }
}


.our-mission {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.our-mission h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.our-mission > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
}


.our-mission-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

.our-mission-list li {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


.our-mission-list li:hover {
    transform: scale(1.03);
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.05);
}


.our-mission-list img {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    object-fit: contain;
}

.our-mission-list h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.our-mission-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


.our-mission-list li:not(:has(img)) {
    justify-content: center;
    background: linear-gradient(135deg, rgba(161, 140, 209, 0.1) 0%, rgba(251, 194, 235, 0.05) 100%);
    border: 1px dashed var(--accent-purple);
}

.our-mission-list li:not(:has(img)) h3 {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.8rem;
}


@media (max-width: 768px) {
    .our-mission {
        padding: 60px 20px;
    }
}


.what-we-do {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.what-we-do h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.what-we-do > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}


.what-we-do-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
}

.what-we-do-list li {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 50px 40px;
    border-radius: 40px;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.what-we-do-list li:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-purple);
    transform: translateY(-5px);
}


.what-we-do-list h3 {
    font-size: 0.9rem;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}


.what-we-do-list h4 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}


.what-we-do-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}


.what-we-do-list p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 1px;
    background: var(--accent-pink);
    transition: var(--transition-smooth);
}

.what-we-do-list li:hover p::before {
    width: 12px;
    background: var(--accent-purple);
}


@media (max-width: 1100px) {
    .what-we-do-list {
        grid-template-columns: 1fr;
    }
    
    .what-we-do-list li {
        padding: 40px;
    }
}


.relocation-support {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.relocation-support h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.relocation-support > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 1.1rem;
}


.relocation-support-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

.relocation-support-list li {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 35px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.relocation-support-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-pink);
    transform: translateY(-5px);
}


.relocation-support-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 25px;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    box-shadow: inset 0 0 20px rgba(251, 194, 235, 0.1);
}

.relocation-support-list h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 20px;
}


.relocation-support-list p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.relocation-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-pink);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--accent-pink);
}


.relocation-support-list li:hover .relocation-dot {
    background: #fff;
    box-shadow: 0 0 12px #fff;
    transform: scale(1.2);
    transition: 0.3s;
}


@media (max-width: 900px) {
    .relocation-support-list {
        grid-template-columns: 1fr;
    }
    
    .relocation-support {
        padding: 60px 20px;
    }
}


.our-values {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.our-values h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.our-values > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 70px;
    font-size: 1.1rem;
}


.our-values-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
}

.our-values-list li {
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, transparent 100%);
    border-top: 1px solid var(--border-glass);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    position: relative;
}

.our-values-list li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-top-color: var(--accent-purple);
}


.our-values-list span {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--accent-purple);
    margin-bottom: 25px;
    letter-spacing: 2px;
    font-family: monospace; 
}

.our-values-list h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.our-values-list p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}


.our-values-list li::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-primary);
    transition: width 0.4s ease;
}

.our-values-list li:hover::after {
    width: 100%;
}


@media (max-width: 768px) {
    .our-values {
        padding: 60px 20px;
    }
    .our-values-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


.our-values-text {
    padding: 120px 40px;
    max-width: 1000px; 
    margin: 0 auto;
    text-align: center;
    position: relative;
}


.our-values-text::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 150px;
    background: var(--accent-purple);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

.our-values-text h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.our-values-text p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 400;
}


@media (max-width: 768px) {
    .our-values-text {
        padding: 80px 20px;
    }
    
    .our-values-text h2 {
        margin-bottom: 20px;
    }
}


.who-we-serve {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.who-we-serve h2 {
    font-size: 2.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.who-we-serve > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
}


ul.who-we-serve {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

ul.who-we-serve li {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 45px;
    border-radius: 35px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

ul.who-we-serve li:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-purple);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
                inset 0 0 20px rgba(161, 140, 209, 0.1);
}


.who-we-serve-emoji {
    font-size: 2rem;
    margin-bottom: 25px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-glass);
}

ul.who-we-serve h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
}

ul.who-we-serve h4 {
    font-size: 0.9rem;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    font-weight: 700;
}

ul.who-we-serve p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .who-we-serve {
        padding: 60px 20px;
    }
    
    ul.who-we-serve li {
        padding: 35px;
    }
}


.catalog-main-container {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}


.catalog-sidebar {
    position: sticky;
    top: 100px; 
}

.filter-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    padding: 30px;
    border-radius: 30px;
    backdrop-filter: blur(20px);
}

.filter-box h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-group select {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    color: #fff;
    outline: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-group select:focus {
    border-color: var(--accent-purple);
}

.reset-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid var(--accent-pink);
    color: var(--accent-pink);
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.reset-btn:hover {
    background: var(--accent-pink);
    color: #000;
}


.catalog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}

.property-card {
    transition: var(--transition-smooth), transform 0.4s ease;
}


.property-card.hidden {
    display: none;
}


@media (max-width: 1024px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .catalog-sidebar {
        position: relative;
        top: 0;
    }
}


.contact {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 50px;
}


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

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

.contact-form input, 
.contact-form select, 
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-purple);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(161, 140, 209, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.submit-btn {
    background: var(--grad-primary);
    color: #000;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(161, 140, 209, 0.3);
}


.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: #111;
    border: 1px solid var(--accent-purple);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-popup.show {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .success-popup.show {
        width: 100%;
    }
}

.popup-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
}

.popup-overlay.show {
    visibility: visible;
    opacity: 1;
}


@media (max-width: 900px) {
    .contact-wrapper { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
}


.map {
    padding: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden; 
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.map-wrapper iframe {
    display: block;
}

.map-wrapper::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    box-shadow: inset 0 0 40px rgba(161, 140, 209, 0.1);
    border-radius: 40px;
}


@media (max-width: 768px) {
    .map {
        padding: 40px 20px;
    }
    .map-wrapper iframe {
        height: 350px;
    }
}


.terms-of-use {
    padding: 120px 40px;
    max-width: 900px; 
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.8;
}

.terms-of-use h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.terms-of-use > p:first-of-type {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 60px;
}

.terms-of-use h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    gap: 15px;
}


.terms-of-use h3::before {
    content: "§";
    color: var(--accent-purple);
    font-size: 1.2rem;
    font-weight: 400;
}

.terms-of-use p {
    margin-bottom: 20px;
}


.terms-of-use p:last-of-type {
    margin-top: 60px;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px dashed var(--border-glass);
    text-align: center;
    color: #fff;
}

.terms-of-use a {
    color: var(--accent-pink);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.terms-of-use a:hover {
    color: var(--accent-purple);
    text-shadow: 0 0 10px rgba(161, 140, 209, 0.5);
}


@media (max-width: 768px) {
    .terms-of-use {
        padding: 80px 20px;
    }
    .terms-of-use h3 {
        font-size: 1.2rem;
    }
}


.featured-detail {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.featured-detail h2 {
    font-size: 2.8rem;
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.featured-detail > p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 80px;
    font-size: 1.1rem;
}

.featured-detail-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 120px; 
}

.featured-detail-list li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


.featured-detail-list img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 40px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}


.featured-detail-text h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.featured-detail-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.featured-detail-text strong {
    color: var(--accent-pink);
    font-weight: 600;
}


.featured-detail-text a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: transparent;
    border: 1px solid var(--accent-purple);
    color: #fff;
    border-radius: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.featured-detail-text a:hover {
    background: var(--grad-primary);
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(161, 140, 209, 0.3);
}


.featured-detail-list li:nth-child(even) .featured-detail-text {
    grid-column: 1;
    grid-row: 1;
}

.featured-detail-list li:nth-child(even) img {
    grid-column: 2;
    grid-row: 1;
}


#detailseventh {
    text-align: center;
    margin: 0 auto;
}

#detailseventh img {
    margin-bottom: 40px;
    height: 600px;
}


@media (max-width: 1100px) {
    .featured-detail-list li {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .featured-detail-list li:nth-child(even) .featured-detail-text {
        grid-column: auto;
        grid-row: auto;
    }

    .featured-detail-list img {
        height: 400px;
    }
}


@media (max-width: 1024px) {
    
    .nav {
        position: fixed;
        top: -800%; 
        left: 0;
        width: 100%;
        height: auto; 
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        padding: 100px 40px 60px 40px; 
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 999; 
        border-bottom: 1px solid var(--border-glass);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    
    .nav.active {
        transform: translateY(135%); 
    }

    
    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .nav-list li a {
        font-size: 1.4rem;
        display: block;
        text-align: center;
    }

    
    .burger {
        display: flex;
        z-index: 1001; 
    }

}


.catalog-content {
    flex: 1;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
}

.catalog-header h2 {
    font-size: 2.2rem;
    color: #fff;
}

#counter {
    color: var(--accent-pink);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.catalog-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
}


.property-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 25px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}


.property-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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


.card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-card h3 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 12px;
}

.catalog-paragraph {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}


.catalog-list-text {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    margin-bottom: 20px;
}

.catalog-list-text p {
    font-size: 0.85rem;
    color: #fff;
}

.catalog-list-text strong {
    color: var(--accent-purple);
    margin-right: 5px;
}


.catalog-btn-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-pink);
}

.enquire-link {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: #fff;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.enquire-link:hover {
    background: var(--grad-primary);
    color: #000;
    border-color: transparent;
}


@media (max-width: 768px) {
    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .catalog-list {
        grid-template-columns: 1fr;
    }
}

.error-page {
            height: 100vh;
            display: flex;
            flex-direction: column;
            background: var(--bg-dark);
            overflow: hidden;
        }

        .not-found-wrapper {
            flex: 1;
            display: flex;
            align-items: center;
            height: 100vh;
            justify-content: center;
            text-align: center;
            padding: 20px;
            position: relative;
        }

        .not-found-content {
            z-index: 10;
            max-width: 600px;
        }

        .not-found-content h1 {
            font-size: clamp(8rem, 15vw, 12rem);
            margin: 0;
            line-height: 1;
            background: var(--grad-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        .not-found-content h2 {
            font-size: 2rem;
            color: #fff;
            margin-bottom: 20px;
        }

        .not-found-content p {
            color: var(--text-muted);
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .not-found-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .not-found-actions .enquire-link {
            padding: 12px 25px;
            border: 1px solid var(--border-glass);
            border-radius: 14px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        
        .error-bg-blobs {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .blob {
            position: absolute;
            width: 400px;
            height: 400px;
            background: var(--accent-purple);
            filter: blur(100px);
            opacity: 0.15;
            border-radius: 50%;
            animation: move 20s infinite alternate;
        }

        .blob:nth-child(2) {
            background: var(--accent-pink);
            right: 10%;
            bottom: 10%;
            animation-duration: 15s;
        }

        @keyframes move {
            from { transform: translate(-10%, -10%); }
            to { transform: translate(10%, 10%); }
        }

        @media (max-width: 600px) {
            .not-found-actions {
                flex-direction: column;
            }
        }

        
.cookie-popup {
    position: fixed;
    bottom: -100%; 
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 800px;
    background: rgba(15, 15, 20, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 25px 35px;
    z-index: 9999;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.cookie-popup.show {
    bottom: 30px; 
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.cookie-icon {
    font-size: 2.5rem;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-text a {
    color: var(--accent-pink);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}


.cookie-btn-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.cookie-btn-link:hover {
    color: #fff;
}


.cookie-popup .header-booking-btn {
    padding: 12px 25px;
    font-size: 0.85rem;
    cursor: pointer;
    border: none;
}


@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-btns {
        width: 100%;
        justify-content: center;
        flex-direction: column-reverse; 
        gap: 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 10px;
    }

    .blob {
        display: none;
    }
}

.featured-detail-list li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.featured-detail-list li:nth-child(odd) img {
    grid-column: 1;
}
.featured-detail-list li:nth-child(odd) .featured-detail-text,
.featured-detail-list li:nth-child(odd) h3 {
    grid-column: 2;
}

.featured-detail-list li:nth-child(even) .featured-detail-text,
.featured-detail-list li:nth-child(even) h3 {
    grid-column: 1;
    grid-row: 1;
}
.featured-detail-list li:nth-child(even) img {
    grid-column: 2;
    grid-row: 1;
}

.featured-detail-list li:nth-child(odd) > *:not(img) {
    grid-column: 2;
}

#detailseventh {
    display: grid;
    text-align: left;
    max-width: 100%;
}

#detailseventh img {
    margin-bottom: 0;
    height: 500px;   
}

@media (max-width: 1100px) {
    .featured-detail-list li {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .featured-detail-list li > * {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .featured-detail-list img {
        height: 350px;
        order: -1;
    }
}

.sidebar-info p {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .what-we-do {
        padding: 50px 15px;
    }
    .what-we-do-list li {
        padding: 20px;
    }

    .header-booking-btn {
        font-size: 0.6rem;
        padding: 12px;
    }

    .header-logo span {
        font-size: 18px;
    }
}