/* Floor Office Solution Stylesheet */
:root {
    --gsn-primary: #0095ff;
    --gsn-primary-hover: #007ce2;
    --gsn-secondary: #00c896;
    --gsn-dark-navy: #0b1528;
    --gsn-dark-navy-light: #162238;
    --gsn-text-dark: #0f172a;
    --gsn-text-muted: #64748b;
    --gsn-bg-light: #f8fafc;
    --gsn-white: #ffffff;
    --gsn-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --gsn-shadow-md: 0 10px 30px rgba(45, 42, 123, 0.08);
    --gsn-shadow-lg: 0 20px 40px rgba(11, 21, 40, 0.12);
}

.floor-office-body {
    background: transparent;
    color: var(--gsn-text-dark);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
    padding: 60px 0 80px 0;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pill-badge-green {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(0, 200, 150, 0.05);
    border: 1px solid rgba(0, 200, 150, 0.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--gsn-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--gsn-text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title span.blue-text {
    color: var(--gsn-primary);
    background: linear-gradient(135deg, #0095ff 0%, #0062ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gsn-text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    width: 100%;
}

.btn-secondary-custom {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--gsn-white);
    color: var(--gsn-text-dark);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--gsn-shadow-sm);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-custom:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    color: var(--gsn-text-dark);
}

.stats-row {
    display: flex;
    gap: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--gsn-text-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--gsn-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-image-wrap {
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: auto;
    border-radius: 36px;
    box-shadow: var(--gsn-shadow-lg);
    transition: transform 0.5s ease;
}

.hero-image-wrap:hover .hero-main-img {
    transform: scale(1.02);
}

/* Solution Categories Section */
.categories-intro {
    text-align: center;
    margin-bottom: 56px;
}

.categories-kicker {
    font-size: 11px;
    font-weight: 700;
    color: var(--gsn-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.categories-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--gsn-text-dark);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.categories-desc {
    font-size: 16px;
    color: var(--gsn-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.category-card {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.85) 0%, rgba(241, 245, 249, 0.45) 100%);
    border: 1px solid rgba(241, 245, 249, 0.8);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    background: var(--gsn-white);
    border-color: rgba(0, 149, 255, 0.15);
    box-shadow: var(--gsn-shadow-md);
    transform: translateY(-6px);
}

.category-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img-wrap img {
    transform: scale(1.04);
}

.category-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gsn-text-dark);
    margin-bottom: 8px;
}

.category-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gsn-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.category-card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--gsn-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.category-card-link i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-link i {
    transform: translateX(4px);
}

/* Why Choose Us Section */
.why-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
}

.why-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gsn-text-dark);
    margin: 0;
}

.why-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--gsn-text-muted);
    margin: 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.8) 0%, rgba(241, 245, 249, 0.4) 100%);
    border: 1px solid rgba(241, 245, 249, 0.8);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--gsn-white);
    border-color: rgba(0, 200, 150, 0.15);
    box-shadow: var(--gsn-shadow-md);
    transform: translateY(-4px);
}

.why-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 200, 150, 0.06);
    color: var(--gsn-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.why-card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gsn-text-dark);
    margin-bottom: 10px;
}

.why-card-desc {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gsn-text-muted);
    margin: 0;
}

/* Workspace Banner (Dark Navy) */
.workspace-banner-wrap {
    padding: 0 24px 80px 24px;
}

.workspace-card {
    background-color: var(--gsn-dark-navy);
    border-radius: 36px;
    padding: 56px 48px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--gsn-shadow-lg);
}

.workspace-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 200, 150, 0.06) 0%, rgba(11, 21, 40, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.workspace-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.workspace-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.workspace-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.workspace-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--gsn-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.workspace-desc {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    max-width: 500px;
}

.btn-white-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gsn-white);
    color: var(--gsn-dark-navy);
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-white-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-white-cta i {
    transition: transform 0.3s ease;
}

.btn-white-cta:hover i {
    transform: translateX(4px);
}

.workspace-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.workspace-img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.workspace-img-wrap:hover .workspace-img {
    transform: scale(1.02);
}

/* =======================================
   Responsive Design
   ======================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .workspace-card {
        padding: 48px 32px;
    }
    .workspace-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content {
        align-items: center;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .stats-row {
        justify-content: center;
    }
    .why-intro {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .workspace-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .workspace-content {
        align-items: center;
        text-align: center;
    }
    .workspace-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
        text-align: left;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-secondary-custom {
        width: 100%;
        justify-content: center;
    }
    .stats-row {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
}
