:root {
    --bg-color: #F8FAFC;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --text-dark: #0F172A;
    --text-light: #475569;
    --accent-gradient: linear-gradient(135deg, #4F46E5 0%, #0EA5E9 100%);
    --whatsapp: #25D366;
    --gold-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --radius-pill: 50px;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background-color: #F8FAFC;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.6;
    animation: drift 20s infinite alternate ease-in-out;
}

.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: #E0E7FF;
    border-radius: 50%;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: #DBEAFE;
    border-radius: 50%;
    animation-delay: -5s;
}

.blob-3 {
    top: 40%;
    left: 60%;
    width: 40vw;
    height: 40vw;
    background: #FCE7F3;
    border-radius: 50%;
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10vw, 10vh) scale(1.1); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.site-header {
    position: sticky;
    top: 15px;
    z-index: 1000;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.header-glass-bar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.brand-logo {
    height: 45px;
    cursor: pointer;
    transition: 0.3s;
}

.brand-logo:hover {
    transform: scale(1.05);
}

.mobile-toggle {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: #0F172A;
    padding: 0 10px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link {
    text-decoration: none;
    color: #0F172A;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 50px;
    transition: 0.3s;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    background: #EEF2FF;
    color: #4F46E5;
    transform: translateY(-2px);
}

.btn-book-nav {
    background: #0F172A;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
    transition: 0.3s;
}

.btn-book-nav:hover {
    background: #4F46E5;
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
}

@media (max-width: 950px) {
    .mobile-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        padding: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        border: 1px solid white;
    }

    .nav-menu.show-menu {
        display: flex;
        animation: popDown 0.3s ease;
    }

    @keyframes popDown {
        from { opacity: 0; transform: translateY(-15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-link {
        width: 100%;
        text-align: left;
        padding: 15px;
        border-bottom: 1px solid #F1F5F9;
        border-radius: 0;
        font-size: 1.1rem;
    }

    .nav-link:hover,
    .nav-link.active {
        background: transparent;
        color: #4F46E5;
        transform: none;
    }

    .btn-book-nav {
        width: 100%;
        text-align: center;
        margin: 15px 0 0 0;
        padding: 15px;
        background: var(--accent-gradient);
        border-radius: 50px;
    }
}

section {
    padding: 90px 0;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    text-align: center;
    padding: 100px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tagline {
    background: white;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    color: #4F46E5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    margin-bottom: 30px;
    border: 1px solid #E0E7FF;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(2.3rem, 7vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    max-width: 1000px;
    margin: 0 auto 20px;
    line-height: 1.1;
}

.hero p {
    font-size: clamp(1rem, 4vw, 1.3rem);
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.booking-bar-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.booking-bar-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(90deg, #4F46E5, #0EA5E9, #F59E0B);
    border-radius: 60px;
    filter: blur(15px);
    opacity: 0.2;
    z-index: -1;
}

.booking-bar {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    backdrop-filter: blur(25px);
    border: 2px solid white;
    border-radius: var(--radius-pill);
    padding: 12px 15px 12px 35px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    width: 100%;
    justify-content: space-between;
    text-align: left;
    position: relative;
}

.book-field {
    display: flex;
    flex-direction: column;
    padding-right: 25px;
    border-right: 1px solid #E2E8F0;
    flex: 1;
    margin-right: 25px;
    transition: var(--transition);
    border-radius: 15px;
    padding: 10px 15px;
}

.book-field:hover {
    background: #EEF2FF;
    transform: translateY(-2px);
}

.book-field:last-of-type {
    border-right: none;
    margin-right: 10px;
}

.book-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4F46E5;
    margin-bottom: 5px;
}

.book-input {
    font-family: inherit;
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 500;
    background: rgba(255,255,255,0.6);
    border: none;
    outline: none;
    padding: 6px 10px;
    width: 100%;
    border-radius: 8px;
}

.book-search-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3);
    flex-shrink: 0;
    margin-left: 10px;
}

.book-search-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 30px rgba(79, 70, 229, 0.4);
}

@media (max-width: 900px) {
    .booking-bar {
        flex-direction: column;
        border-radius: var(--radius-xl);
        padding: 25px;
        gap: 10px;
    }

    .booking-bar-wrapper::before {
        border-radius: var(--radius-xl);
    }

    .book-field {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding: 12px 10px;
        width: 100%;
        margin-right: 0;
    }

    .book-search-btn {
        width: 100%;
        border-radius: 12px;
        height: 60px;
        margin-top: 10px;
        margin-left: 0;
    }
}

.dual-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 80px;
}

.banner-card {
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(10px);
}

.banner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.08);
}

.banner-staycation {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(241,245,249,0.9) 100%);
}

.banner-management {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
}

.banner-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.banner-card h3 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 800;
    margin: 0 0 15px 0;
    letter-spacing: -0.03em;
}

.banner-card p {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5;
}

.banner-management p {
    color: #CBD5E1;
}

.btn-banner {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-staycation {
    background: var(--text-dark);
    color: white;
}

.btn-staycation:hover {
    background: var(--accent-gradient);
    transform: scale(1.05);
}

.btn-management {
    background: white;
    color: var(--text-dark);
}

.btn-management:hover {
    background: var(--gold-gradient);
    color: white;
    transform: scale(1.05);
    border: none;
}

@media (max-width: 900px) {
    .dual-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .banner-card {
        padding: 30px 25px;
    }
}

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

.section-header h2 {
    font-size: clamp(1.8rem, 7vw, 3rem);
    color: var(--text-dark);
    margin: 0 0 15px 0;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    font-size: clamp(1rem, 4vw, 1.2rem);
    max-width: 750px;
    margin: 0 auto;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 35px 25px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03), inset 0 0 0 1px rgba(255,255,255,0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, #EEF2FF 100%);
    border-color: #C7D2FE;
}

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

.icon-wrap {
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: #4F46E5;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.1);
}

.feature-card:hover .icon-wrap {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
    background: var(--accent-gradient);
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 10px;
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

.copy-block {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.9;
}

.area-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 900;
    margin: 60px 0 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.area-title::before {
    content: '';
    width: 30px;
    height: 5px;
    background: var(--accent-gradient);
    border-radius: 10px;
    flex-shrink: 0;
}

.building-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
    background: linear-gradient(to right, #EEF2FF 0%, #ffffff 50%);
    border-left: 6px solid #4F46E5;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    border-top: 1px solid white;
    border-right: 1px solid white;
    border-bottom: 1px solid white;
}

.building-header h3 {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin: 0;
    font-weight: 800;
    color: #1E293B;
}

.btn-outline {
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #C7D2FE;
    background: white;
    color: #4F46E5;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.btn-outline:hover {
    border-color: #4F46E5;
    background: #4F46E5;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(79, 70, 229, 0.2);
}

.prop-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
    transition: var(--transition);
    border: 1px solid white;
    display: flex;
    flex-direction: column;
    position: relative;
}

.prop-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(79, 70, 229, 0.12);
    border-color: #E0E7FF;
}

.prop-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.badge-special {
    background: var(--gold-gradient);
    color: white;
}

.img-container {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.img-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    z-index: 1;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.prop-card:hover .img-container img {
    transform: scale(1.08) rotate(1deg);
}

.card-body {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h4 {
    margin: 0 0 15px 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.amenity-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.pill {
    background: white;
    border: 1px solid #E2E8F0;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.bed-box {
    background: #EEF2FF;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #4F46E5;
    font-weight: 600;
    border: 1px solid #E0E7FF;
}

.btn-gallery {
    background: white;
    color: var(--text-dark);
    border: 2px solid #E2E8F0;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 800;
    margin-bottom: 15px;
    width: 100%;
    transition: var(--transition);
    font-size: 0.95rem;
    font-family: inherit;
}

.btn-gallery:hover {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
    transform: translateY(-2px);
}

.booking-options {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-whatsapp {
    display: block;
    text-align: center;
    background: var(--whatsapp);
    color: white;
    padding: 14px;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

.platforms {
    display: flex;
    gap: 10px;
}

.btn-plat {
    flex: 1;
    padding: 12px 5px;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
    border: 1px solid #E2E8F0;
    color: var(--text-light);
    background: white;
}

.btn-plat:hover {
    background: #F1F5F9;
    color: var(--text-dark);
    border-color: #CBD5E1;
    transform: translateY(-2px);
}

.compact-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.compact-guide-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
}

.compact-guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #C7D2FE;
}

.compact-guide-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.guide-group {
    margin-bottom: 20px;
    border-top: 1px solid #E2E8F0;
    padding-top: 15px;
}

.guide-group:last-child {
    margin-bottom: 0;
}

.guide-group h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #4F46E5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
}

.guide-fact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
}

.guide-fact-list li {
    font-size: 0.9rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.guide-fact-list li::before {
    content: '➔';
    color: #F59E0B;
    font-size: 0.6rem;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .guide-fact-list {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #C7D2FE;
}

.blog-img {
    width: 100%;
    height: 220px;
    background: #E2E8F0;
    object-fit: cover;
}

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

.blog-date {
    font-size: 0.85rem;
    color: #4F46E5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

.blog-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    color: var(--text-dark);
    line-height: 1.3;
}

.blog-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    padding-bottom: 2px;
    transition: var(--transition);
    align-self: flex-start;
}

.read-more:hover {
    color: #4F46E5;
}

.contact-box {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--radius-xl);
    padding: 50px 30px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.contact-box h2 {
    color: white !important;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.contact-box p {
    color: #94A3B8 !important;
    font-size: 1rem;
}

.input-field {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255,255,255,0.05);
    color: white;
    transition: var(--transition);
    outline: none;
}

.input-field::placeholder {
    color: #64748B;
}

.input-field:focus {
    border-color: #F59E0B;
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

select.input-field {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='292.4' height='292.4'%3E%3Cpath fill='%2394A3B8' d='M287 69.4a17.6 17.6 0 0 0-13-5.4H18.4c-5 0-9.3 1.8-12.9 5.4A17.6 17.6 0 0 0 0 82.2c0 5 1.8 9.3 5.4 12.9l128 127.9c3.6 3.6 7.8 5.4 12.8 5.4s9.2-1.8 12.8-5.4L287 95c3.5-3.5 5.4-7.8 5.4-12.8 0-5-1.9-9.2-5.5-12.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px top 50%;
    background-size: 12px auto;
    padding-right: 40px;
}

select.input-field option {
    color: #0F172A;
    background: white;
}

.btn-submit {
    background: var(--gold-gradient);
    color: white;
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    font-family: inherit;
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn-submit:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.review-card {
    background: white;
    padding: 30px 25px;
    border-radius: var(--radius-xl);
    border: 1px solid #E2E8F0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #C7D2FE;
}

.stars {
    color: #F59E0B;
    font-size: 1.1rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #E2E8F0;
    padding-top: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info h5 {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 800;
}

.author-info span {
    font-size: 0.8rem;
    color: #4F46E5;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

.rating-summary {
    background: linear-gradient(to right, #EEF2FF, #F8FAFC);
    border-radius: var(--radius-xl);
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 50px;
    border: 1px solid #E0E7FF;
}

.rating-big {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.cta-band {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    text-align: center;
}

.cta-band h2 {
    margin: 0 0 15px;
    font-size: clamp(1.8rem, 5vw, 2.6rem);
}

.cta-band p {
    color: #CBD5E1;
    max-width: 800px;
    margin: 0 auto 25px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-light);
    font-weight: 500;
    border-top: 1px solid #E2E8F0;
    margin-top: 30px;
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.modal-content {
    max-width: 95%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.modal-controls {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: center;
}

.nav-btn {
    background: white;
    color: var(--text-dark);
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 800;
    transition: var(--transition);
}

.nav-btn:hover {
    background: #4F46E5;
    color: white;
    transform: scale(1.1);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close-btn:hover {
    color: #4F46E5;
    transform: scale(1.2) rotate(90deg);
}

.image-counter {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}