/* BiCo Innovative Services - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    font-size: 17px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Header */
.header {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white !important;
}

.header.scrolled .logo a {
    color: #2c5aa0 !important;
}

.logo span {
    font-weight: 700;
    font-size: 18px;
    color: white !important;
}

.header.scrolled .logo span {
    color: #2c5aa0 !important;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.header.scrolled .nav-menu a {
    color: #333;
    text-shadow: none;
}

.nav-menu a:hover {
    color: #ffc107;
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.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 1000 1000"><polygon fill="%23ffffff08" points="0,1000 1000,800 1000,1000"/></svg>');
    background-size: cover;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: slideInLeft 1s ease 0.3s both;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeIn 1s ease 0.6s both;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #fff, #f8f9fa);
    color: #2c5aa0;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #2c5aa0;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c5aa0;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #1e3d72);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(44, 90, 160, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(44, 90, 160, 0.05), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
    border-color: rgba(44, 90, 160, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    animation: pulse 2s infinite;
}

.service-card h3 {
    margin-bottom: 15px;
    color: #333;
}

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

/* House Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(44, 90, 160, 0.1);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15);
}

.plan-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #1e3d72);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.plan-card:hover::after {
    transform: scaleX(1);
}

.plan-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.plan-card:hover .plan-image {
    transform: scale(1.05);
}

.plan-content {
    padding: 25px;
}

.plan-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.plan-details {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    font-size: 14px;
    color: #666;
}

.plan-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5aa0;
    margin: 15px 0;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 45px;
    border-radius: 15px;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: linear-gradient(135deg, #128c7e, #25d366);
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: pulse 2s infinite;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #2c5aa0, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #2c5aa0;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero {
        min-height: 80vh !important;
        padding: 100px 0 60px !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
    }
    
    .hero-content p {
        font-size: 1.1rem !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .services-grid,
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Admin Styles */
.admin-header {
    background: #2c5aa0;
    color: white;
    padding: 15px 0;
}

.admin-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.admin-nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s;
}

.admin-nav a:hover {
    background: rgba(255,255,255,0.1);
}

.admin-content {
    padding: 30px 0;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.data-table th,
.data-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.data-table th {
    background: #f8f9fa;
    font-weight: bold;
}

.btn-small {
    padding: 5px 10px;
    font-size: 12px;
    margin: 0 2px;
}

.btn-edit {
    background: #28a745;
    color: white;
}

.btn-delete {
    background: #dc3545;
    color: white;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Choose Us Cards */
.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(44, 90, 160, 0.15) !important;
}

/* Header Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo span {
    color: #2c5aa0;
    font-weight: 700;
}

/* Hero Section Enhancements */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    color: #ffc107;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.trust-number {
    font-weight: 700;
    font-size: 1.2rem;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Headers */
.section-badge {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose-section {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-choose-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.why-choose-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.why-choose-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.why-choose-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.why-choose-card p {
    opacity: 0.9;
    line-height: 1.6;
}

.stats-section {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stats-title {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer Enhancements */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: #2c5aa0;
    width: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.footer-links i {
    color: #2c5aa0;
    width: 16px;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
}

.social-facebook { background: linear-gradient(135deg, #3b5998, #2d4373); }
.social-twitter { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
.social-instagram { background: linear-gradient(135deg, #e4405f, #c13584); }
.social-linkedin { background: linear-gradient(135deg, #0077b5, #005885); }
.social-tiktok { background: linear-gradient(135deg, #000000, #ff0050); }

.business-hours {
    background: rgba(44, 90, 160, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2c5aa0;
}

.business-hours h4 {
    color: #2c5aa0;
    margin-bottom: 10px;
    font-size: 16px;
}

.business-hours div {
    font-size: 14px;
    line-height: 1.6;
}

.business-hours p {
    margin: 5px 0;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-credits {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-credits p {
    margin: 0;
}

.powered-by {
    font-size: 12px;
    color: #999;
}

.powered-by a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.footer-legal {
    display: flex;
    gap: 20px;
    font-size: 14px;
}

.footer-legal a {
    color: #999;
    transition: color 0.3s;
}

/* About Page Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 50px 0;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.about-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.mvv-card h3 {
    margin-bottom: 15px;
    color: #2c5aa0;
    font-size: 1.4rem;
}

.mvv-card p {
    line-height: 1.7;
    color: #666;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-choose-item {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-overview-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-overview-item:hover {
    transform: translateY(-5px);
}

.service-overview-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}

.service-overview-item h4 {
    margin-bottom: 15px;
    color: #2c5aa0;
    font-size: 1.3rem;
}

.service-overview-item p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.contact-cta {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
}

.contact-cta-content h2 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Index Page Specific Styles */
.hero-home {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.9), rgba(30, 61, 114, 0.9)), url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1920&h=1080&fit=crop&auto=format') center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
}

.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    max-width: 700px;
    margin: 0 auto;
}

.service-card-construction {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid #2c5aa0;
}

.service-card-land {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid #28a745;
}

.service-card-financial {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid #ffc107;
}

.service-card-government {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid #dc3545;
}

.service-icon-construction {
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
}

.service-icon-land {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.service-icon-financial {
    background: linear-gradient(135deg, #ffc107, #ffb300);
}

.service-icon-government {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.service-title-construction { color: #2c5aa0; margin-bottom: 15px; }
.service-title-land { color: #28a745; margin-bottom: 15px; }
.service-title-financial { color: #ffc107; margin-bottom: 15px; }
.service-title-government { color: #dc3545; margin-bottom: 15px; }

.service-description { margin-bottom: 20px; }

.service-features {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

.service-check { color: #28a745; }

.service-btn {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

.service-btn-land { background: #28a745; color: white; }
.service-btn-financial { background: #ffc107; color: #333; }
.service-btn-government { background: #dc3545; color: white; }

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-container {
    position: relative;
    z-index: 2;
}

.stat-color-yellow { color: #ffc107; }
.stat-color-green { color: #28a745; }
.stat-color-teal { color: #20c997; }
.stat-color-blue { color: #17a2b8; }

.house-plans-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.house-plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.house-plans-badge {
    display: inline-block;
    background: #2c5aa0;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

.plan-card-featured {
    position: relative;
    overflow: hidden;
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

.plan-badge-featured { background: #2c5aa0; color: white; }
.plan-badge-popular { background: #28a745; color: white; }
.plan-badge-affordable { background: #ffc107; color: #333; }

.plan-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-stars {
    display: flex;
    gap: 5px;
}

.plan-star {
    color: #ffc107;
    font-size: 14px;
}

.plan-description {
    margin-bottom: 20px;
}

.plan-buttons {
    display: flex;
    gap: 10px;
}

.plan-btn-primary {
    flex: 1;
    justify-content: center;
}

.plan-btn-secondary {
    padding: 12px;
}

.house-plans-cta {
    text-align: center;
    margin-top: 50px;
}

.house-plans-btn {
    font-size: 1.1rem;
    padding: 16px 40px;
}

.contact-cta-section {
    text-align: center;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
}

.contact-cta-title {
    margin-bottom: 20px;
}

.contact-cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-btn-large {
    font-size: 1.1rem;
    padding: 16px 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem !important; }
    .hero-content p { font-size: 1.1rem !important; }
    .trust-indicators { flex-direction: column; align-items: center; gap: 15px; }
    .why-choose-title { font-size: 2rem !important; }
    .why-choose-cards { flex-direction: column; }
    .stats-grid { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-hero { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .about-title { font-size: 2.5rem; }
    .about-stats { justify-content: center; }
    .mvv-grid { grid-template-columns: 1fr; }
    .why-choose-grid { grid-template-columns: 1fr; }
    .services-overview { grid-template-columns: 1fr; }
}