/* BASE */
body {
    margin: 0;
    padding-top: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* NAVBAR */
#main-navbar.navbar-glass {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    padding: 12px 0;
    background: transparent;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

#main-navbar.navbar-glass.navbar-scrolled {
    background: rgba(10, 15, 30, 0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
    padding: 12px 0;
}

#main-navbar .navbar-brand {
    max-height: 140px;
    display: flex;
    align-items: center;
}

#header-logo {
    height: 130px !important;
    max-height: 130px !important;
    width: auto !important;
    object-fit: contain !important;
    margin-right: 1rem;
    transition: height 0.35s ease, max-height 0.35s ease;
}

#main-navbar.navbar-scrolled #header-logo {
    height: 75px !important;
    max-height: 75px !important;
}

#main-navbar .navbar-brand span {
    letter-spacing: 0.06em;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #f9fafb;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#main-navbar .nav-link {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #e5e7eb;
    position: relative;
    padding-inline: 12px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#main-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #fbbf24, #f97316);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease-out;
}

#main-navbar .nav-link:hover,
#main-navbar .nav-link.active {
    color: #ffffff;
    transform: translateY(-1px);
    /* Added lift effect */
}

#main-navbar .nav-link:hover::after,
#main-navbar .nav-link.active::after {
    transform: scaleX(1);
}

#main-navbar .nav-link.active {
    font-weight: 700;
    /* Bolder for active state */
    color: #f97316;
    /* Accent color for active */
}

/* CORE UTILITIES */
.max-width-700 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.max-width-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    margin-bottom: 2rem;
    background: #ffc107;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8) !important;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.shadow-xl {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

.shadow-2xl {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25) !important;
}

.backdrop-blur {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.extra-small {
    font-size: 0.75rem;
}

.transition-all {
    transition: all 0.3s ease;
}

.hover-scale {
    transition: all 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05) translateY(-5px) !important;
    cursor: pointer;
}

.hover-lift {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

/* CTA button */
.btn-get-touch {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    color: #0b1120;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 10px 20px;
    border-radius: 999px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    /* Added shadow */
}

.btn-get-touch:hover {
    color: #020617;
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Mobile navbar */
@media (max-width: 991.98px) {

    /* On mobile, scrolled state stays dark */
    #main-navbar.navbar-glass.navbar-scrolled {
        background: rgba(10, 15, 30, 0.97) !important;
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        padding: 12px 0;
    }

    /* Mobile logo size */
    #header-logo {
        height: 110px !important;
        max-height: 110px !important;
    }

    #main-navbar.navbar-scrolled #header-logo {
        height: 65px !important;
        max-height: 65px !important;
    }

    #main-navbar .navbar-collapse {
        padding: 16px 0;
    }

    #main-navbar .nav-link {
        font-size: 0.95rem;
        padding-inline: 12px;
    }

    #main-navbar .nav-link::after {
        bottom: 2px;
        left: 12px;
        right: 12px;
    }

    #main-navbar .navbar-brand span {
        font-size: 1rem;
    }

    .btn-get-touch {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

/* Dropdown hover functionality */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropdown-menu {
        margin-top: 0;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        animation: fadeInUp 0.3s ease;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Allow main dropdown link to navigate while keeping hover dropdown */
    .nav-item.dropdown .dropdown-toggle {
        pointer-events: auto !important;
    }
}

/* Prevent dropdown from opening on click on mobile */
@media (max-width: 991.98px) {
    .nav-item.dropdown .dropdown-toggle {
        pointer-events: auto;
    }
}


/* CONTACT PAGE STYLES */

/* Contact Hero Section */
/* CONTACT HERO (Main) */
.contact-hero {
    position: relative;
    min-height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('img/abouthotel.png') no-repeat center center/cover;
    border-radius: 0 0 40px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.contact-hero .content-wrapper {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Styles */
.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 30px;
    position: relative;
}

.contact-form-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.contact-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form .form-label {
    font-weight: 500;
    color: #4a5568;
    margin-bottom: 8px;
    display: block;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 25px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.contact-info-label {
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 2px;
}

.contact-info-value {
    color: #4a5568;
}

/* Social Links */
.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Office Hours */
.office-hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.8;
}

.office-hours-value {
    font-weight: 600;
    color: #1a202c;
}

.office-hours-closed {
    font-weight: 600;
    color: #e53e3e;
}

/* Map Section */
.map-section {
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    color: #4a5568;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #667eea;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 15px;
}

.faq-accordion .accordion-button {
    background: white;
    color: #1a202c;
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.faq-accordion .accordion-body {
    padding: 20px;
    color: #4a5568;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .contact-hero {
        min-height: 50vh;
    }

    .contact-form-card {
        padding: 25px;
    }

    .contact-info-card {
        padding: 25px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}


.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-float-delay-1 {
    animation: float 3s ease-in-out infinite 0.5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-up-delay-1 {
    animation: slideUp 0.8s ease-out 0.2s both;
}

.animate-slide-up-delay-2 {
    animation: slideUp 0.8s ease-out 0.4s both;
}

.animate-slide-up-delay-3 {
    animation: slideUp 0.8s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTACT UTILITIES */
.contact-section {
    padding: 80px 0;
    background: #e3f2fd;
}

.contact-sticky {
    top: 100px;
}

.contact-social-links {
    display: flex;
    gap: 15px;
}

.contact-map-section {
    padding: 0;
    position: relative;
}

.contact-map-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.contact-map-btn-icon {
    margin-right: 8px;
}

.contact-faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

/* Contact form and info styles */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}

.contact-info-card a {
    color: inherit;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #4f46e5;
}

/* Responsive contact styles */
@media (max-width: 768px) {
    .contact-hero {
        height: 200px;
    }

    .contact-section,
    .contact-faq-section {
        padding: 60px 0;
    }

    .contact-sticky {
        position: relative;
        top: 0;
    }
}


.services-card:hover {
    transform: translateY(-5px);
}

.services-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 12px 12px 0 0;
}

.services-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.625rem;
}

.services-divider {
    width: 50px;
    height: 3px;
    border-radius: 2px;
    background: #0d6efd;
}

/* Responsive services styles */
@media (max-width: 768px) {
    .services-hero {
        min-height: 300px;
        border-radius: 0 0 20px 20px;
    }

    .services-image-wrapper {
        height: 180px;
    }
}



/* WHATSAPP FLOATING BUTTON */
.whatsapp-float-btn {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 1rem;
    width: 60px;
    height: 60px;
    z-index: 1000;
}

/* FRONT PAGE STYLES */
.front-page-activities {
    background-color: #f8faff;
}

/* ===== EXTRACTED INLINE STYLES FROM PHP FILES ===== */

/* Page Contact Template Styles */
.page-contact-hero {
    top: 0;
    left: 0;
    height: 300px;
    overflow: hidden;
}

.page-contact-hero img {
    object-fit: cover;
}

.map-container {
    width: 100%;
}

.map-container iframe {
    border: 0;
    width: 100%;
    height: 400px;
}



/* Service Detail Styles */
.service-detail {
    max-width: 800px;
    margin: 0 auto;
}

.service-header {
    text-align: center;
}



.service-features {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.service-cta {
    background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

/* Contact Form Wrapper Styles */
.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info-card {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
}

.contact-info-card a {
    color: inherit;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: #4f46e5;
}

/* New Services Page Styles */


/* PROJECTS SECTION STYLES */
.projects-section-divider {
    width: 60px;
}

.luxury-spiritual-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.luxury-spiritual-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.card-img-side {
    overflow: hidden;
    height: 100%;
    min-height: 200px;
}

.card-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.luxury-spiritual-card:hover .card-img-side img {
    transform: scale(1.1);
}

.benefit-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-check-list li {
    font-size: 13px;
    margin-bottom: 5px;
    color: #555;
}

/* HERO CAROUSEL STYLES */
.hero-carousel-wrapper {
    position: relative;
    width: 100%;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
    position: relative;
}

.hero-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
}

.carousel-item.active .hero-img-bg {
    transform: scale(1.1);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.carousel-caption-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding-top: 80px;
}

.hero-kicker {
    display: block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: #ffc107;
    font-weight: 700;
    margin-bottom: 1rem;
}


.custom-indicators {
    z-index: 5;
    margin-bottom: 3rem;
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
}

.custom-indicators button.active {
    background-color: #ffc107;
    width: 30px;
    border-radius: 6px;
}

/* Responsive hero styles */
@media (max-width: 991px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .carousel-item {
        min-height: 500px;
    }
}


/* CLIENTS PAGE STYLES */
.clients-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('../img/abouthotel.png') no-repeat center center/cover;
    min-height: 400px;
    border-radius: 0 0 40px 40px;
}


.client-category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.client-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.clients-card-header {
    padding: 1.5rem;
    text-align: center;
}

.client-logo {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive clients styles */
@media (max-width: 768px) {
    .clients-hero {
        min-height: 300px;
        border-radius: 0 0 20px 20px;
    }
}



.dropdown-menu {
    border-radius: 12px !important;
    padding: 10px !important;
    background: rgba(0, 0, 0, 0.95) !important;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #0f172a;
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    #header-logo {
        height: 60px;
    }
}

/* Blog icon colors */
.blog-stat-icon-green {
    color: #10b981 !important;
}

.blog-stat-icon-amber {
    color: #f59e0b !important;
}

.blog-stat-icon-red {
    color: #ef4444 !important;
}

.blog-stat-icon-purple {
    color: #8b5cf6 !important;
}

.blog-stat-icon-pink {
    color: #ec4899 !important;
}

.blog-stat-icon-blue {
    color: #3b82f6 !important;
}

.blog-clock-icon {
    margin-right: 0.3rem !important;
}

/* Blog read link gradients */
.blog-read-link-green {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.blog-read-link-amber {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

.blog-read-link-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
}

/* BLOG SECTION STYLES */
.blog-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

.blog-img-wrapper {
    height: 200px !important;
    overflow: hidden !important;
    position: relative !important;
}

.blog-img-wrapper img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    transition: transform 0.6s ease !important;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.05);
}

.blog-badge {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    color: white !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.blog-badge-investment,
.bg-info {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
}

.blog-badge-rajasthan,
.bg-success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.blog-badge-emerging {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

.blog-badge-pilgrimage {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
}

.blog-content {
    background: white !important;
    padding: 1.5rem;
}

.blog-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #1a202c !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem;
}

.blog-description {
    color: #4a5568 !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem;
}

.blog-stats {
    margin-bottom: 1rem;
}

.blog-stat-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.blog-stat-icon {
    font-size: 0.8rem !important;
}

.blog-stat-text {
    color: #6b7280 !important;
    font-size: 0.8rem !important;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: between;
    color: #6b7280 !important;
    font-size: 0.8rem !important;
}

.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-read-link {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

.blog-read-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    color: white !important;
}

/* Responsive blog styles */
@media (max-width: 768px) {
    .blog-img-wrapper {
        height: 180px !important;
    }

    .blog-img-wrapper img {
        height: 180px !important;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-title {
        font-size: 1rem !important;
    }
}

/* Aesthetic black footer with curved top */
.aesthetic-footer {
    background: #020617;
    color: #e5e7eb;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
}

/* soft gradient highlight strip */
.aesthetic-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, #facc15, #f97316, #38bdf8);
    opacity: 0.8;
}

/* brand text */
.footer-brand {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f9fafb;
}

/* nav links */
.footer-nav {
    font-size: 0.9rem;
}

.footer-link {
    color: #e5e7eb;
    text-decoration: none;
    padding-inline: 6px;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-link:hover {
    color: #f97316;
    opacity: 1;
}

/* divider line */
.footer-divider {
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #6b7280, transparent);
    opacity: 0.6;
}

/* social buttons */
.social-links .social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 4px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    color: #e5e7eb;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}

.social-links .social-btn:hover {
    background: linear-gradient(135deg, #facc15, #f97316);
    color: #020617;
    border-color: transparent;
    transform: translateY(-1px);
}

/* mobile spacing */
@media (max-width: 575.98px) {
    .aesthetic-footer {
        border-radius: 18px 18px 0 0;
    }

    .footer-nav {
        font-size: 0.8rem;
    }
}


/* ABOUT PAGE HERO */
.about-hero {
    position: relative;
    min-height: 340px;
    padding: 120px 0 90px;
    background-image: url('img/abouthotel.png');
    /* add your own hero image */
    background-size: cover;
    background-position: center;
    color: #f9fafb;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
    z-index: 1;
}

/* ABOUT PAGE HERO */
.about-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hotel1.png') no-repeat center center/cover;
    border-radius: 0 0 40px 40px;
}


.service-highlight-box {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.premium-about-card {
    background: white;
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.premium-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.key-services-grid {
    border-left: 4px solid #0d6efd !important;
}

.team-compact-card {
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.team-compact-card:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.team-avatar {
    transition: all 0.5s ease;
}

.team-compact-card:hover .team-avatar {
    transform: scale(1.05);
}


/* Section spacing + headings */
section h2 {
    font-size: clamp(1.9rem, 2.6vw, 2.3rem);
    font-weight: 600;
    color: #0f172a;
}

section p.text-muted {
    max-width: 640px;
    margin: 0 auto;
    font-size: 0.95rem;
}



/* Insights band */
.insights-section {
    background: #f9fafb;
}



/* pill badges */
.team-badge,
.contact-badge {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.9rem;
}

.team-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #1d4ed8;
}

.contact-badge {
    background: rgba(249, 115, 22, 0.1);
    color: #ea580c;
}

/* avatar circles with gradient */
.team-avatar-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.25);
    font-size: 1.25rem;
}

.small-team-card {
    padding: 0.3rem 0;
}

/* contact icons */
.contact-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5e7eb 0%, #f9fafb 100%);
    color: #0f172a;
    font-size: 0.9rem;
}

/* slight hover lift */
#team-contact .card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#team-contact .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.18);
}

/* mobile spacing tweak */
@media (max-width: 767.98px) {
    .team-avatar-icon {
        width: 46px;
        height: 46px;
    }
}

.scrolling-strip-2rows {
    position: relative;
    overflow: hidden;
    padding: 1.5rem 0 1.8rem;
    background: transparent;
    /* Remove light grey background */
}

/* rows */
.scroll-row {
    position: relative;
    white-space: nowrap;
    display: flex;
    overflow: hidden;
}

.row-top {
    margin-bottom: 0.8rem;
}

/* shared track + items */
.scroll-track {
    display: flex;
    gap: 1rem;
    width: fit-content;
}

.scroll-item {
    min-width: 140px;
    height: 140px;
    border-radius: 14px;
    background: transparent;
    /* Remove white background */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none;
    /* Remove shadow */
    flex-shrink: 0;
}

.scroll-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

/* animations */
.track-left {
    animation: scroll-left 20s linear infinite;
}

.track-right {
    animation: scroll-right 20s linear infinite;
}

/* Keyframe animations */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}



/* Modern Service Cards */
.service-modern-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: white;
    height: 100%;
}

.service-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-modern-card:hover .service-overlay {
    opacity: 1;
}

.service-modern-card:hover .service-image {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.service-content {
    text-align: center;
    padding: 2rem;
    color: white;
}

.service-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.service-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #333;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-image-wrapper {
        height: 220px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }
}




.luxury-preview-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #4f46e5, #3b82f6);
}

.bg-danger-gradient {
    background: linear-gradient(135deg, #f43f5e, #e11d48);
}

.shadow-primary {
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.shadow-danger {
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.3);
}

.luxury-btn-outline {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    border: 2px solid #edeff2;
    color: #4b5563;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
}

.avatar-shimmer {
    width: 60px;
    height: 60px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #9ca3af;
}


.flip-card {
    height: 380px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.flip-card-back {
    transform: rotateY(180deg);
}

@media (max-width: 768px) {
    .flip-card {
        height: 350px;
    }

    .luxury-preview-card {
        padding: 2rem 1.5rem;
    }
}

/* Expert Panel Styles */
.expert-item {
    transition: all 0.3s ease;
}

.expert-item:hover {
    transform: translateY(-3px);
}

.expert-avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.expert-avatar-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}


.service-link {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.service-link:hover {
    color: #3b82f6;
}

.project-detail {
    max-width: 900px;
    margin: 0 auto;
}

.project-header {
    text-align: center;
}

.project-category {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-weight: 500;
}

.project-gallery {
    margin: 3rem 0;
}

.project-highlights {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.investment-details {
    background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.investment-item {
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.project-navigation a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.project-navigation a:hover {
    background: #f8f9fa;
    color: #3b82f6;
}

.project-cta {
    background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .project-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .investment-grid {
        grid-template-columns: 1fr;
    }
}

.projects-hero {
    background: url('img/abouthotel.png') no-repeat center center/cover;
    min-height: 450px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
}

.project-showcase {
    background: #fdfdfd;
}

/* PROJECTS TRACK RECORD */
.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.track-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.track-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: #4b5563;
}

.track-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #ffc107;
    font-size: 0.8rem;
}

.capability-card {
    transition: all 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    border-color: #ffc107 !important;
}

.expertise-highlight-card {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pmc-stat-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 5px 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.stat-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffc107;
}

.active-honor-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 12px;
}

.circle-outer {
    display: inline-block;
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 50%;
    padding: 15px;
    animation: pulse-ring 2s infinite;
}

.circle-inner {
    width: 140px;
    height: 140px;
    background: #ffc107;
    color: #111;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
}

.project-luxury-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.project-luxury-card:hover {
    transform: translateY(-10px);
}

.card-img-container {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
}

.card-tag.gold {
    background: #d4af37;
}

.card-tag.blue {
    background: #0d6efd;
}

.card-tag.dark {
    background: #333;
}

.card-content {
    padding: 1.5rem;
}

.project-meta {
    border-top: 1px solid #eee;
    padding-top: 1rem;
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
}

.meta-item span {
    color: #888;
    margin-right: 5px;
}

.redevelopment-glass-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

.transaction-card {
    background: #f8faff;
    border: 1px solid #e1e8f0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.transaction-card:hover {
    background: white;
    border-color: #0d6efd;
}

.transaction-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #eef2ff;
    color: #4f46e5;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
}

.project-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #1a1a1a;
    padding: 40px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.stat-box h4 {
    font-size: 2rem;
    font-weight: bold;
    color: #ffc107;
    margin-bottom: 5px;
}

.stat-box p {
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.spiritual-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.opportunity-pill {
    background: #f7fff7;
    border: 1px solid #e0eee0;
    border-radius: 15px;
}

.opportunity-icon {
    font-size: 2rem;
}

.spiritual-stats-banner {
    background: linear-gradient(135deg, #f0f4ff, #fdfdff);
    border: 1px solid #ddecff;
}

.spiritual-stats-banner strong {
    font-size: 1.5rem;
    color: #0d6efd;
}

@media (max-width: 991px) {
    .project-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .project-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 80px;
}

/* Affiliates Page V2 Styles */
.affiliates-hero-v2 {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('img/abouthotel.png') no-repeat center center/cover;
    min-height: 400px;
    border-radius: 0 0 40px 40px;
}


.affiliates-divider-v2 {
    width: 50px;
    height: 3px;
    border-radius: 2px;
}

.affiliates-card-img-v2 {
    height: 160px;
    object-fit: cover;
}

.affiliates-card-text-v2 {
    font-size: 13px;
    line-height: 1.4;
}

.affiliates-card-badge-v2 {
    font-size: 10px;
}

.success-story-img-container-v2 {
    height: 200px;
}

.success-story-badge-v2 {
    font-size: 12px;
}

.leasing-hero-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #667eea 100%);
    position: relative;
    overflow: hidden;
    padding-top: 120px !important;
    /* Added to clear fixed navbar */
}

.leasing-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"><animate attributeName="cy" values="20;80;20" dur="3s" repeatCount="indefinite"/></circle><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.05)"><animate attributeName="cy" values="80;20;80" dur="4s" repeatCount="indefinite"/></circle></svg>');
    pointer-events: none;
}

.timeline-container {
    position: relative;
    padding: 4rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    z-index: 2;
}

.timeline-card {
    position: relative;
    border-radius: 25px;
    text-align: center;
}

.timeline-card .feature-list,
.timeline-card ul {
    display: inline-block;
    text-align: left;
}

.timeline-number {
    position: absolute;
    left: -3rem;
    top: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.timeline-number.alt {
    left: auto;
    right: -3rem;
    background: linear-gradient(135deg, #11998e, #38ef7d);
}

.timeline-item.reverse .timeline-number {
    left: auto !important;
    right: -3rem !important;
}

.owner-services-section .service-panel {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.service-panel ul {
    display: inline-block;
    text-align: left;
    margin-top: 0.5rem;
}

.hover-lift:hover {
    transform: translateY(-15px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

.service-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}



.protection-box {
    background: linear-gradient(135deg, #fff7ed 0%, #fef2f2 50%, #f8fafc 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: none;
}

.protection-box-title,
.protection-box-desc {
    color: #0f172a !important;
    position: relative;
    z-index: 1;
}

.protection-box-desc {
    color: #334155 !important;
}

.owner-services-section .protection-stats .stat-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 20px;
    min-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.owner-services-section .protection-stats .stat-item:hover {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.owner-services-section .protection-stats .stat-item-title,
.owner-services-section .protection-stats .stat-item-subtitle {
    color: #0f172a !important;
}

.owner-services-section .protection-stats .stat-item-subtitle {
    color: #475569 !important;
    font-weight: 500;
}

.protection-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.owner-badge .badge {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}


@media (max-width: 992px) {
    .timeline-line {
        left: 5%;
    }

    .timeline-number,
    .timeline-number.alt {
        left: 5% !important;
        right: auto !important;
    }

    .timeline-item.reverse {
        flex-direction: column-reverse !important;
    }
}


/* Premium Animations & Utilities */

.ma-hero-section {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    min-height: 70vh;
    padding-top: 120px !important;
    position: relative;
    overflow: hidden;
}

.premium-stat-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.premium-stat-box:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.ma-strategic-container {
    background: #111827;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.ma-glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    z-index: 1;
}

.ma-advice-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ma-advice-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.ma-icon-glow {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.ma-special-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ma-icon-gradient {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.floating-card-group {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 0;
    left: 20%;
    width: 350px;
    animation: float1 6s ease-in-out infinite;
}

.card-2 {
    top: 120px;
    right: 10%;
    width: 300px;
    animation: float2 7s ease-in-out infinite;
}

.card-3 {
    bottom: 50px;
    left: 50%;
    width: 250px;
    animation: float3 8s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(-1deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(2deg);
    }
}

/* Improved Processes Section */
.process-section {
    background: #f8f9fa;
    position: relative;
}

.divider {
    width: 60px;
    height: 4px;
    background: #0d6efd;
    border-radius: 2px;
}

.step-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.step-header-new {
    position: relative;
    border-bottom: 0;
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    backdrop-filter: blur(5px);
}

.icon-watermark {
    position: absolute;
    bottom: -10px;
    right: -10px;
    opacity: 0.15;
    transform: rotate(-15deg);
}

.network-section {
    background: white;
}


.animate-reveal {
    animation: reveal 1s ease-out;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .floating-card {
        position: static !important;
        margin-bottom: 2rem;
        width: 100% !important;
    }

    .step-number {
        position: relative;
        top: 0;
        left: 0;
        margin: 0 auto 1rem;
    }

    .step-header {
        min-height: auto;
        text-align: center;
    }

    .step-header i {
        position: relative;
        transform: none;
        opacity: 0.2;
    }
}

/* Land Acquisition Page */
.land-advisory-hero {
    background: linear-gradient(135deg, #0a2e38 0%, #104d5d 50%, #1a6b8c 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    border-radius: 0 0 40px 40px;
}

.land-hero-accent {
    top: -10%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.land-adv-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.land-adv-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.land-adv-icon-container {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 110, 253, 0.2);
    color: #0d6efd;
}

.land-adv-icon-green {
    background: rgba(25, 135, 84, 0.2) !important;
    color: #198754 !important;
}

.land-adv-icon-cyan {
    background: rgba(13, 202, 240, 0.2) !important;
    color: #0dcaf0 !important;
}

.land-adv-icon-gold {
    background: rgba(255, 193, 7, 0.2) !important;
    color: #ffc107 !important;
}

.land-btn-outline-glass {
    background: rgba(255, 255, 255, 0.1);
}

.land-image-bracket-tl {
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-top: 4px solid #ffc107;
    border-left: 4px solid #ffc107;
    z-index: 1;
}

.land-image-bracket-br {
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-bottom: 4px solid #ffc107;
    border-right: 4px solid #ffc107;
    z-index: 1;
}

.land-main-img {
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.land-floating-insight {
    bottom: 40px;
    left: -20px;
    max-width: 250px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 4;
}

.land-divider-accent {
    width: 50px;
    height: 3px;
    border-radius: 2px;
}

.land-risk-card-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.land-risk-card-2 {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.land-risk-card-3 {
    background: #ffc107;
}

.land-first-time-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1d4ed8 100%);
}

.land-star-overlay {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
    background-size: 50px 50px;
}

.land-step-box {
    background: rgba(255, 255, 255, 0.1);
}

.land-step-num {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.land-final-section {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
}


/* ABOUT COMPONENT STYLES */
.bg-warning-soft {
    background-color: rgba(255, 193, 7, 0.15);
}

.shadow-luxury {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.experience-floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    z-index: 2;
}

@media (max-width: 991px) {
    .experience-floating-card {
        left: 20px;
        bottom: -20px;
    }
}

.about-image-frame {
    border: 1px solid rgba(0, 0, 0, 0.05);
}