/* Tenant Landing Page Styles */

/* Hero Section */
.hero_single {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    min-height: 400px;
    position: relative;
}

.hero_single.version_2 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hero_single .wrapper {
    position: relative;
    z-index: 2;
}

.hero_single h3 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero_single p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Custom Search Input */
.custom-search-input-2 {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.custom-search-input-2 select,
.custom-search-input-2 input[type="text"] {
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 15px;
    width: 100%;
    text-align: center;
}

.custom-search-input-2 .nice-select {
    text-align: center !important;
}

.custom-search-input-2 .nice-select .current {
    text-align: center !important;
    display: block;
}

.custom-search-input-2 input[type="submit"] {
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.custom-search-input-2 input[type="submit"]:hover {
    background: #5568d3;
}

/* Main Titles */
.main_title_3 {
    text-align: center;
    margin-bottom: 40px;
}

.main_title_3 h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.main_title_3 p {
    color: #666;
    font-size: 1.1rem;
}

.main_title_3 span {
    display: block;
    width: 60px;
    height: 3px;
    background: #667eea;
    margin: 0 auto 20px;
}

/* Grid Item */
.grid_item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.grid_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.grid_item figure {
    position: relative;
    margin: 0;
    overflow: hidden;
}

.grid_item figure img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.grid_item:hover figure img {
    transform: scale(1.05);
}

.grid_item .info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 20px;
    color: #fff;
}

.grid_item .info h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

/* Call Section */
.call_section {
    background: #f8f9fa;
    padding: 60px 0;
    position: relative;
}

.call_section .wrapper {
    position: relative;
}

.main_title_2 {
    text-align: center;
    margin-bottom: 50px;
}

.main_title_2 h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.main_title_2 p {
    color: #666;
    font-size: 1.1rem;
}

.main_title_2 span {
    display: block;
    margin-bottom: 15px;
}

.main_title_2 span em {
    display: block;
    width: 60px;
    height: 3px;
    background: #667eea;
    margin: 0 auto;
}

/* Box How */
.box_how {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.box_how:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}

.box_how i {
    font-size: 3.5rem;
    color: #667eea;
    margin-bottom: 20px;
    display: block;
}

.box_how h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.box_how p {
    color: #666;
    line-height: 1.6;
}

.box_how span {
    display: block;
    width: 40px;
    height: 2px;
    background: #667eea;
    margin: 20px auto 0;
}

/* Pattern Background */
.pattern {
    position: relative;
}

/* Utilities */
.margin_60_35 {
    padding: 60px 0 35px;
}

.margin_80_55 {
    padding: 80px 0 55px;
}

.add_bottom_30 {
    margin-bottom: 30px;
}

.add_top_30 {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero_single h3 {
        font-size: 2rem;
    }
    
    .hero_single p {
        font-size: 1rem;
    }
    
    .custom-search-input-2 {
        padding: 15px;
    }
}

@media (max-width: 767px) {
    .hero_single {
        padding: 60px 0;
    }
    
    .grid_item figure img {
        height: 200px;
    }
}
