/*
	Theme Name: Hello Elementor
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.6
	Stable tag: 3.4.6
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
/* Add this CSS in Elementor > Custom CSS or in Appearance > Customize > Additional CSS */

.floor-plan-tabs {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.floor-plan-tabs .elementor-tab-title {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 30px;
    margin: 5px;
    font-weight: 600;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.floor-plan-tabs .elementor-tab-title:hover {
    background: #fff5f2;
    border-color: #ff7847;
    color: #ff7847;
    transform: translateY(-2px);
}
button.tab-btn {
    padding: 10px 20px !important;
}
.floor-plan-tabs .elementor-tab-title.elementor-active {
    background: linear-gradient(135deg, #ff7847 0%, #ff5722 100%);
    color: white;
    border-color: #ff7847;
}

.floor-plan-content {
    display: flex;
    gap: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 20px;
}

.floor-plan-left {
    flex: 1;
    text-align: center;
}

.floor-plan-box {
    width: 280px;
    height: 280px;
    border: 3px dashed #d0d0d0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    margin: 0 auto 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}
h1.entry-title {
    display: block;
}



.floor-plan-box:hover {
    border-color: #ff7847;
    background: #fff5f2;
}

.floor-plan-box img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.floor-plan-icon {
    font-size: 80px;
    color: #c0c0c0;
}

.floor-plan-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.floor-plan-right {
    flex: 1;
}

.plan-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 42px;
    font-weight: 800;
    color: #ff7847;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #ff7847;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 120, 71, 0.3);
}

.feature-card:hover * {
    color: white !important;
}

.feature-icon {
    font-size: 28px;
    color: #ff7847;
    margin-bottom: 10px;
}

.feature-value {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 700;
    margin-top: 5px;
}

.feature-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.specifications {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.specifications li {
    font-size: 16px;
    color: #555;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.specifications li::before {
    content: "●";
    color: #ff7847;
    font-size: 20px;
    margin-right: 15px;
}

.download-btn {
    width: 100%;
    background: linear-gradient(135deg, #ff7847 0%, #ff5722 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 120, 71, 0.3);
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 120, 71, 0.4);
}

/* Responsive */
@media (max-width: 968px) {
    .floor-plan-content {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .plan-title {
        font-size: 28px;
    }
    
    .plan-price {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .floor-plan-box {
        width: 220px;
        height: 220px;
    }
}