/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Michelle Apartmani */
    --primary-color: #0372bc;
    --primary-light: #64ccf5;
    --primary-dark: #025a91;
    --accent-color: #f68b27;
    --accent-light: #ff9e4a;
    --accent-dark: #d67316;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-white: #FEFDFC;
    --bg-light: #f8f9fa;
    --bg-cream: #fef9f5;
    --border-color: rgba(0, 0, 0, 0.1);
    
    /* Spacing */
    --section-padding: 50px 0;
    --container-max-width: 1400px;
    --container-padding: 0 40px;
    
    /* Typography */
    --font-family-headings: 'Gilda Display', serif;
    --font-family-subheadings: 'Barlow Condensed', sans-serif;
    --font-family-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family-body);
    color: var(--text-dark);
    line-height: var(--line-height-base);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1, h2, h3 {
    font-family: var(--font-family-headings);
    font-weight: 400;
    letter-spacing: 0.02em;
}

h4, h5, h6 {
    font-family: var(--font-family-subheadings);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p, span, div {
    font-family: var(--font-family-body);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* ============================================
   SKIP LINK
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                -webkit-backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0;

}

.nav-wrapper {
    width: 100%;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    min-height: 100px;
}

.logo-wrapper {
    flex-shrink: 0;
}

.logo-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity var(--transition-base), transform var(--transition-base);
    display: block;
}

.navbar.scrolled .nav-social-icon {
    opacity: 0.8;
}

.nav-social-link:hover .nav-social-icon {
    opacity: 1;
    transform: scale(1.1);
}

.navbar.scrolled .nav-social-link:hover .nav-social-icon {
    opacity: 1;
}

.nav-link {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-base);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
}

/* ============================================
   GLOBAL BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: var(--font-family-subheadings);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: white;
    color: var(--primary-color);
    border: 2px solid rgba(3, 114, 188, 0.2);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(3, 114, 188, 0.08);
    border-color: rgba(3, 114, 188, 0.4);
    transform: translateY(-4px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 1);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    padding: 12px 0;
    margin-top: 8px;
    list-style: none;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

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

.dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-dark);
    transition: background var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 6px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
    transition: all var(--transition-base);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.95);
    transition: all var(--transition-base);
}

.navbar.scrolled .hamburger,
.navbar.scrolled .hamburger::before,
.navbar.scrolled .hamburger::after {
    background: var(--text-dark);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.4)), url('images/hero-bg.png') center/cover no-repeat;
    padding-top: 100px;
    overflow: hidden;
    background-attachment: fixed;
}

/* Hero Video Background 
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.6) 0%,
        rgba(26, 26, 26, 0.5) 50%,
        rgba(26, 26, 26, 0.6) 100%
    );
    z-index: 1;
}
*/

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(246, 139, 39, 0.08) 0%, transparent 70%);
    animation: pulse 20s infinite;
    z-index: 2;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-wrapper {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title-inner {
    display: inline-block;
}

.hero-title-box {
    position: relative;
}

.hero-title {
    font-family: var(--font-family-headings);
    font-size: clamp(36px, 6vw, 100px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.title-text {
    display: inline-block;
    white-space: nowrap;
    font-family: var(--font-family-headings);
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-color) 70%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out, gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.title-decoration,
.title-decoration-end {
    display: block;
    height: 3px;
    background: var(--accent-color);
    margin: 20px auto;
    width: 150px;
    animation: expandWidth 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

.hero-subtitle {
    display: block;
    font-size: clamp(18px, 3vw, 32px);
    font-weight: 300;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0px auto 0;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.5s both;
    text-align: center;
}

.hero-cta {
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.7s both;
}

/* Scroll Down Arrow */
.scroll-down-arrow {
    position: absolute;
    bottom: 60px;
    right: 60px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    cursor: pointer;
    z-index: 10;
    animation: bounceArrow 2s ease-in-out infinite;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(246, 139, 39, 0.4);
}

.scroll-down-arrow:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(246, 139, 39, 0.6);
}

.scroll-down-arrow svg {
    width: 26px;
    height: 26px;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(15px);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .scroll-down-arrow {
        bottom: 40px;
        right: 30px;
        width: 55px;
        height: 55px;
    }
    
    .scroll-down-arrow svg {
        width: 26px;
        height: 26px;
    }
}

.hero-cta-link {
    display: inline-block;
    position: relative;
}

.cta-link-inner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(246, 139, 39, 0.4);
}

.cta-link-inner:hover {
    background: var(--accent-dark);
    box-shadow: 0 8px 35px rgba(246, 139, 39, 0.6);
}

.cta-decoration {
    width: 20px;
    height: 2px;
    background: white;
    transition: width var(--transition-base);
}

.cta-link-inner:hover .cta-decoration {
    width: 30px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
}

.about-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-left {
    display: flex;
    flex-direction: column;
}

.about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-content: start;
}

.about-header {
    margin-bottom: 40px;
}

.about-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: var(--font-family-headings);
}

.about-decoration {
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0;
}

.about-text {
    margin-bottom: 10px;
}

.about-text-inner p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-text-inner strong {
    color: var(--text-dark);
    font-weight: 700;
}


.about-image {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    opacity: 0.3;
    z-index: 0;
}

.about-image::after {
    content: '🏖️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 64px;
    z-index: 1;
    opacity: 0.4;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

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

.about-image-large {
    grid-column: 1 / -1;
    height: 360px;
}

.reservation-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 40px 45px;
    color: white;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(3, 114, 188, 0.3);
    margin-top: 10px;
}

.reservation-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.reservation-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.reservation-info {
    flex: 1;
}

.reservation-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-family-subheadings);
}

.reservation-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    margin: 0 0 12px 0;
    color: white;
    font-family: var(--font-family-headings);
}

.reservation-text {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.reservation-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.reservation-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: var(--font-family-subheadings);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-btn-phone {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.reservation-btn-phone:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.reservation-btn-contact {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.reservation-btn-contact:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 20px;
}

.btn-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.btn-text {
    font-size: 14px;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-header {
        text-align: center;
    }
    
    .about-decoration {
        margin: 0 auto;
    }
    
    .reservation-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .reservation-info {
        text-align: center;
    }
    
    .reservation-actions {
        width: 100%;
    }
    
    .reservation-btn {
        justify-content: center;
    }
}

/* ============================================
   APARTMENTS SECTION
   ============================================ */
.apartments-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.apartments-section .section-header {
    margin-top: 0;
    padding-top: 0;
}

.apartments-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 0;
}

.section-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 12px;
    margin-top: 0;
}

.section-title {
    font-size: clamp(38px, 4.8vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 12px;
    margin-top: 0;
}

.section-decoration {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto 0;
}

.apartments-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 30px;
    margin-top: 60px;
    grid-auto-rows: 450px;
}

/* Layout: 3 nahoře (stejné), 2 dole (30% + 70%) */
/* První 3 karty - každá zabírá 1/3 (3.33 sloupců z 10) */
.apartment-card:nth-child(1),
.apartment-card:nth-child(2) {
    grid-column: span 3;
}

.apartment-card:nth-child(3) {
    grid-column: span 4;
}

/* 4. karta (dole vlevo) - 40% */
.apartment-card-small {
    grid-column: span 4;
}

/* 5. karta (dole vpravo) - 60% */
.apartment-card-large {
    grid-column: span 6;
}

/* Skládačkový efekt - overlap stíny */
.apartment-card-large::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(246, 139, 39, 0.1) 0%, rgba(3, 114, 188, 0.1) 100%);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.apartment-card:hover::before {
    opacity: 1;
}

.apartment-card-medium::before {
    border-radius: 24px;
}

.apartment-card-small::before {
    border-radius: 20px;
}

/* Responzivní úpravy */
@media (max-width: 1200px) {
    .apartments-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 480px;
    }
    
    .apartment-card:nth-child(1),
    .apartment-card:nth-child(2),
    .apartment-card:nth-child(3) {
        grid-column: span 2;
    }
    
    .apartment-card-small {
        grid-column: span 2;
    }
    
    .apartment-card-large {
        grid-column: span 4;
    }
}

@media (max-width: 968px) {
    .apartments-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        grid-auto-rows: 450px;
    }
    
    .apartment-card:nth-child(1),
    .apartment-card:nth-child(2),
    .apartment-card:nth-child(3),
    .apartment-card-small,
    .apartment-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .apartments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        grid-auto-rows: auto;
    }
    
    .apartment-card:nth-child(1),
    .apartment-card:nth-child(2),
    .apartment-card:nth-child(3),
    .apartment-card-small,
    .apartment-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.apartment-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.apartment-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.apartment-card-large {
    border-radius: 28px;
}

.apartment-card-medium {
    border-radius: 24px;
}

.apartment-card-small {
    border-radius: 20px;
}

.apartment-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--bg-light);
}

.apartment-image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.apartment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.apartment-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.3;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.apartment-card:hover .apartment-image-placeholder::before {
    opacity: 0.1;
}

.apartment-image-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    z-index: 1;
    opacity: 0.5;
}

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

.apartment-card-large:hover .apartment-img {
    transform: scale(1.12);
}

.apartment-card-small:hover .apartment-img {
    transform: scale(1.18);
}

.apartment-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.link-inner {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary-color);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.link-inner:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.apartment-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.apartment-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.apartment-description {
    margin-bottom: 0px;
}

.apartment-description p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
}

.features-decoration {
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    margin-top: 10px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.services-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    overflow: hidden;
    height: 100%;
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(246, 139, 39, 0.2);
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-icon-wrapper {
    flex-shrink: 0;
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-icon-placeholder {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--bg-white);
    position: relative;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon-img {
    transform: scale(1.15);
}

.service-icon-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.2;
}

.service-icon-placeholder::after {
    content: '🏖️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    opacity: 0.4;
}

.service-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 15px 0;
    letter-spacing: -0.5px;
    font-family: var(--font-family-subheadings);
    text-transform: uppercase;
}

.service-description {
    flex: 1;
}

.service-description p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */
.reviews-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-cream) 0%, rgba(0, 119, 190, 0.03) 100%);
    position: relative;
    overflow: visible;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(circle, rgba(237, 143, 7, 0.08) 0%, transparent 70%);
    animation: pulse 15s infinite;
}

.reviews-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Carousel Wrapper */
.reviews-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.reviews-grid {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.review-card {
    min-width: calc(33.333% - 27px);
    max-width: calc(33.333% - 27px);
    width: calc(33.333% - 27px);
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(246, 139, 39, 0.2);
    border-color: var(--accent-color);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: rgba(246, 139, 39, 0.08);
    line-height: 1;
    z-index: 0;
    font-weight: 700;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(246, 139, 39, 0.25);
    border-color: var(--accent-color);
}

.review-stars {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.stars-wrapper {
    display: flex;
    gap: 8px;
}

.star {
    color: #ffc107;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.review-card:hover .star {
    transform: scale(1.1);
}

.review-content {
    flex: 1;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
}

.review-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    font-style: italic;
    position: relative;
}

.review-text p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-author {
    border-top: 2px solid rgba(237, 143, 7, 0.2);
    padding-top: 20px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(246, 139, 39, 0.3);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: var(--font-family-subheadings);
}

.author-label {
    font-size: 13px;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-size: 24px;
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(246, 139, 39, 0.4);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(237, 143, 7, 0.3);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--accent-color);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover:not(.active) {
    background: rgba(246, 139, 39, 0.6);
}

@media (max-width: 1200px) {
    .review-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .review-card {
        min-width: 100%;
        width: 100%;
        padding: 40px 30px;
        min-height: 350px;
    }
    
    .carousel-nav {
        margin-top: 40px;
    }
    
    .reviews-grid {
        gap: 20px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .review-text p {
        -webkit-line-clamp: 8;
    }
}

/* ============================================
   RESERVATION CTA SECTION
   ============================================ */
.reservation-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Wave animations */
.reservation-cta-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.05));
    border-radius: 50% 50% 0 0;
    animation: wave 15s linear infinite;
}

.wave1 { 
    animation-delay: 0s; 
    opacity: 0.7;
}

.wave2 { 
    animation-delay: 5s; 
    opacity: 0.5;
}

.wave3 { 
    animation-delay: 10s; 
    opacity: 0.3;
}

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

.reservation-cta-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.reservation-cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    margin-bottom: 16px;
    font-family: var(--font-family-headings);
}

.reservation-cta-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.reservation-cta-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}

.feature-icon {
    font-size: 36px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.cta-feature:nth-child(1) .feature-icon {
    animation-delay: 0s;
}

.cta-feature:nth-child(2) .feature-icon {
    animation-delay: 0.3s;
}

.cta-feature:nth-child(3) .feature-icon {
    animation-delay: 0.6s;
}

.cta-feature:nth-child(4) .feature-icon {
    animation-delay: 0.9s;
}

.cta-feature:nth-child(5) .feature-icon {
    animation-delay: 1.2s;
}

.cta-feature:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    animation-play-state: paused;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.reservation-cta-button {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.reservation-cta-primary {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.reservation-cta-link {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.reservation-cta-link .cta-link-inner {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50px;
    white-space: nowrap;
    min-width: auto;
    width: auto;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 56px;
}

.reservation-cta-link .cta-link-inner:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(246, 139, 39, 0.4);
    z-index: 2;
}

.reservation-cta-link.booking .cta-link-inner {
    height: 56px;
}

.cta-icon-phone-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(7498%) hue-rotate(195deg) brightness(95%) contrast(101%);
    transition: filter 0.3s ease;
}

.reservation-cta-link .cta-link-inner:hover .cta-icon-phone-img {
    filter: brightness(0) invert(1);
}

.cta-icon-phone {
    font-size: 24px;
}

.cta-icon-booking {
    font-size: 24px;
}

@media (max-width: 768px) {
    .reservation-cta-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-feature {
        font-size: 14px;
    }
    
    .feature-icon {
        font-size: 28px;
    }
}

.reservation-cta-link-secondary {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    text-decoration: underline;
    transition: all 0.3s ease;
    text-underline-offset: 4px;
}

.reservation-cta-link-secondary:hover {
    color: white;
    text-decoration-color: var(--accent-color);
}

@media (max-width: 768px) {
    .reservation-cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .reservation-cta-primary {
        flex-direction: column;
        width: 100%;
    }
    
    .reservation-cta-link .cta-link-inner {
        width: 100%;
        min-width: auto;
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .reservation-cta-icon {
        font-size: 60px;
    }
    
    .feature-icon {
        font-size: 32px;
    }
}

/* ============================================
   BEACHES SECTION
   ============================================ */
.beaches-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.beaches-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.beaches-description {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.beaches-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

.beaches-list {
    margin-bottom: 60px;
}

.beaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.beach-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.beach-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(237, 143, 7, 0.2);
    border-color: var(--accent-color);
}

.beach-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.beach-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.beach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.beach-card-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.beach-card-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-color);
    color: white;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(237, 143, 7, 0.5);
    font-family: var(--font-family-subheadings);
}

.beach-card-content {
    padding: 30px;
}

.beach-card-title {
    font-family: var(--font-family-headings);
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 400;
}

.beach-card-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 16px;
}

.beach-card-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 14px;
    color: var(--text-lighter);
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 1200px) {
    .beaches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .beaches-grid {
        grid-template-columns: 1fr;
    }
    
    .beach-card-image {
        height: 220px;
    }
    
    .beaches-description {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    
    .beaches-description p {
        font-size: 16px;
    }
}

.beaches-map {
    margin-top: 60px;
}

.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

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

.map-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.blog-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.blog-title {
    font-size: clamp(28px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.blog-decoration {
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

.blog-all-link {
    text-align: center;
    margin-bottom: 60px;
}

.blog-all-link-btn {
    display: inline-block;
}

.blog-all-link-inner-btn {
    padding: 12px 32px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.blog-all-link-btn:hover .blog-all-link-inner-btn {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Blog Carousel */
.blog-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.blog-grid {
    display: flex;
    gap: 40px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.blog-card {
    min-width: calc(33.333% - 27px);
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(246, 139, 39, 0.2);
    border-color: var(--accent-color);
}

/* Blog Carousel Controls */
.blog-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}

.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

@media (max-width: 1200px) {
    .blog-card {
        min-width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .blog-card {
        min-width: 100%;
    }
}

/* Blog Page Hero */
.page-hero.blog-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(3, 114, 188, 0.75), rgba(3, 114, 188, 0.55)), url('images/hero-bg.png') center/cover no-repeat;
    position: relative;
    padding-top: 120px;
    text-align: center;
    color: white;
}

.page-hero.blog-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.page-hero.blog-hero .page-hero-content {
    max-width: 780px;
    position: relative;
    z-index: 2;
}

/* Blog Listing Page */
.blog-listing-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.blog-listing-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.filter-bar {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.filter-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-input,
.filter-select {
    padding: 12px 18px;
    border: 2px solid rgba(3, 114, 188, 0.1);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-family-body);
    background: white;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.filter-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(3, 114, 188, 0.1);
}

.filter-input::placeholder {
    color: var(--text-lighter);
}

.blog-empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
    font-size: 18px;
}

/* Blog Card Styles for Listing */
.blog-card-image {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-card-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    width: fit-content;
    font-family: var(--font-family-subheadings);
}

.blog-card-title {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}

.blog-card-title a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: var(--text-lighter);
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 968px) {
    .filter-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .blog-listing-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .blog-listing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.blog-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-family: var(--font-family-subheadings);
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: var(--bg-light);
}

.blog-image {
    width: 100%;
    height: 100%;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    opacity: 0.3;
    z-index: 0;
}

.blog-image-wrapper::after {
    display: none;
}

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

.blog-content-wrapper {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 16px;
    font-family: var(--font-family-headings);
}

.blog-post-title a {
    color: var(--text-dark);
    transition: color var(--transition-base);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    margin-bottom: 24px;
    flex: 1;
}

.blog-excerpt p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

.blog-meta {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.blog-meta-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.blog-author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 3px 10px rgba(246, 139, 39, 0.3);
}

.author-avatar-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.blog-meta-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.blog-date {
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   NEWSLETTER SECTION
   ============================================ */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 20s infinite;
}

.newsletter-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    font-size: 60px;
    margin-bottom: 24px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.newsletter-title {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 400;
    margin-bottom: 16px;
    font-family: var(--font-family-headings);
}

.newsletter-description {
    font-size: 16px;
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.newsletter-benefits {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.benefit-icon {
    width: 26px;
    height: 26px;
    background: white;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.newsletter-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

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

.newsletter-input-group {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 20px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--font-family-body);
    background: white;
    color: var(--text-dark);
    outline: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.newsletter-input:focus {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.newsletter-input::placeholder {
    color: var(--text-lighter);
}

.newsletter-submit {
    padding: 20px 40px;
    background: var(--text-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    font-family: var(--font-family-subheadings);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-submit:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.submit-icon {
    font-size: 20px;
    transition: transform var(--transition-base);
}

.newsletter-submit:hover .submit-icon {
    transform: translateX(5px);
}

.newsletter-privacy {
    text-align: center;
    margin-top: 10px;
}

.newsletter-privacy small {
    font-size: 13px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .newsletter-benefits {
        flex-direction: column;
        gap: 20px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        min-width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    background: var(--text-dark);
    color: white;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo-img {
    width: 140px;
    height: auto;
}

.footer-title {
    font-size: 28px;
    font-family: var(--font-family-headings);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.footer-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.social-link:hover .footer-social-icon {
    opacity: 1;
    transform: scale(1.1);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(246, 139, 39, 0.3);
}

.footer-column-title {
    font-size: 18px;
    font-family: var(--font-family-subheadings);
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    transition: all var(--transition-base);
    display: inline-block;
}

.footer-links li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.contact-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.contact-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    padding: 30px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

[data-animate] {
    opacity: 1;
    transform: none;
    filter: none;
}

html.animations-ready [data-animate] {
    --animate-translate-x: 0px;
    --animate-translate-y: 40px;
    --animate-scale: 1;
    opacity: 0;
    transform: translate3d(var(--animate-translate-x), var(--animate-translate-y), 0) scale(var(--animate-scale));
    transition:
        opacity var(--animate-duration, 0.6s) cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform var(--animate-duration, 0.6s) cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: var(--animate-delay, 0s);
    will-change: opacity, transform;
    transform-origin: center;
}

html.animations-ready [data-animate].is-animated {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

html.animations-ready [data-animate="fade-in"] {
    --animate-translate-y: 0px;
    --animate-translate-x: 0px;
    --animate-scale: 1;
}

html.animations-ready [data-animate="fade-up"],
html.animations-ready [data-animate="slide-in"] {
    --animate-translate-x: 0px;
    --animate-translate-y: 40px;
    --animate-scale: 1;
}

html.animations-ready [data-animate="fade-down"] {
    --animate-translate-y: -40px;
    --animate-translate-x: 0px;
    --animate-scale: 1;
}

html.animations-ready [data-animate="fade-right"],
html.animations-ready [data-animate="slide-in-right"] {
    --animate-translate-x: -60px;
    --animate-translate-y: 0px;
    --animate-scale: 1;
}

html.animations-ready [data-animate="fade-left"],
html.animations-ready [data-animate="slide-in-left"] {
    --animate-translate-x: 60px;
    --animate-translate-y: 0px;
    --animate-scale: 1;
}

html.animations-ready [data-animate="zoom-in"] {
    --animate-translate-y: 20px;
    --animate-translate-x: 0px;
    --animate-scale: 0.9;
}

html.animations-ready [data-animate="flip-up"] {
    transform-origin: top center;
    transform: perspective(900px) rotateX(16deg);
    opacity: 0;
}

html.animations-ready [data-animate="flip-up"].is-animated {
    transform: perspective(900px) rotateX(0deg);
    opacity: 1;
}

html.animations-ready [data-animate="glide-right"] {
    --animate-translate-x: -60px;
    --animate-translate-y: 0px;
    --animate-scale: 1;
}

@media (prefers-reduced-motion: reduce) {
    [data-animate],
    [data-animate].is-animated {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ============================================
   ENHANCED MICRO-INTERACTIONS
   ============================================ */

/* Smooth transitions on all interactive elements */
a, button, input, textarea {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    :root {
        --container-padding: 0 30px;
        --section-padding: 45px 0;
    }
}

@media (max-width: 968px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        z-index: 999;
    }

    .nav-list.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin-top: 10px;
        border-radius: 8px;
    }

    .apartments-grid,
    .services-grid,
    .reviews-grid,
    .beaches-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .service-icon-wrapper {
        height: 200px;
    }
    
    .service-content {
        padding: 25px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 0 20px;
        --section-padding: 40px 0;
    }

    .hero-section {
        min-height: 80vh;
        padding-top: 120px;
        background-attachment: scroll;
    }

    .reservation-section {
        padding: 40px 24px;
    }
    
    .about-image {
        height: 240px;
    }
    
    .about-image-large {
        height: 300px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: clamp(28px, 5vw, 48px);
    }
    
    .about-title {
        font-size: clamp(28px, 5vw, 42px);
    }

    .apartment-card,
    .service-card,
    .review-card,
    .blog-card {
        border-radius: 16px;
    }

    .apartment-info,
    .blog-content-wrapper {
        padding: 24px;
    }

    .service-icon-wrapper {
        height: 160px;
    }
    
    .service-content {
        padding: 24px;
    }
    
    .service-title {
        font-size: 20px;
    }

    .map-wrapper {
        height: 400px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 0 16px;
        --section-padding: 35px 0;
    }

    .logo-image {
        width: 100px;
        height: 50px;
    }
    
    .about-image {
        height: 200px;
    }
    
    .about-image-large {
        height: 260px;
    }
    
    .reservation-cta-link .cta-link-inner {
        padding: 12px 24px;
        font-size: 14px;
        height: 50px;
    }
    
    .feature-icon {
        font-size: 28px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .beaches-description {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: clamp(36px, 6vw, 100px);
    }

    .hero-subtitle {
        font-size: clamp(18px, 3vw, 32px);
    }
    
    .cta-link-inner {
        padding: 14px 28px;
        font-size: 12px;
    }
}

    .section-title,
    .about-title,
    .blog-title {
        font-size: 32px;
    }

    .apartment-name,
    .service-title {
        font-size: 20px;
    }

    .reservation-section {
        padding: 30px 24px;
    }
    
    .reservation-title {
        font-size: 24px;
    }
    
    .reservation-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .btn-text {
        font-size: 13px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.btn-outline-accent {
    color: var(--accent-color);
    border-color: rgba(246, 139, 39, 0.35);
}

.btn-outline-accent:hover,
.btn-outline-accent:focus-visible {
    background: rgba(246, 139, 39, 0.15);
    border-color: var(--accent-color);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(246, 139, 39, 0.25);
}

