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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Greek Flag Colors */
:root {
    --greek-blue: #0D47A1;
    --greek-white: #FFFFFF;
    --light-blue: #E3F2FD;
    --dark-blue: #0A3D91;
    --accent-blue: #1976D2;
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--greek-blue), var(--accent-blue));
    color: var(--greek-white);
    text-align: center;
    padding: 60px 0;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Golden Visa Section */
.golden-visa-section {
    background: var(--greek-white);
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--greek-blue);
    margin-bottom: 20px;
    text-align: center;
}

.marketing-subtitle {
    text-align: center;
    margin-bottom: 30px;
}

.marketing-subtitle h3 {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 15px;
    font-weight: bold;
}

.location-highlight {
    font-size: 1.3rem;
    color: var(--greek-blue);
    background: var(--light-blue);
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-block;
    border: 2px solid var(--accent-blue);
    font-weight: bold;
    margin: 0;
}

.urgency-text {
    font-size: 1.2rem;
    color: #d32f2f;
    font-weight: bold;
    text-align: center;
    background: #ffebee;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #d32f2f;
    margin-bottom: 30px;
}

/* Header Map Container */
.header-map-container {
    background: var(--greek-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(13, 71, 161, 0.1);
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.header-map-container iframe {
    border-radius: 10px;
    margin-bottom: 15px;
    display: block;
    width: 100%;
    min-height: 350px;
    border: 0;
    max-width: 100%;
}

.golden-visa-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Athens Gallery */
.athens-gallery {
    position: relative;
    height: 600px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.2);
    margin-bottom: 30px;
}

/* Map Container */
.map-container {
    background: var(--greek-white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(13, 71, 161, 0.1);
}

/* Golden Visa Info Section */
.golden-visa-info-section {
    margin-top: 60px;
    padding: 40px 0;
}

.golden-visa-info {
    max-width: 800px;
    margin: 0 auto;
}

.map-container h4 {
    color: var(--greek-blue);
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.3rem;
}

.map-container iframe {
    border-radius: 10px;
    margin-bottom: 15px;
}

.map-link {
    display: block;
    text-align: center;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: bold;
    padding: 10px;
    background: var(--light-blue);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.map-link:hover {
    background: var(--accent-blue);
    color: var(--greek-white);
}

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

.athens-image.active {
    opacity: 1;
}

.athens-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--greek-white);
    padding: 30px 20px 20px;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Golden Visa Info */
.golden-visa-info h3 {
    font-size: 2rem;
    color: var(--greek-blue);
    margin-bottom: 20px;
}

.golden-visa-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.visa-benefits {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit {
    background: var(--light-blue);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
}

.benefit h4 {
    color: var(--greek-blue);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.coming-soon {
    background: linear-gradient(135deg, var(--greek-blue), var(--accent-blue));
    color: var(--greek-white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.coming-soon h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--greek-white);
}

.coming-soon p {
    color: var(--greek-white);
    font-weight: 500;
}

/* Dimokratias Project Section */
.dimokratias-project-section {
    background: var(--greek-white);
    padding: 80px 0;
}

.project-hero {
    text-align: center;
    margin-bottom: 60px;
}

.project-hero h2 {
    font-size: 2.5rem;
    color: var(--greek-blue);
    margin-bottom: 15px;
}

.project-subtitle {
    font-size: 1.3rem;
    color: var(--accent-blue);
    font-weight: 500;
}

.project-overview-card {
    background: var(--light-blue);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto 40px;
    max-width: 1200px;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.overview-image {
    width: 100%;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-height: 600px;
    object-fit: contain;
}

.overview-text h3 {
    font-size: 2rem;
    color: var(--greek-blue);
    margin-bottom: 20px;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.location-distances-section {
    background: var(--greek-white);
    padding: 25px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid var(--accent-blue);
}

.location-distances-section h4 {
    font-size: 1.3rem;
    color: var(--greek-blue);
    margin-bottom: 15px;
}

.distance-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.distance-item-text {
    font-size: 1.1rem;
    color: var(--greek-blue);
    padding: 10px;
    background: var(--light-blue);
    border-radius: 8px;
}

.project-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.feature-item {
    background: var(--greek-white);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
    font-size: 1rem;
    color: var(--greek-blue);
}

.location-map-card {
    background: var(--light-blue);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
}

.location-map-card h3 {
    font-size: 2rem;
    color: var(--greek-blue);
    text-align: center;
    margin-bottom: 30px;
}

.map-image-container {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-image-container img {
    width: 100%;
    display: block;
}

.location-distances {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.distance-item {
    background: var(--greek-white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--accent-blue);
    font-size: 1.1rem;
}

.distance-item strong {
    color: var(--greek-blue);
    display: block;
    margin-bottom: 5px;
}

.model-apartments-header {
    text-align: center;
    margin-bottom: 50px;
}

.model-apartments-header h2 {
    font-size: 2.5rem;
    color: var(--greek-blue);
    margin-bottom: 15px;
}

.pricing-note {
    font-size: 1.2rem;
    color: var(--accent-blue);
    font-style: italic;
    background: var(--light-blue);
    padding: 15px 30px;
    border-radius: 25px;
    display: inline-block;
    border: 2px solid var(--accent-blue);
}

.price-range-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.price-range {
    font-size: 1.8rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    color: var(--greek-white);
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    text-align: center;
}

/* Apartments Section */
.apartments-section {
    background: var(--light-blue);
    padding: 80px 0;
}

.apartments-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--greek-blue);
    margin-bottom: 60px;
}

.apartment-card {
    background: var(--greek-white);
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 71, 161, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.apartment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(13, 71, 161, 0.2);
}

.apartment-header {
    background: linear-gradient(135deg, var(--greek-blue), var(--accent-blue));
    color: var(--greek-white);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.apartment-header h3 {
    font-size: 1.8rem;
    margin: 0;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
}

.apartment-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
}

/* Gallery Styles */
.apartment-gallery {
    position: relative;
    width: 100%;
}

.gallery-container {
    position: relative;
    height: 500px;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.gallery-slides {
    position: relative;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: var(--greek-white);
}

.gallery-prev,
.gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 71, 161, 0.8);
    color: var(--greek-white);
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s ease;
    z-index: 10;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--greek-blue);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

/* Apartment Details */
.apartment-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    background: var(--light-blue);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-blue);
    font-size: 1rem;
}

.detail-item strong {
    color: var(--greek-blue);
}

/* Contact Section */
.contact-section {
    background: var(--greek-white);
    padding: 60px 0;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: var(--greek-blue);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-item {
    background: var(--light-blue);
    padding: 20px 30px;
    border-radius: 15px;
    border: 2px solid var(--accent-blue);
    font-size: 1.1rem;
}

.contact-item strong {
    color: var(--greek-blue);
    display: block;
    margin-bottom: 5px;
}

/* Footer */
.footer {
    background: var(--greek-blue);
    color: var(--greek-white);
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .golden-visa-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .header-map-container {
        max-width: 100%;
        padding: 20px;
    }
    
    .header-map-container iframe {
        height: 250px;
        min-height: 250px;
        display: block;
        width: 100%;
    }
    
    .apartment-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .gallery-container {
        height: 350px;
    }
    
    .apartment-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .athens-gallery {
        height: 400px;
    }
    
    .overview-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .overview-image {
        width: 100%;
        margin: 0 auto;
    }
    
    .overview-image img {
        max-height: 300px;
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    
    .project-features {
        grid-template-columns: 1fr;
    }
    
    .distance-list {
        grid-template-columns: 1fr;
    }
    
    .location-distances {
        grid-template-columns: 1fr;
    }
    
    .project-overview-card {
        padding: 30px 20px;
    }
    
    .location-map-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 40px 0;
    }
    
    .header h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .apartments-section h2 {
        font-size: 2rem;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .gallery-prev,
    .gallery-next {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
}
