* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 3px 10px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
    --heading-font: 'Playfair Display', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-gray);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h2 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.logo img {
    height: 50px;
    width: auto;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: var(--secondary-color);
    padding: 0.5rem 0.8rem;
    margin: 0 0.2rem;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/hero-bg.jpg') center/cover;
}

.hero-image {
    margin-bottom: 3rem;
    animation: float 6s ease-in-out infinite, initialZoom 2s ease-out forwards;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 3rem;
}

@keyframes initialZoom {
    0% {
        transform: scale(3);
        opacity: 0;
    }
    50% {
        transform: scale(2);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.circular-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 255, 255, 0.3),
                0 0 40px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.circular-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(255, 255, 255, 0.4),
                0 0 50px rgba(255, 255, 255, 0.3);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    z-index: 1;
    margin-top: -2rem;
}

.hero h1 {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #ffffff;
    animation: slideIn 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    color: #ffffff;
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--white);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--white);
}

.cta-button.secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.scroll-down {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.scroll-down:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateX(-50%) scale(1.1);
}

.scroll-down a {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

/* About Section */
.about {
    padding: 5rem 5%;
    background: var(--light-gray);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    text-align: left;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.stat i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Apartments Section */
.apartments {
    padding: 5rem 5%;
}

.apartment-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.apartment-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.apartment-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.apartment-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.area {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.features-list i {
    color: var(--primary-color);
}

.card-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    transition: var(--transition);
}

.card-button:hover {
    background: var(--secondary-color);
}

/* Features Section */
.features {
    padding: 5rem 5%;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
}

/* Gallery Section */
.gallery {
    padding: 5rem 5%;
}

.gallery-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.slider-container {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    position: relative;
}

.slide.active {
    display: block;
}

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

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-button.prev {
    left: 20px;
}

.slider-button.next {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
}

.contact-container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    max-width: 600px;
}

.contact-info h3 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-item i {
    font-size: 24px;
    color: #4a90e2;
}

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

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
    transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group textarea {
    height: 150px;
    resize: none;
    padding-top: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
    outline: none;
}

.form-group input:focus + i,
.form-group textarea:focus + i {
    color: #4a90e2;
}

.submit-button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background: linear-gradient(45deg, #357abd, #2c6aa0);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.submit-button i {
    font-size: 20px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a1f2c 0%, #2c3e50 100%);
    color: var(--white);
    padding: 6rem 5% 1rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-info {
    padding-right: 3rem;
}

.footer-info h3 {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.footer-info h3:hover::after {
    width: 100px;
}

.footer-info h4 {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 1.8rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.footer-links h4,
.footer-contact h4,
.social-links h4 {
    font-family: var(--heading-font);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.8rem;
    position: relative;
    display: inline-block;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.footer-links h4::after,
.footer-contact h4::after,
.social-links h4::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #357abd);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-links h4:hover::after,
.footer-contact h4:hover::after,
.social-links h4:hover::after {
    width: 80px;
}

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

.footer-links ul li {
    margin-bottom: 1.2rem;
}

.footer-links ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.footer-links ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: #4a90e2;
}

.footer-links ul li a:hover {
    color: #4a90e2;
    transform: translateX(10px);
    text-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
}

.footer-links ul li a:hover::before {
    opacity: 1;
}

.footer-contact p {
    color: #e0e0e0;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-contact p:hover {
    color: #4a90e2;
    transform: translateX(5px);
    text-shadow: 0 0 8px rgba(74, 144, 226, 0.3);
}

.footer-contact i {
    color: #4a90e2;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-contact p:hover i {
    transform: scale(1.2);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #4a90e2, #357abd);
    opacity: 0;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.4);
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a i {
    position: relative;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-info {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-info h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-info h3:hover::after {
        width: 80px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 4rem 5% 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-links h4::after,
    .footer-contact h4::after,
    .social-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links h4:hover::after,
    .footer-contact h4:hover::after,
    .social-links h4:hover::after {
        width: 60px;
    }
    
    .footer-links ul li a {
        padding-left: 0;
    }
    
    .footer-links ul li a::before {
        display: none;
    }
    
    .footer-links ul li a:hover {
        transform: none;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-contact p:hover {
        transform: none;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-info h3 {
        font-size: 1.8rem;
    }
    
    .footer-info h4 {
        font-size: 0.95rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info,
    .contact-form {
        max-width: 100%;
    }
    
    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: fixed;
        right: 5%;
        top: 1.5rem;
        transform: translateY(-50%);
        z-index: 1000;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
    }

    .menu-toggle i {
        color: var(--secondary-color);
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

    .menu-toggle.active i {
        color: var(--primary-color);
    }

    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 5rem 1rem 2rem;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        flex-direction: column;
        align-items: flex-start;
        transition: right 0.3s ease;
        z-index: 999;
    }

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

    .nav-links li {
        margin: 0.5rem 0;
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

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

    .nav-links li a {
        display: block;
        padding: 0.6rem 0.8rem;
        margin: 0;
        font-size: 0.95rem;
        color: var(--secondary-color);
        border-bottom: 1px solid #eee;
        width: 100%;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
        background-color: rgba(52, 152, 219, 0.05);
    }

    .logo h2 {
        font-size: 1.3rem;
    }

    .hero {
        min-height: 100vh;
        padding: 5rem 1rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-image {
        max-width: 200px;
        margin: 0 auto 2rem;
    }

    .hero-content {
        padding: 0 1rem;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 1rem auto 0;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .slide img {
        height: 400px;
    }

    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .slide-caption {
        font-size: 1rem;
        padding: 1rem;
    }

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

    .footer-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .hero-image {
        max-width: 250px;
    }
    
    .circular-image {
        border-width: 3px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4),
                    0 0 15px rgba(255, 255, 255, 0.3),
                    0 0 30px rgba(255, 255, 255, 0.2);
    }

    .scroll-down {
        bottom: 1rem;
        width: 35px;
        height: 35px;
    }

    .scroll-down a {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }
    
    .submit-button {
        padding: 12px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        right: 4%;
        top: 1.2rem;
    }

    .nav-links {
        max-width: 250px;
        padding: 4rem 0.8rem 2rem;
    }

    .nav-links li a {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }

    .logo h2 {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 100vh;
        padding: 4rem 1rem 1rem;
    }

    .hero-image {
        max-width: 180px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        max-width: 250px;
    }

    .hero-image {
        max-width: 200px;
    }
    
    .circular-image {
        border-width: 2px;
    }

    .scroll-down {
        bottom: 0.5rem;
        width: 30px;
        height: 30px;
    }

    .scroll-down a {
        font-size: 1rem;
    }
}

.about-text h3,
.contact-info h3,
.footer-links h4,
.footer-contact h4,
.social-links h4 {
    font-family: var(--heading-font);
    font-weight: 600;
}

.apartment-card h3,
.feature h3 {
    font-family: var(--heading-font);
    font-weight: 500;
}

/* Etkinlikler Bölümü */
.events {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f6f8fd 0%, #e9f0f7 100%);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.event-card:hover .event-image img {
    transform: scale(1.1);
}

.event-content {
    padding: 1.5rem;
}

.event-content h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.event-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-date {
    display: flex;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.event-date i {
    margin-right: 0.5rem;
    color: #007bff;
}

.iskender {
    position: relative;
    display: inline-block;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.iskender::after {
    content: '|';
    position: absolute;
    right: -5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Mobil Menü Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Video Tour Section */
.video-tour {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

/* Responsive Video Styles */
@media screen and (max-width: 768px) {
    .video-container {
        padding: 0 15px;
    }
    
    .video-wrapper {
        border-radius: 5px;
    }
}

@media screen and (max-width: 480px) {
    .video-tour {
        padding: 40px 0;
    }
    
    .video-container {
        padding: 0 10px;
    }
}

/* Sosyal Medya Butonları */
.social-fixed-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-button,
.instagram-button {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.instagram-button {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp-button:hover,
.instagram-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-button i,
.instagram-button i {
    font-size: 35px;
}

@media (max-width: 768px) {
    .social-fixed-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .whatsapp-button,
    .instagram-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-button i,
    .instagram-button i {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .social-fixed-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }
    
    .whatsapp-button,
    .instagram-button {
        width: 45px;
        height: 45px;
    }
    
    .whatsapp-button i,
    .instagram-button i {
        font-size: 25px;
    }
} 