/* Header & Layout overrides for OfficeNet specifically */
/* Header & Layout overrides removed - handled by style.css */

/* Floating Contact */
.floating-contact {
    position: fixed;
    right: 20px;
    top: 150px;
    background: #e6007e;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 10px rgba(230,0,126,0.3);
    z-index: 1000;
}

.floating-contact a {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.floating-contact span {
    font-size: 12px;
}

.floating-contact strong {
    font-size: 14px;
}

/* Banner */
.officenet-banner {
    background: url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?auto=format&fit=crop&w=1600&q=80') center right/cover no-repeat;
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
}

.officenet-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(240,244,248,1) 40%, rgba(240,244,248,0.3) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 40px;
    color: #111;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 16px;
    color: #555;
}

/* Promo */
.officenet-promo {
    background: #fff;
    padding: 60px 0;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.promo-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.promo-image {
    flex: 1;
}

.promo-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.promo-text {
    flex: 1.5;
}

.highlight-text {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.price-text {
    font-size: 18px;
    color: #111;
    margin-bottom: 25px;
}

.promo-box {
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    background: #fafafa;
}

.promo-box h3 {
    font-size: 16px;
    color: #111;
    margin-bottom: 10px;
}

.promo-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Recommend */
.officenet-recommend {
    background: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--navy-color);
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.recommend-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.recommend-item {
    flex: 1;
    text-align: center;
}

.recommend-item .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.recommend-item h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}

.recommend-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Features */
.officenet-features {
    background: #fff;
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.feature-card h3 {
    font-size: 16px;
    color: #111;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Pricing */
.officenet-pricing {
    background: #fff;
    padding: 0 0 60px 0;
}

.table-responsive {
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.pricing-table th, .pricing-table td {
    border: 1px solid #e0e0e0;
    padding: 12px 10px;
    text-align: center;
}

.pricing-table th {
    background-color: var(--navy-color);
    color: #fff;
    font-weight: 600;
}

.pricing-table td.row-header {
    background-color: #fdfdfd;
    font-weight: bold;
    color: #333;
}

.pricing-table td.sub-header {
    background-color: #fdfdfd;
    color: #555;
}

.pricing-notes {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #888;
}

.pricing-notes li {
    margin-bottom: 5px;
}

/* Custom footer styles removed - handled by footer in _Layout.cshtml */
