
.hero-indicators {
    display: none;
}




/* FIX WHITE SPACE BETWEEN HEADER AND HERO */

/* Remove margin from hero section */
.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Ensure header is properly positioned */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    margin-bottom: 0 !important;
}

.header-top {
    margin-bottom: 0 !important;
}

.header-main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Adjust body to remove any default margins */
body {
    margin: 0;
    padding: 0;
}

/* Make sure hero starts right after header */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

/* For page hero (apartment pages) - FIX WHITE SPACE */
.page-hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Adjust page body to account for fixed header */
.page {
    padding-top: 100px; /* Height of header-top + header-main */
}

/* Ensure no gaps in header structure */
.header-content {
    margin-bottom: 0 !important;
}

/* Fix for apartment stats section */
.apartment-stats {
    margin-top: 0 !important;
}

/* Additional fix for any page content */
.page-hero-content {
    padding-top: 80px;
    padding-bottom: 40px;
}




/* MOBILE MENU FIX - Add this at the END of your style.css */

/* Fix round menu for mobile devices */
@media (max-width: 968px) {
    /* Ensure mobile menu button is visible */
    .mobile-menu-btn {
        display: flex !important;
        z-index: 10001 !important;
        position: relative;
    }
    
    /* Hide desktop navigation */
    .nav {
        display: none !important;
    }
    
    /* Round menu mobile adjustments */
    .round-menu {
        position: fixed !important;
        width: 300vw !important;
        height: 300vh !important;
        top: -150vh !important;
        right: -150vh !important;
        z-index: 10002 !important;
    }
    
    .round-menu.active {
        top: -75vh !important;
        right: -75vh !important;
    }
    
    /* Fix menu content positioning */
    .round-menu-content {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) !important;
        width: 90vw;
        max-width: 400px;
        z-index: 10003;
    }
    
    /* Fix menu navigation */
    .round-menu-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .round-menu-nav li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.3s ease;
    }
    
    .round-menu.active .round-menu-nav li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .round-menu.active .round-menu-nav li:nth-child(1) { transition-delay: 0.1s; }
    .round-menu.active .round-menu-nav li:nth-child(2) { transition-delay: 0.2s; }
    .round-menu.active .round-menu-nav li:nth-child(3) { transition-delay: 0.3s; }
    .round-menu.active .round-menu-nav li:nth-child(4) { transition-delay: 0.4s; }
    .round-menu.active .round-menu-nav li:nth-child(5) { transition-delay: 0.5s; }
    .round-menu.active .round-menu-nav li:nth-child(6) { transition-delay: 0.6s; }
    
    /* Fix menu links */
    .round-menu-nav a {
        color: white !important;
        text-decoration: none;
        font-size: 1.5rem !important;
        font-weight: 600;
        display: block;
        padding: 12px 20px !important;
        text-align: center;
        transition: all 0.3s ease;
        border-radius: 10px;
    }
    
    .round-menu-nav a:hover,
    .round-menu-nav a:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }
    
    /* Fix close button */
    .round-menu-close {
        position: fixed !important;
        top: 30px !important;
        right: 30px !important;
        background: rgba(255, 255, 255, 0.2) !important;
        border: 2px solid white !important;
        color: white !important;
        font-size: 2rem !important;
        cursor: pointer;
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 10004 !important;
        transition: all 0.3s ease;
    }
    
    .round-menu-close:hover,
    .round-menu-close:active {
        background: white !important;
        color: #667eea !important;
        transform: rotate(90deg);
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .round-menu-nav a {
        font-size: 1.3rem !important;
        padding: 10px 15px !important;
    }
    
    .round-menu-content {
        width: 85vw;
    }
    
    .round-menu-close {
        top: 20px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.8rem !important;
    }
}













/* Hero Section Text Styling */
.hero-title {
    color: white; /* Ensure text is white */
    font-size: 4rem; /* Increased from 3rem to 4rem for prominence, matching .highlight */
    font-weight: 700; /* Bold, matching h1 */
    line-height: 1.2; /* Consistent with headings */
    display: block; /* Ensure proper spacing */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Improve readability */
    text-align: center; /* Center the text horizontally */
    width: 100%; /* Ensure it spans the container for centering */
}

/* Ensure buttons remain clickable */
.hero-content .btn {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    display: block; /* Ensure button is block-level for consistency */
    margin: 2rem auto 0; /* Center the button and add spacing */
    text-align: center; /* Ensure button text is centered */
}


/* Center the apartment-grid with two cards in apartment-types and add space */
.apartment-types .apartment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* Two columns for Dvosobni and Trosobni stanovi */
    gap: 30px; /* Maintain existing gap between cards */
    justify-content: center; /* Center the grid content horizontally */
    max-width: 800px; /* Limit grid width for balanced appearance */
    margin: 0 auto; /* Center the grid within the container */
    margin-bottom: 60px; /* Increased from 40px to add more space below cards */
}

/* Responsive design for mobile */
@media (max-width: 968px) {
    .apartment-types .apartment-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        max-width: 100%; /* Full width on mobile */
        justify-content: center; /* Ensure centering on mobile */
        margin-bottom: 40px; /* Slightly less space on mobile for compactness */
    }
}


/* Center the apartment-grid with two cards in apartment-types and add space */
.apartment-types .apartment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
}

/* Style for clickable apartment cards */
.apartment-card-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.apartment-card-link .apartment-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.apartment-card-link:hover .apartment-card {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
}

.apartment-card-link .apartment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.apartment-card-link:hover .apartment-card::before {
    transform: scaleX(1);
}

@media (max-width: 968px) {
    .apartment-types .apartment-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        justify-content: center;
        margin-bottom: 40px;
    }
}






















/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
    background: #fafbfc;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    margin-bottom: 0;
}

.header-contacts {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.header-contacts a {
    color: white;
    text-decoration: none;
}

.header-contacts a:hover {
    opacity: 0.8;
}

.header-main {
    padding: 15px 0;
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 1000;
    top: 40px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    display: none;
}

/* Pill/Capsule Navigation */
.nav ul {
    display: flex;
    list-style: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50px;
    padding: 8px 12px;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.nav li {
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    white-space: nowrap;
}

.nav a:hover,
.nav a.active {
    color: #667eea;
    background: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    min-width: 200px;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0 15px;
    margin: 5px 0;
}

.dropdown-menu a {
    color: #2c3e50 !important;
    background: transparent !important;
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    transform: translateX(5px);
}

/* Round Menu Styles */
.round-menu {
    position: fixed;
    top: -100vh;
    right: -100vh;
    width: 200vh;
    height: 200vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    z-index: 9999;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
}

.round-menu.active {
    top: -50vh;
    right: -50vh;
    opacity: 1;
    visibility: visible;
}

.round-menu-content {
    text-align: center;
    color: white;
    transform: translateY(20vh);
}

.round-menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.round-menu-nav li {
    margin: 20px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s ease;
}

.round-menu.active .round-menu-nav li {
    opacity: 1;
    transform: translateY(0);
}

.round-menu.active .round-menu-nav li:nth-child(1) { transition-delay: 0.1s; }
.round-menu.active .round-menu-nav li:nth-child(2) { transition-delay: 0.2s; }
.round-menu.active .round-menu-nav li:nth-child(3) { transition-delay: 0.3s; }
.round-menu.active .round-menu-nav li:nth-child(4) { transition-delay: 0.4s; }
.round-menu.active .round-menu-nav li:nth-child(5) { transition-delay: 0.5s; }
.round-menu.active .round-menu-nav li:nth-child(6) { transition-delay: 0.6s; }

.round-menu-nav a {
    color: white;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    display: block;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.round-menu-nav a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

.round-menu-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.round-menu-close {
    position: absolute;
    top: 50px;
    right: 50px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.round-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

/* Modern Pill Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    cursor: pointer;
    padding: 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 1001;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.mobile-menu-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 100px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    color: white;
}

.hero-content h1 {
    margin-bottom: 2rem;
    max-width: 600px;
}

.highlight {
    color: #ffd700;
    font-size: 4rem;
    display: block;
    font-weight: 800;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.indicator.active {
    background: white;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
}

.experience-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: center;
}

.experience-number {
    text-align: center;
}

.number {
    font-size: 8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: block;
}

.experience-number p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    margin-top: 10px;
}

.experience-text h3 {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experience-text h2 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-text p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 40px;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e2a49;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
}

/* Ada Vista Section */
.ada-vista {
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
    position: relative;
    overflow: hidden;
}

.ada-vista::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(102, 126, 234, 0.05) 50%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.ada-vista-bg {
    background-image: url('https://ext.same-assets.com/2343671661/2334981853.svg');
    background-repeat: repeat;
    background-size: 50px 50px;
    padding: 80px 0;
}

.ada-vista-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.ada-vista-info h2 {
    font-size: 4rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.ada-vista-info h3 {
    color: #1e2a49;
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.ada-vista-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ada-vista-details h3 {
    color: #1e2a49;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.ada-vista-details p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.ada-vista-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ada-stat {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ada-number {
    font-size: 3rem;
    font-weight: 300;
    color: #1e2a49;
    min-width: 80px;
}

.ada-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e2a49;
    margin-bottom: 5px;
    display: block;
}

.ada-stat p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

/* Apartment Types */
.apartment-types {
    background: #efeeec;
    padding: 60px 0;
}

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

.apartment-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.apartment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.apartment-card:hover::before {
    transform: scaleX(1);
}

.apartment-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
}

.apartment-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.apartment-info {
    padding: 25px;
}

.apartment-number {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.apartment-info h4 {
    color: #1e2a49;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.apartment-info p {
    color: #666;
    margin: 0;
}

.apartment-cta {
    text-align: center;
}

/* Active Projects */
.active-projects {
    padding: 80px 0;
    background: white;
}

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

.section-subtitle {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    color: #1e2a49;
    margin-bottom: 20px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: #1e2a49;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 300px;
    transition: transform 0.3s ease;
}

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

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

.project-info h3 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
}

/* Completed Projects */
.completed-projects {
    padding: 80px 0;
}

.completed-bg {
    background: #efeeec;
    background-image: url('https://ext.same-assets.com/2343671661/2334981853.svg');
    background-repeat: repeat;
    background-size: 50px 50px;
}

.completed-slider {
    position: relative;
    margin-bottom: 40px;
}

.completed-slide {
    display: none;
    text-align: center;
}

.completed-slide.active {
    display: block;
}

.completed-slide img {
    width: 100%;
    max-width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide-content {
    margin-top: 20px;
}

.slide-content h3 {
    color: #1e2a49;
    font-size: 2rem;
    margin-bottom: 5px;
}

.project-category {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    pointer-events: all;
}

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

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #667eea;
}

.completed-projects .btn {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

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

.rating {
    margin-top: 30px;
}

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin: 10px 0;
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 40px;
}

.testimonial.active {
    display: block;
}

.testimonial blockquote {
    border: none;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial cite {
    display: block;
    color: #1e2a49;
    font-style: normal;
}

.testimonial cite strong {
    font-size: 1.1rem;
    margin-bottom: 5px;
    display: block;
}

.testimonial cite span {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 20px auto;
}

/* News */
.news {
    padding: 80px 0;
    background: #efeeec;
}

.news-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.featured-news {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-news img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.news-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
}

.news-date {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.8;
}

.news-info h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.news-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-categories span {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.news-item {
    display: flex;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-item-content .news-date {
    color: #666;
}

.news-item h4 {
    color: #1e2a49;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* CTA Section */
.cta-section {
    position: relative;
}

.cta-bg {
    background: linear-gradient(rgba(30, 42, 73, 0.9), rgba(30, 42, 73, 0.9)), url('https://ext.same-assets.com/2343671661/4022670346.jpeg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.cta-content p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-btn {
    background: white;
    color: #1e2a49;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #b8423a;
    color: white;
    padding: 15px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    text-align: center;
    line-height: 1.2;
}

@media(max-width: 740px) {
    .cta-badge { 
        top: 8px;
        right: 8px;
        width: 75px;
        height: 75px;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
}

.footer-description p {
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: white;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-contact h4,
.footer-nav h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.8rem;
    margin: 0;
}

/* Page Styles */
.page {
    padding-top: 120px;
    min-height: 100vh;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://ext.same-assets.com/2343671661/2334981853.svg');
    background-repeat: repeat;
    background-size: 50px 50px;
    opacity: 0.1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Apartments Grid */
.apartments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.apartment-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.apartment-floorplan {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.apartment-floorplan img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.apartment-size {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.apartment-details {
    padding: 25px;
}

.apartment-name {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.apartment-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.apartment-spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.spec-label {
    color: #666;
    font-size: 0.9rem;
}

.spec-value {
    color: #1e2a49;
    font-weight: 600;
}

.availability-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.availability-badge.available {
    background: #e8f5e8;
    color: #2d7d32;
}

.availability-badge.unavailable {
    background: #ffebee;
    color: #c62828;
}

/* Single Apartment Page */
.apartment-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px 0;
    margin-top: -1px;
    position: relative;
    overflow: hidden;
}

.apartment-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.apartment-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.content-section {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.content-section h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    position: relative;
}

.content-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.content-section-body {
    padding: 20px;
}

.floorplan-3d {
    width: 100%;
    border-radius: 10px;
}

.room-table {
    width: 100%;
    border-collapse: collapse;
}

.room-table th,
.room-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.room-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1e2a49;
}

.room-table .total-row {
    background: #1e2a49;
    color: white;
    font-weight: 600;
}

.position-diagram img {
    width: 100%;
    border-radius: 10px;
}

.apartment-gallery {
    margin-top: 40px;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.image-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
}

.image-modal.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
}

.clickable-image {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.clickable-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.floating-contact:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
    color: white;
}

.floating-contact::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(102, 126, 234, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Responsive Design */
@media (max-width: 968px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .header-content {
        justify-content: flex-end;
    }

    .slider-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .highlight {
        font-size: 3rem;
    }

    .experience-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .ada-vista-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .news-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cta-contacts {
        flex-direction: column;
        align-items: center;
    }

    /* New page responsive styles */
    .apartments-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .round-menu-nav a {
        font-size: 1.5rem;
    }

    .round-menu-close {
        top: 30px;
        right: 30px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 6px 10px;
        gap: 4px;
    }

    .nav a {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .highlight {
        font-size: 2.5rem;
    }

    .header-contacts {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .ada-vista-stats {
        gap: 20px;
    }

    .ada-stat {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Additional mobile styles for new pages */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .round-menu-nav a {
        font-size: 1.2rem;
    }

    .apartment-specs {
        grid-template-columns: 1fr;
    }
}
