/* Global Styles */
:root {
    --primary: #FF9F1C;
    /* Solar Orange */
    --secondary: #2EC4B6;
    /* Ocean Teal */
    --accent: #FFBF00;
    /* Sun Yellow */
    --bg-light: #FDFFFC;
    --text-dark: #011627;
    --text-light: #ffffff;
    --max-width: 1200px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo span {
    color: var(--primary);
}

.sun-icon {
    color: var(--accent);
    font-size: 1.8rem;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.navbar {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navbar a {
    font-weight: 500;
    transition: color 0.3s;
}

.navbar a:hover {
    color: var(--primary);
}

.btn-contact {
    background-color: var(--primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px rgba(255, 159, 28, 0.3);
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 159, 28, 0.4);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('assets/images/flat-1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    padding-top: 80px;
    /* Header height */
}

.hero-content {
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, background 0.3s;
}

.btn-cta:hover {
    background-color: #1ebc57;
    transform: scale(1.05);
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Gallery - Swiper Override */
.gallery-slider {
    width: 100%;
    padding-bottom: 3rem;
}

.gallery-slider .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-slider .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
}

/* Reviews */
.reviews {
    background-color: #f7f9fc;
}

.reviews-slider {
    padding: 2rem 1rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

.stars {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.review-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.review-card span {
    font-size: 0.9rem;
    color: #888;
}

/* Location */
.location-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    /* For responsive */
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-width: 300px;
    /* Ensure it doesn't squish too much */
}

.address-box {
    text-align: left;
    font-size: 1.2rem;
    color: #444;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.address-box i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.social-links-location {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 350px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 1rem;
    border-radius: 50px;
    /* Rounded pill shape */
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.social-btn.whatsapp {
    background: #25D366;
    color: white;
}

.map-container {
    flex: 1;
    /* Takes equal space, so half screen roughly */
    height: 450px;
    /* Fixed height for map */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    min-width: 300px;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-logo {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.socials {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.socials a {
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s;
}

.socials a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
        text-align: center;
    }

    .navbar.active {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .location-content {
        flex-direction: column-reverse;
        /* Map on top or bottom? User said map right (desktop), usually map top or bottom on mobile. Let's keep order naturally or reverse. Actually column is better. */
        gap: 2rem;
    }

    .location-info {
        width: 100%;
        min-width: unset;
    }

    .map-container {
        width: 100%;
        height: 350px;
        min-width: unset;
    }

    .social-links-location {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .swiper-slide {
        width: 260px !important;
        /* Smaller text cards */
    }

    .gallery-slider .swiper-slide {
        width: 250px;
        height: 350px;
    }
}