/* Custom CSS for City Breaks */
:root {
    --color-navy: #0A192F;
    --color-gold: #C5A059;
    --color-off-white: #f8fafc;
    --color-light-gray: #e2e8f0;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-navy);
    overflow-x: hidden;
}

.font-ui {
    font-family: 'Montserrat', sans-serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.font-body {
    font-family: 'Lato', sans-serif;
}

.text-navy { color: var(--color-navy) !important; }
.text-gold { color: var(--color-gold) !important; }
.bg-navy { background-color: var(--color-navy) !important; }
.bg-gold { background-color: var(--color-gold) !important; }
.bg-off-white { background-color: var(--color-off-white) !important; }
.text-white-50 { color: rgba(255, 255, 255, 0.7) !important; }

.tracking-widest { letter-spacing: 0.1em; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.max-w-700 { max-width: 700px; }

/* Navbar */
.navbar {
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.navbar.scrolled {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.nav-link {
    color: var(--color-navy) !important;
    font-size: 0.75rem;
    position: relative;
    padding-bottom: 5px;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-gold);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

/* Buttons */
.btn-navy {
    background-color: var(--color-navy);
    color: var(--color-gold);
    border: 1px solid var(--color-navy);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.btn-navy:hover {
    background-color: var(--color-gold);
    color: var(--color-navy);
    border-color: var(--color-gold);
}

.btn-gold {
    background-color: var(--color-gold);
    color: var(--color-navy);
    border: 1px solid var(--color-gold);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.btn-gold:hover {
    background-color: #fff;
    color: var(--color-navy);
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.btn-outline-white:hover {
    background-color: #fff;
    color: var(--color-navy);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1542314831-c6a4d14d8373?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Sophisticated dark overlay */
    z-index: 0;
}
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.text-shadow-sm {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* About Us & Parallax Wrap */
.about-image-wrapper {
    padding: 20px 20px 0 0;
}
.about-bg-accent {
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    z-index: 0;
}
.experience-badge {
    bottom: -30px;
    left: -30px;
}
.line-accent {
    height: 2px;
    width: 30px;
}
.parallax-wrap:hover .parallax-img {
    transform: translateY(-10px);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.parallax-img {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Vision & Mission Cards */
.premium-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}
.card-icon-bg {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 150px;
    color: rgba(10, 25, 47, 0.03);
    z-index: 0;
    pointer-events: none;
}
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

/* Upgraded Key Goals (Masonry/Premium Style) */
.goal-card-premium {
    background: #fff;
    padding: 3rem 2.5rem;
    position: relative;
    border: 1px solid var(--color-light-gray);
    transition: all 0.4s ease;
    overflow: hidden;
    z-index: 1;
}
.goal-card-premium:hover {
    box-shadow: 0 20px 40px -15px rgba(10, 25, 47, 0.15);
    border-color: var(--color-gold);
    transform: translateY(-5px);
}
.goal-bg-number {
    position: absolute;
    font-size: 8rem;
    line-height: 0.8;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: rgba(10, 25, 47, 0.03);
    bottom: -15px;
    right: -10px;
    z-index: 0;
    transition: color 0.4s ease;
    pointer-events: none;
}
.goal-card-premium:hover .goal-bg-number {
    color: rgba(197, 160, 89, 0.15); /* Soft gold reveal on hover */
}

/* Hotels & Blog Grayscale to Color Effect */
.bw-hover-image {
    filter: grayscale(100%);
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.property-card:hover .bw-hover-image, 
.blog-card:hover .bw-hover-image {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.property-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

/* Contact Section */
.p-lg-100 {
    padding: 100px !important;
}
.premium-input {
    border-radius: 0;
    border: 1px solid var(--color-light-gray);
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: var(--color-off-white);
}
.premium-input:focus {
    box-shadow: none;
    border-color: var(--color-gold);
    background-color: #fff;
}
select.premium-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}
.contact-bg-glow {
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197,160,89,0.15) 0%, rgba(10,25,47,0) 70%);
    transform: translate(30%, -30%);
}
.icon-circle-outline {
    width: 50px;
    height: 50px;
}
.contact-info-item:hover .icon-circle-outline {
    background-color: var(--color-gold) !important;
}
.contact-info-item:hover .icon-circle-outline i {
    color: var(--color-navy) !important;
}

/* Footer */
.hover-gold:hover {
    color: var(--color-gold) !important;
}
.mintox-link:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
    animation: pulse-whatsapp 2s infinite;
    transition: background-color 0.3s ease;
}
.whatsapp-float i {
    margin-top: 1px;
    margin-left: 1px;
}
.whatsapp-float:hover {
    color: #fff;
    background-color: #20b858;
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-on-scroll.slide-up { transform: translateY(40px); }
.animate-on-scroll.slide-left { transform: translateX(40px); }
.animate-on-scroll.slide-right { transform: translateX(-40px); }
.animate-on-scroll.fade-in { transform: scale(0.95); }

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}
