/* ========================================
   MEGACITY SOLUTIONS - CUSTOM STYLING
   ======================================== */

:root {
    --primary-color: #8B1538;         /* Maroon */
    --secondary-color: #00BCD4;       /* Cyan Blue */
    --accent-color: #00BCD4;          /* Cyan Blue */
    --light-color: #FFFFFF;           /* White */
    --dark-color: #2C3E50;            /* Dark Blue */
    --success-color: #00BCD4;         /* Cyan for success */
    --danger-color: #8B1538;          /* Maroon for danger */
    --warning-color: #FF9800;         /* Orange for warning */
    --info-color: #00BCD4;            /* Cyan for info */
    --bg-light: #F5F7FA;              /* Light gray background */
    --bg-dark: #8B1538;               /* Dark maroon background */
    --text-dark: #2C3E50;             /* Dark text */
    --text-light: #FFFFFF;            /* Light text */
    --border-radius: 1rem;
    --transition-duration: 0.3s;
    
    /* Social Media Colors */
    --facebook: #1877F2;
    --twitter: #1DA1F2;
    --linkedin: #0A66C2;
    --instagram: #E4405F;
    --youtube: #FF0000;
    --tiktok: #000000;
    --whatsapp: #25D366;
    --purple: #9C27B0;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    font-weight: 700;
}

a {
    text-decoration: none;
    transition: all var(--transition-duration) ease;
}

button {
    transition: all var(--transition-duration) ease;
}

img {
    transition: all var(--transition-duration) ease;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.scale-in {
    animation: scaleIn 0.8s ease-out forwards;
    opacity: 0;
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar-custom {
    background: #000000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.5rem;
    color: white !important;
    transition: all var(--transition-duration) ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
    color: var(--secondary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: white !important;
    margin: 0 0.5rem;
    position: relative;
    transition: color var(--transition-duration) ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--secondary-color);
    transition: all var(--transition-duration) ease;
    transform: translateX(-50%);
}

.navbar-toggler-white {
    border-color: white;
}

.navbar-toggler-white .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.navbar-home {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.navbar-home .nav-link {
    color: white !important;
}

.navbar-home .nav-link:hover {
    color: #e0e7ff !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    animation: fadeInUp 0.3s ease-out;
}

.dropdown-item {
    transition: all var(--transition-duration) ease;
    padding: 0.75rem 1.5rem;
}

.dropdown-item:hover {
    background: #f0f4ff;
    color: var(--primary-color);
    transform: translateX(5px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Hero Top Bar Navigation */
.hero-top {
    position: relative;
    z-index: 10;
}

.hero-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.hero-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.hero-links a:hover::after {
    width: 100%;
}

.hero-links a:hover {
    color: var(--secondary);
}

/* Mobile Hero Menu */
.hero-mobile-menu {
    background: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.3s ease;
}

.hero-mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

/* Hero Logo Styling */
.hero-top img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.hero-top img:hover {
    transform: scale(1.05);
}

.logo-hero {
    height: 80px !important;
    width: auto !important;
}

.hero-mobile-menu a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.hero-mobile-menu a:last-child {
    border-bottom: none;
}

.hero-mobile-menu a:hover {
    color: var(--secondary);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 4rem;
}

.hero-text h1 {
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    font-size: 4.5rem;
    line-height: 1.2;
    max-width: 100%;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    animation: fadeInUp 1s ease-out forwards;
}

.text-purple {
    color: var(--purple) !important;
}

.text-maroon {
    color: var(--primary-color) !important;
}

.hero-text .lead {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: #e0e7ff;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-duration) ease;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
}

.hero-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ========================================
   HERO SEARCH BAR
   ======================================== */

.search-bar-section {
    background: white;
    padding: 1.5rem 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
    margin-top: -60px;
}

/* Search Toggle Button */
.search-toggle-container {
    display: flex;
    justify-content: center;
    padding: 0.5rem 0;
}

.search-toggle-btn {
    background: linear-gradient(135deg, #8B1538, #6A0F2A);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.2);
}

.search-toggle-btn:hover {
    background: linear-gradient(135deg, #6A0F2A, #5A0820);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(139, 21, 56, 0.3);
}

.search-toggle-btn .toggle-icon {
    transition: transform 0.4s ease;
    font-size: 0.85rem;
}

.search-toggle-btn.active .toggle-icon {
    transform: rotate(180deg);
}

/* Search Form Box */
.hero-search-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.5rem;
    padding: 2.5rem;
    margin-top: 1.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(139, 21, 56, 0.1);
    position: relative;
    z-index: 20;
    max-height: 1000px;
    overflow: hidden;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: scaleY(1);
    transform-origin: top;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.320, 1), 
                opacity 0.4s cubic-bezier(0.23, 1, 0.320, 1),
                padding 0.4s cubic-bezier(0.23, 1, 0.320, 1),
                margin 0.4s cubic-bezier(0.23, 1, 0.320, 1),
                visibility 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.hero-search-box.collapsed {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: 0 !important;
    box-shadow: none !important;
    border-color: transparent !important;
    visibility: hidden;
}

.hero-search-box h3 {
    color: #8B1538;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.hero-search-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    align-items: end;
}

@media (min-width: 768px) {
    .hero-search-form {
        grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr auto;
    }
}

.hero-search-form .form-group {
    margin-bottom: 0;
}

.hero-search-form .form-label {
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: block;
}

.hero-search-form .form-control,
.hero-search-form .form-select {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.hero-search-form .form-control:focus,
.hero-search-form .form-select:focus {
    border-color: #8B1538;
    box-shadow: 0 0 0 3px rgba(139, 21, 56, 0.1);
    outline: none;
}

.hero-search-btn {
    background: linear-gradient(135deg, #8B1538, #6A0F2A);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.hero-search-btn:hover {
    background: linear-gradient(135deg, #6A0F2A, #5A0820);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
    color: white;
}

.hero-search-btn:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .hero-search-form {
        grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
    }
}

@media (max-width: 1024px) {
    .hero-search-form {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-search-btn {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .search-bar-section {
        padding: 1rem 0;
        margin-top: -40px;
    }
    
    .hero-search-box {
        padding: 1.5rem;
        margin-top: 1rem;
    }

    .hero-search-form {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-search-btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
    
    .search-toggle-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   PAGE HEADER
   ======================================== */

.page-header {
    background: linear-gradient(135deg, #8B1538 0%, #00BCD4 100%);
    color: white;
    animation: fadeIn 0.6s ease-out;
}

.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3.5rem;
    animation: slideInLeft 0.8s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

.page-header .lead {
    font-size: 1.3rem;
    opacity: 0.95;
    animation: slideInLeft 0.8s ease-out 0.1s both;
    font-weight: 500;
}

/* ========================================
   STATISTICS
   ======================================== */

.statistics-section {
    background: linear-gradient(135deg, #F5F7FA 0%, #E8EEF5 100%);
}

.stat-card {
    background: white;
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.stat-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

.stat-item {
    padding: 2rem;
    transition: all 0.4s ease;
}

.stat-item .stat-icon {
    font-size: 3rem;
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-item .stat-icon {
    transform: scale(1.1) rotateZ(5deg);
}

.stat-item h3 {
    font-size: 2.5rem;
    animation: fadeIn 0.8s ease-out;
    margin: 1rem 0 0.5rem 0;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
}

/* Carousel fade effect */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.6s;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

/* Mobile carousel styling */
@media (max-width: 768px) {
    .stat-card {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        top: 50%;
        width: 40px;
        height: 40px;
        background-color: var(--primary-color);
        border-radius: 50%;
        opacity: 0.8;
        margin-top: 100px;
    }
    
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }
    
    .carousel-control-prev {
        left: -60px;
    }
    
    .carousel-control-next {
        right: -60px;
    }
}

/* ========================================
   HOME CTA SECTION
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #C71F5D 50%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border: none;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.4);
}

.cta-section .btn-outline-light {
    position: relative;
    z-index: 1;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.4s ease;
}

.cta-section .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .cta-btn {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .cta-section .btn-outline-light {
        margin-top: 2rem;
        width: 100% !important;
    }

/* ========================================
   PROPERTY CARDS
   ======================================== */

.property-card {
    border: none;
    transition: all var(--transition-duration) ease;
    overflow: hidden;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.property-image {
    position: relative;
    overflow: hidden;
}

.property-img {
    transition: transform 0.6s ease;
}

.property-card:hover .property-img {
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-duration) ease;
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-overlay .btn {
    transform: translateY(20px);
    transition: transform var(--transition-duration) ease;
}

.property-card:hover .property-overlay .btn {
    transform: translateY(0);
}

.card-title {
    transition: color var(--transition-duration) ease;
    min-height: 2.5rem;
    display: flex;
    align-items: center;
}

.property-card:hover .card-title {
    color: var(--primary-color);
}

/* Premium Property Card */
.featured-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.featured-title {
    color: var(--primary-color);
}

.featured-title-accent {
    color: var(--secondary-color);
}

.property-card-premium {
    border: none;
    transition: all 0.4s ease;
    overflow: hidden;
    background: white;
}

.property-card-premium:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.15);
}

.property-image-wrapper {
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
}

.property-image-wrapper img {
    transition: transform 0.6s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-card-premium:hover .property-image-wrapper img {
    transform: scale(1.1);
}

.property-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.property-card-premium:hover .property-overlay-premium {
    opacity: 1;
}

.overlay-content .btn {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.property-card-premium:hover .overlay-content .btn {
    transform: translateY(0);
}

.property-features {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item span {
    display: block;
    font-size: 1.1rem;
}

.feature-item small {
    display: block;
    color: #999;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   BLOG CARDS
   ======================================== */

.blog-card {
    border: none;
    transition: all var(--transition-duration) ease;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-img {
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.1);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all var(--transition-duration) ease;
    padding: 0.6rem 1.5rem;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #6A0F2A;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.4rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
}

/* ========================================
   FORM ELEMENTS
   ======================================== */

.form-control,
.form-select {
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    transition: all var(--transition-duration) ease;
    font-weight: 500;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 255, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* ========================================
   CARDS
   ======================================== */

.card {
    border: none;
    border-radius: var(--border-radius);
    transition: all var(--transition-duration) ease;
    overflow: hidden;
}

.card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* ========================================
   FOOTER
   ======================================== */

footer {
    background: #1f2937;
    margin-top: auto;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-duration) ease;
}

footer a:hover {
    color: var(--primary-color);
}

.footer-link {
    transition: all var(--transition-duration) ease;
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background: var(--secondary-color);
    transition: width var(--transition-duration) ease;
}

.footer-link:hover {
    color: white !important;
}

.footer-link:hover::after {
    width: 100%;
}

/* Professional Footer Styling */
.footer-professional {
    background: linear-gradient(180deg, #1a202c 0%, #0f1419 100%);
    color: white;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1538, #00BCD4, #FF6B35, #8B1538);
    background-size: 200% 100%;
}

.footer-main {
    padding: 4rem 0 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section h5,
.footer-section h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.footer-section h5 {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-section h5 i {
    color: #00BCD4;
}

.footer-section h6 {
    font-size: 1.05rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: white;
    position: relative;
    padding-bottom: 1rem;
}

.footer-section h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #8B1538, #00BCD4);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #8B1538, #00BCD4);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: white;
    transform: translateX(4px);
}

.footer-link:hover::after {
    width: 100%;
}

.contact-item-footer {
    transition: all 0.3s ease;
}

.contact-item-footer:hover {
    padding-left: 0.5rem;
}

.social-links-footer {
    margin-top: 1.5rem;
}

.social-footer-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(139, 21, 56, 0.2);
    color: #8B1538;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-footer-link:hover {
    background: linear-gradient(135deg, #8B1538, #00BCD4);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(139, 21, 56, 0.3);
}

.footer-link:hover::after {
    width: 100%;
}

.social-links-footer {
    margin-bottom: 1rem;
}

.social-footer-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 2px solid transparent;
}

.social-footer-link:hover {
    background: linear-gradient(135deg, #8B1538, #6A0F2A);
    border-color: #00BCD4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.3);
    color: white;
}

.contact-item-footer {
    padding: 1rem;
    border-left: 3px solid #8B1538;
    border-radius: 0.5rem;
    background: rgba(139, 21, 56, 0.05);
}

.contact-item-footer p {
    margin-bottom: 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-duration) ease;
    color: white;
    margin-right: 0.5rem;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links .facebook:hover {
    background: var(--facebook);
}

.social-links .twitter:hover {
    background: #000000;
}

.social-links .instagram:hover {
    background: var(--instagram);
}

.social-links .tiktok:hover {
    background: linear-gradient(135deg, #000000 0%, #25f4ee 100%);
}

.social-links .blog:hover {
    background: #FF6B35;
}

.social-links .youtube:hover {
    background: var(--youtube);
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

section h2,
section h3 {
    margin-bottom: 3rem;
}

/* ========================================
   BADGES
   ======================================== */

.badge {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-duration) ease;
}

.badge:hover {
    transform: scale(1.05);
}

/* ========================================
   TRANSITIONS FOR IMAGES
   ======================================== */

img {
    transition: all var(--transition-duration) ease;
}

.object-fit-cover {
    object-fit: cover;
    object-position: center;
}

/* ========================================
   SCROLL EFFECTS
   ======================================== */

.sticky-top {
    transition: all var(--transition-duration) ease;
}

/* ========================================
   MODAL STYLES
   ======================================== */

.modal-content {
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease-out;
}

.modal-header {
    border-bottom: 1px solid #e5e7eb;
}

/* ========================================
   ACCORDION STYLES
   ======================================== */

.accordion-button {
    font-weight: 600;
    transition: all var(--transition-duration) ease;
}

.accordion-button:not(.collapsed) {
    background: #f0f4ff;
    color: var(--primary-color);
}

.accordion-button:hover {
    background: #f0f4ff;
    color: var(--primary-color);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-text .lead {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-text {
        padding: 2rem;
        align-items: center;
        text-align: center;
    }

    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .stat-item {
        margin-bottom: 1rem;
    }

    .property-card {
        margin-bottom: 1rem;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.cursor-pointer {
    cursor: pointer;
}

.object-fit-cover {
    object-fit: cover;
}

/* ========================================
   ARTICLE STYLES
   ======================================== */

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-body h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.article-body ul,
.article-body ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem;
    margin: 1.5rem 0;
    background: #f8f9fa;
    font-style: italic;
    color: #6b7280;
}

.article-body code {
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-family: 'Monaco', 'Courier New', monospace;
    color: var(--primary-color);
}

.article-body pre {
    background: #1f2937;
    color: #f3f4f6;
    padding: 1.5rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.gallery-thumb {
    cursor: pointer;
    transition: all var(--transition-duration) ease;
    border: 2px solid transparent;
}

.gallery-thumb:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.contact-item {
    transition: all var(--transition-duration) ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.value-card {
    transition: all var(--transition-duration) ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    transition: all var(--transition-duration) ease;
}

/* ========================================
   SOCIAL SIDEBAR & FLOATING BUTTONS
   ======================================== */

.social-sidebar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background-color: #1877F2;
}

.social-icon.facebook:hover {
    background-color: #0d66d0;
}

.social-icon.twitter {
    background-color: #000000;
}

.social-icon.twitter:hover {
    background-color: #1a1a1a;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover {
    opacity: 0.8;
}

.social-icon.youtube {
    background-color: #FF0000;
}

.social-icon.youtube:hover {
    background-color: #cc0000;
}

.social-icon.tiktok {
    background: linear-gradient(135deg, #000000 0%, #25f4ee 100%);
}

.social-icon.tiktok:hover {
    opacity: 0.8;
}

.social-icon.blog {
    background-color: #FF6B35;
}

.social-icon.blog:hover {
    background-color: #e55a2b;
}

.social-icon.whatsapp {
    background-color: #25D366;
}

.social-icon.whatsapp:hover {
    background-color: #20ba5a;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    animation: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

/* Mobile Responsive for Social Sidebar */
@media (max-width: 768px) {
    .social-sidebar {
        right: 10px;
        gap: 10px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.5rem;
    }
}

/* ========================================
   ABOUT PAGE STYLES
   ======================================== */

.vision-card, .mission-card {
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.vision-card {
    border-left-color: var(--primary-color);
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.15);
}

.mission-card {
    border-left-color: var(--secondary-color);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.15);
}

.value-card {
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(5deg);
}

/* ========================================
   PROFESSIONAL ABOUT PAGE STYLING
   ======================================== */

/* About Hero Section - Premium Gradient */
.about-hero-section {
    background: linear-gradient(135deg, #8B1538 0%, #C71F5D 50%, #00BCD4 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.about-highlight {
    background: linear-gradient(135deg, #00BCD4 0%, #26C6DA 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Vision & Mission Cards - Vibrant Gradients */
.about-vision-mission {
    padding: 4rem 0;
}

.vision-mission-card {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.95) 0%, rgba(199, 31, 93, 0.85) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vision-card-custom {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.95) 0%, rgba(199, 31, 93, 0.85) 100%) !important;
}

.mission-card-custom {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.95) 0%, rgba(38, 198, 218, 0.85) 100%) !important;
}

.vision-mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.vision-mission-card:hover .card-icon-wrapper {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(10deg) scale(1.1);
}

.text-white-85 {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

/* Company Slogan Section - Vibrant */
.company-slogan-section {
    background: linear-gradient(135deg, #8B1538 0%, #C71F5D 50%, #00BCD4 100%);
    padding: 3.5rem 0;
    position: relative;
}

.slogan-wrapper {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Core Values Section */
.about-values-section {
    background: #F8FAFB;
    padding: 4rem 0;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.value-card-premium {
    background: #FFFFFF;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.value-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B1538 0%, #00BCD4 100%);
}

.value-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(139, 21, 56, 0.15);
}

.value-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: white;
    font-size: 2.2rem;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
}

.value-card-premium:hover .value-icon-circle {
    transform: scale(1.15) rotate(-10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.about-why-choose {
    padding: 4rem 0;
}

.reason-group {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: #F8FAFB;
    border-left: 4px solid var(--secondary-color);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: #F0F8FF;
    border-left-color: var(--primary-color);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.1);
}

.reason-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #8B1538 0%, #C71F5D 100%);
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.reason-item:hover .reason-number {
    background: linear-gradient(135deg, #00BCD4 0%, #26C6DA 100%);
    transform: scale(1.1);
}

.reason-item h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #8B1538 0%, #00BCD4 100%);
}

.about-image-wrapper img {
    transition: transform 0.5s ease;
    display: block;
    min-height: 400px;
    object-fit: cover;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Leadership Section */
.about-leadership-section {
    background: #FFFFFF;
    padding: 4rem 0;
}

.ceo-image-wrapper {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.ceo-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #8B1538 0%, #C71F5D 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ceo-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* CTA Section - Premium */
.about-cta-section {
    background: linear-gradient(135deg, #8B1538 0%, #C71F5D 50%, #00BCD4 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.about-cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.about-cta-section .btn-light {
    background: #FFFFFF;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.about-cta-section .btn-light:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
}

.about-cta-section .btn-outline-light {
    color: white;
    border-color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-cta-section .btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
    transform: translateY(-3px);
}

/* Animation Delay Classes */
.fade-in-delay-1 {
    animation-delay: 0.15s;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
}

/* Mobile Responsive - Center Headings on Small Screens */
@media (max-width: 992px) {
    .about-hero-section h1 {
        text-align: center;
    }

    .vision-mission-card h3 {
        text-align: center;
    }
    
    .section-header h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 3rem 0;
    }

    .about-hero-section h1 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .about-hero-section p {
        text-align: center;
        font-size: 1rem;
    }

    .vision-mission-card {
        padding: 2rem 1.5rem;
    }

    .vision-mission-card h3 {
        text-align: center;
        font-size: 1.5rem;
    }

    .about-why-choose {
        padding: 2rem 0;
    }

    .reason-item {
        padding: 1rem;
    }

    .reason-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .ceo-title {
        font-size: 1.5rem;
    }

    .about-image-wrapper img {
        min-height: 300px;
    }

    .about-cta-section h2 {
        font-size: 2rem;
    }

    .about-cta-section p {
        font-size: 0.95rem;
    }

    .about-cta-section .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 2rem 0;
    }

    .about-hero-section h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .about-hero-section p {
        font-size: 0.9rem;
        text-align: center;
    }

    .display-4 {
        font-size: 1.8rem;
    }

    .vision-mission-card {
        padding: 1.5rem 1rem;
    }

    .vision-mission-card h3 {
        font-size: 1.3rem;
    }

    .value-card-premium {
        padding: 1.5rem 1rem;
    }

    .value-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .value-card-premium h5 {
        font-size: 1rem;
    }

    .reason-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .reason-item h5 {
        font-size: 1rem;
    }

    .reason-item p {
        font-size: 0.9rem;
    }

    .ceo-image-wrapper {
        margin-bottom: 2rem;
    }

    .ceo-title {
        font-size: 1.3rem;
    }

    .about-cta-section {
        padding: 2.5rem 0;
    }

    .about-cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-cta-section p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .about-cta-section .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   BLOG AND PROPERTIES STYLING
   ======================================== */

.blog-search-btn {
    background: #FF6B35;
    color: white;
    border: none;
}

.blog-search-btn:hover {
    background: #E55A1F;
}

.blog-category-title {
    color: #8B1538;
}

.blog-search-title {
    color: #FF6B35;
}

.blog-recent-title {
    color: #8B1538;
}

.blog-card-featured {
    background: linear-gradient(135deg, #8B1538, #6A0F2A);
    position: absolute;
    top: 12px;
    left: 12px;
}

.blog-card-category {
    background: #FF6B35;
    position: absolute;
    top: 12px;
    right: 12px;
}

.blog-card-border {
    border-top: 4px solid #FF6B35;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

.blog-read-more-btn {
    background: #FF6B35;
    color: white;
    border: none;
}

.blog-read-more-btn:hover {
    background: #E55A1F;
}

.property-filter-title {
    color: #8B1538;
    border-left: 4px solid #8B1538;
    padding-left: 0.75rem;
}

.property-card-border {
    border-top: 4px solid #8B1538;
}

.property-card-title {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

.property-card-price {
    color: #8B1538;
}

.property-card-view-btn {
    background: #8B1538;
    color: white;
    border: none;
}

.property-card-view-btn:hover {
    background: #6A0F2A;
}

/* Properties List Page Styling */
.properties-page-title {
    color: #8B1538;
}

.property-search-btn {
    background: #8B1538;
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.property-search-btn:hover {
    background: #6A0F2A;
    transform: translateY(-2px);
}

.property-type-gradient {
    background: linear-gradient(135deg, #8B1538, #6A0F2A) !important;
    position: absolute;
    top: 12px;
    left: 12px;
}

.property-overlay-dark {
    background: rgba(139, 21, 56, 0.85) !important;
}

.bg-dark-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%) !important;
}

.property-image-height {
    height: 280px;
}

.no-properties-icon {
    font-size: 3rem;
}

/* Property Detail Page Styling */
.property-carousel-image {
    height: 500px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(139, 21, 56, 0.7);
    border-radius: 50%;
    padding: 10px;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #8B1538;
}

.carousel-indicators [data-bs-target] {
    background-color: rgba(139, 21, 56, 0.5);
    border: none;
}

.carousel-indicators .active {
    background-color: #8B1538;
}

.property-stat-icon-lg {
    font-size: 1.5rem;
}

.property-detail-sidebar-top {
    top: 100px;
}

.agent-avatar-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-avatar-icon {
    font-size: 2rem;
}

.share-link-btn {
    transition: all 0.3s ease;
}

.share-link-btn:hover {
    transform: translateY(-2px);
}

/* Contact Page Styling */
.contact-icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8B1538, #00BCD4);
    color: white;
    border-radius: 10px;
}

.contact-item-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #8B1538;
}

.contact-section-title {
    font-family: 'Poppins', sans-serif;
    color: #8B1538;
}

.contact-form-card {
    border-top: 4px solid #8B1538 !important;
}

.form-required {
    color: #8B1538;
}

.contact-form-submit {
    background: #8B1538;
    border: none;
}

/* Property Detail Page Styling */
.property-type-badge-detail {
    background: linear-gradient(135deg, #8B1538, #6A0F2A);
    color: white;
}

.property-status-badge {
    background: #00BCD4;
    color: white;
}

.property-price-detail {
    color: #8B1538;
}

.property-stat-icon {
    color: #8B1538;
}

.property-stat-icon-secondary {
    color: #00BCD4;
}

.property-title {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

.property-icon {
    color: #8B1538;
}

.property-icon-cyan {
    color: #00BCD4;
}

.property-card {
    transition: all 0.3s ease;
}

.property-card:hover {
    transform: translateY(-8px);
}

.blog-img {
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.05);
}

.transition-3d {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.transition-3d:hover {
    transform: translateY(-8px);
}
