/* Solutions Page Specific Styles */
 html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
            font-family: 'Plus Jakarta Sans', sans-serif !important;
}
/* Page Hero Section - Solutions */
.solutions-hero {
    background: var(--primary-blue);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.solutions-hero .hero-shape {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--theme-yellow);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

.page-hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.page-hero-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.hero-breadcrumb a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumb a:hover {
    color: var(--theme-yellow);
}

.hero-breadcrumb i {
    font-size: 12px;
    color: #666;
}

.hero-breadcrumb span {
    color: #666;
}

/* Solutions Hero Grid */
.solutions-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 40px;
}

.hero-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero-card i {
    font-size: 40px;
    color: #fff;
}

.hero-card span {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.hero-card:nth-child(4) span,
.hero-card:nth-child(4) i {
    color: #000;
}

/* Platform Solutions Section */
.platform-solutions-section {
    padding: 100px 0;
    background: #fff;
}

.section-subtitle {
    display: inline-block;
    background: var(--theme-yellow);
    color: #000;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.max-width-700 {
    max-width: 700px;
    margin: 0 auto;
}

.platform-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 35px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.platform-card.microsoft:hover {
    border-color: #00a4ef;
}

.platform-card.zoom:hover {
    border-color: #2d8cff;
}

.platform-card.google:hover {
    border-color: #4285f4;
}

.platform-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.platform-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.microsoft .platform-icon {
    background: linear-gradient(135deg, #00a4ef 0%, #0078d4 100%);
    color: #fff;
}

.zoom .platform-icon {
    background: linear-gradient(135deg, #2d8cff 0%, #0b5cff 100%);
    color: #fff;
}

.google .platform-icon {
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    color: #fff;
}

.platform-badge {
    background: var(--cream-bg);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.platform-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.platform-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.platform-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.platform-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.platform-features li i {
    color: #10B981;
    font-size: 16px;
}

.platform-products {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-tag {
    background: var(--primary-blue);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-tag:hover {
    background: var(--theme-yellow);
    transform: translateY(-2px);
}

/* Meeting Spaces Section */
.meeting-spaces-section {
    padding: 100px 0;
    background: var(--cream-bg);
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.space-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.space-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
    border-color: var(--theme-yellow);
}

.space-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.space-card:hover .space-image img {
    transform: scale(1.1);
}

.space-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
}

.space-overlay i {
    margin-right: 5px;
    color: var(--theme-yellow);
}

.space-content {
    padding: 30px;
    position: relative;
}

.space-icon {
    width: 60px;
    height: 60px;
    background: var(--theme-yellow);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #000;
    margin-top: -60px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(245, 213, 71, 0.3);
    transition: all 0.3s ease;
}

.space-card:hover .space-icon {
    transform: scale(1.1) rotate(5deg);
}

.space-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.space-content p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

.space-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.space-specs li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
}

.space-specs li i {
    color: #3B82F6;
    width: 20px;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-explore i {
    transition: transform 0.3s ease;
}

.btn-explore:hover {
    color: var(--theme-yellow);
}

.btn-explore:hover i {
    transform: translateX(5px);
}

/* Industry Solutions Section */
.industry-section {
    padding: 100px 0;
    background: #fff;
}

.industry-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.industry-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-yellow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.industry-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(5deg);
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.industry-card p {
    color: #666;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 20px;
}

.industry-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.industry-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    padding-left: 0;
}

.industry-features li::before {
    content: '•';
    color: var(--theme-yellow);
    font-size: 20px;
    line-height: 0;
}

/* Scenario Solutions Section */
.scenario-section {
    padding: 100px 0;
    background: var(--cream-bg);
}

.scenario-tabs {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.scenario-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.scenario-btn {
    background: var(--cream-bg);
    border: 2px solid transparent;
    padding: 15px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scenario-btn i {
    font-size: 18px;
}

.scenario-btn:hover {
    background: var(--primary-blue);
    color: #000;
    transform: translateY(-2px);
}

.scenario-btn.active {
    background: #000;
    color: var(--theme-yellow);
    border-color: var(--theme-yellow);
}

.scenario-content-wrapper {
    position: relative;
    overflow: hidden;
}

.scenario-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

.scenario-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.scenario-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.scenario-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scenario-image:hover img {
    transform: scale(1.05);
}

.scenario-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.scenario-content .lead {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.scenario-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    font-size: 24px;
    color: var(--theme-yellow);
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.feature-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
    background: #fff;
}

.partner-categories {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.partner-category {
    background: var(--cream-bg);
    border-radius: 25px;
    padding: 40px;
}

.category-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #000;
}

.category-title i {
    width: 45px;
    height: 45px;
    background: var(--theme-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.partners-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.partner-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--theme-yellow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.partner-logo {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.partner-logo.micron { background: linear-gradient(135deg, #00a4ef 0%, #0078d4 100%); color: #fff; }
.partner-logo.crucial { background: linear-gradient(135deg, #2d8cff 0%, #0b5cff 100%); color: #fff; }
.partner-logo.netac { background: linear-gradient(135deg, #4285f4 0%, #34a853 100%); color: #fff; }
.partner-logo.pbx { background: #000; color: #fff; }
.partner-logo.dinstar { background: #e74c3c; color: #fff; }
.partner-logo.onecxi { background: #9b59b6; color: #fff; }
.partner-logo.snom { background: #34495e; color: #fff; }
.partner-logo.yealink { background: #3498db; color: #fff; }
.partner-logo.fanvil { background: #e67e22; color: #fff; }
.partner-logo.jabra { background: #f39c12; color: #fff; }
.partner-logo.nearity { background: #1abc9c; color: #fff; }
.partner-logo.ezon { background: #16a085; color: #fff; }
.partner-logo.hushpod { background: #95a5a6; color: #fff; }
.partner-logo.teltonika { background: #c0392b; color: #fff; }

.partner-card:hover .partner-logo {
    transform: scale(1.1) rotate(5deg);
}

.partner-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.partner-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.partner-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Why Solutions Section */
.why-solutions-section {
    padding: 100px 0;
    background: var(--primary-blue);
}

.lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    font-weight: 500;
}

.solution-benefits {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.5);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #fff;
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--theme-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.benefit-item p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.solutions-showcase {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.showcase-item:last-child {
    border-bottom: none;
}

.showcase-item:hover {
    background: var(--cream-bg);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 15px;
}

.showcase-number {
    width: 50px;
    height: 50px;
    background: var(--theme-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
}

.showcase-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.showcase-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, #000 0%, #1a1a2e 100%);
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: var(--theme-yellow);
    border-radius: 50%;
    opacity: 0.1;
}

.cta-box h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    margin: 0;
}

.btn-theme-yellow {
    background: var(--theme-yellow);
    color: #000;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-theme-yellow:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-lg {
    padding: 18px 35px;
    font-size: 16px;
}

/* Footer Styles */
.footer {
    background: var(--cream-bg);
    padding: 80px 0 0;
    position: relative;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--theme-yellow);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #000;
    transform: translateX(5px);
}

.social-icons-footer {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons-footer a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.social-icons-footer a:hover {
    background: var(--theme-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(245, 213, 71, 0.4);
}

.footer-bottom {
    border-top: 1px solid #ddd;
    margin-top: 60px;
    padding: 30px 0;
}

.footer-copy {
    color: #4a5568;
    font-size: 14px;
    margin: 0;
}

.footer-copy .brand-name {
    color: #000;
    font-weight: 700;
}

.footer-bottom .footer-links a {
    color: #4a5568;
    font-size: 13px;
}

.footer-bottom .footer-links a:hover {
    color: #000;
}

.divider {
    color: #ccc;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--theme-yellow);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #000;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #000;
    color: var(--theme-yellow);
    transform: translateY(-5px);
}

/* Active Navigation State */
.navbar-nav .nav-link.active {
    color: #000 !important;
}

.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-hero-title {
        font-size: 42px;
    }
    
    .solutions-hero {
        padding: 140px 0 80px;
    }
    
    .solutions-hero-grid {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-features-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        padding: 40px;
        text-align: center;
    }
    
    .cta-box h2 {
        font-size: 28px;
    }
    
    .scenario-nav {
        flex-direction: column;
        align-items: stretch;
    }
    
    .scenario-btn {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page-hero-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .solutions-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-card {
        padding: 20px;
    }
    
    .hero-card i {
        font-size: 28px;
    }
    
    .hero-card span {
        font-size: 14px;
    }
    
    .platform-card,
    .industry-card,
    .partner-card {
        margin-bottom: 20px;
    }
    
    .partners-row {
        grid-template-columns: 1fr;
    }
    
    .scenario-tabs {
        padding: 20px;
    }
    
    .scenario-image img {
        height: 250px;
    }
    
    .solutions-showcase {
        padding: 20px;
    }
    
    .showcase-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
}

/* Smooth Scroll Offset for Fixed Header */
#platforms,
#meeting-spaces,
#industries,
#scenarios,
#partners {
    scroll-margin-top: 100px;
}