/* Start custom CSS for html, class: .elementor-element-f865852 *//* Custom Premium Variables for easy tweaking */
:root {
    --card-bg: #ffffff;
    --border-color: rgba(15, 23, 42, 0.06);
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary-grad: linear-gradient(135deg, #0284c7, #06b6d4);
    --primary-grad-hover: linear-gradient(135deg, #0369a1, #0891b2);
    --transition-premium: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Section */
.max-w-7xl {
    max-width: 1400px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

/* Card - Premium Layered Shadow & Smooth Interaction */
.bg-white.rounded-3xl {
    background: var(--card-bg);
    border-radius: 24px; /* Slightly tighter radius looks cleaner */
    overflow: hidden;
    border: 1px solid var(--border-color);
    /* Soft, layered natural shadow */
    box-shadow: 
        0 4px 6px -1px rgba(15, 23, 42, 0.03),
        0 10px 15px -3px rgba(15, 23, 42, 0.05),
        0 20px 25px -5px rgba(15, 23, 42, 0.03);
    transition: var(--transition-premium);
    will-change: transform, box-shadow;
}

.bg-white.rounded-3xl:hover {
    transform: translateY(-6px);
    /* Deep, elegant hover shadow */
    box-shadow: 
        0 20px 40px -15px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(2, 132, 199, 0.05); /* Subtle primary accent border on hover */
}

/* Image - Immersive Cinematic Effect */
.bg-white.rounded-3xl img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition-premium);
    filter: brightness(0.98);
}

.bg-white.rounded-3xl:hover img {
    transform: scale(1.04);
    filter: brightness(1.02);
}

/* Title */
.text-2xl.font-bold.text-slate-900 {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em; /* Premium tight tracking for headings */
    margin-bottom: 8px;
}

/* Location */
.text-slate-500.mt-2 {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 450;
}

/* Price */
.text-3xl.font-bold.text-sky-600 {
    color: #0284c7;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Button - Glow & Sleek Interaction */
a.px-5.py-3.rounded-xl.bg-sky-600 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-grad);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: var(--transition-premium);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.2);
    text-decoration: none;
}

a.px-5.py-3.rounded-xl.bg-sky-600:hover {
    background: var(--primary-grad-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.35);
}

a.px-5.py-3.rounded-xl.bg-sky-600:active {
    transform: translateY(0);
}

/* Header Section */
.text-center.mb-12 h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.text-center.mb-12 p {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Premium Responsive Tweaks */
@media (max-width: 768px) {
    .text-center.mb-12 h2 {
        font-size: 2rem;
        letter-spacing: -0.02em;
    }

    .text-2xl.font-bold.text-slate-900 {
        font-size: 1.35rem;
    }

    .text-3xl.font-bold.text-sky-600 {
        font-size: 1.5rem;
    }

    .mt-6.flex.justify-between.items-center {
        flex-direction: column;
        align-items: stretch; /* Stretches the button beautifully on mobile */
        gap: 16px;
    }

    a.px-5.py-3.rounded-xl.bg-sky-600 {
        width: 100%;
        padding: 14px;
    }
}/* End custom CSS */