:root {
    --primary-color: #1a237e;
    --secondary-color: #0d47a1;
    --accent-color: #ffd700;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Premium Hero Section */
.builder-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.builder-hero::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 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.stamp-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.builder-hero-content {
    position: relative;
    z-index: 2;
}

.company-logo {
    background: white;
    padding: 12px 16px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .company-logo {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        width: 300px;
        height: 150px;
        padding: 12px;
    }
    
    .builder-hero {
        padding-top: 100px;
    }
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background: transparent;
    max-width: 95%;
    max-height: 90%;
}

/* Hero badges (large marketing stamps next to hero) */
.hero-badges .hero-stamp svg {
    height: 220px;
    width: 220px;
    display: block;
}

.hero-badges img {
    height: 220px;
    width: 220px;
    object-fit: contain;
}

.hero-badges .stamp-badge {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    font-size: 1.1rem;
    padding: 10px 16px;
}

.hero-badges {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: center;
}

.project-badge {
    font-size: 1.15rem;
    padding: 10px 16px;
}

/* Heart / shortlist button styling */
.shortlist-heart {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.12);
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(0,0,0,0.14);
    font-size: 1.15rem;
}

.shortlist-heart i { 
    font-size: 1.1rem; 
}

.shortlist-heart:hover { 
    transform: scale(1.06); 
    cursor: pointer; 
}

.shortlist-heart.active { 
    background: #ff6b6b; 
    color: white; 
    border-color: transparent; 
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-tagline {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 25px;
    opacity: 0.95;
}

.hero-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
}

.meta-item i {
    font-size: 1.3rem;
    color: var(--accent-color);
}

.rating-stars {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Premium Statistics */
.stats-section {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    padding: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
    animation: pulse-scale 2s infinite;
}

@keyframes pulse-scale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, white 0%, var(--bg-light) 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Projects Grid */
.projects-section {
    padding: 80px 0;
    background: white;
}

.project-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    background: white;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.project-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-placeholder {
    color: white;
    font-size: 4rem;
    opacity: 0.5;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-content {
    padding: 30px;
}

.project-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.project-location {
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.project-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 15px;
}

.view-project-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: center;
}

.view-project-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
    color: white;
    text-decoration: none;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    color: white;
    text-align: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.contact-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.2rem;
    font-weight: 600;
    word-break: break-word;
}

.contact-us-btn {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    margin-top: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.contact-us-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.no-projects-msg {
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-light);
    border-radius: 15px;
}

.no-projects-icon {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.benefit-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Contact Options */
.contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.contact-option-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.call-btn {
    background: #28a745;
    color: white;
}

.call-btn:hover {
    background: #218838;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1fb855;
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

.form-btn {
    background: var(--accent-color);
    color: var(--primary-color);
}

.form-btn:hover {
    background: #ffc107;
    transform: scale(1.05);
}

.contact-option-btn i {
    font-size: 1.5rem;
}

/* Fixed Bottom Contact Bar */
.bottom-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 100%);
    padding: 15px 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1001;
}

.bottom-contact-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.bottom-contact-btn {
    flex: 1;
    max-width: 180px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.bottom-contact-btn i {
    font-size: 1.3rem;
}

.bottom-contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    .bottom-contact-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .bottom-contact-btn span {
        display: none;
    }
    
    .bottom-contact-btn i {
        font-size: 1.5rem;
    }
}

.contact-detail-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.contact-detail-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Contact Modal */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content-custom {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content-custom h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.modal-content-custom .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.modal-content-custom .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
}

.modal-content-custom label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(26, 35, 126, 0.3);
}

.direct-contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border-radius: 25px;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.direct-contact-link:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.direct-contact-link.whatsapp-link:hover {
    background: #25D366;
    color: white;
}

.direct-contact-link i {
    margin-right: 8px;
}

/* Builder contact footer inline (email / phone / website) */
.builder-contact-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-footer-item {
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.contact-footer-item i {
    color: var(--accent-color);
    font-size: 1.15rem;
}

.contact-footer-link {
    color: white;
    text-decoration: none;
}

.contact-footer-link:hover { 
    text-decoration: underline; 
}
