
/* Paper Rolls Product Hero Section - Compact */
.product-hero-section {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-blue);
}

/* Video Background */
.product-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.product-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 72, 118, 0.90) 0%,
        rgba(0, 72, 118, 0.82) 40%,
        rgba(1, 174, 239, 0.7) 100%
    );
    z-index: 2;
    opacity:0.3;
}

/* Content */
.product-hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 100px 40px 60px;
}

.product-hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Badge */
.product-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    color: var(--accent-gold);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Title */
.product-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.title-highlight {
    color: var(--accent-gold);
}

/* Subtitle */
.product-hero-subtitle {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.92;
}

/* CTA Buttons */
.product-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-product-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(244, 185, 66, 0.3);
}

.btn-product-primary:hover {
    background: #ffca5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(244, 185, 66, 0.4);
}

.btn-product-primary i {
    font-size: 11px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-product-primary:hover i {
    transform: translateX(3px);
}

.btn-product-secondary {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-product-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-hero-title {
        font-size: 38px;
    }
}

@media (max-width: 992px) {
    .product-hero-section {
        min-height: 70vh;
    }
    
    .product-hero-content {
        padding: 90px 30px 50px;
    }
    
    .product-hero-title {
        font-size: 34px;
    }
    
    .product-hero-subtitle {
        font-size: 14px;
        margin-bottom: 26px;
    }
}

@media (max-width: 768px) {
    .product-hero-section {
        min-height: 65vh;
    }
    
    .product-hero-content {
        padding: 90px 20px 40px;
    }
    
    .product-hero-title {
        font-size: 28px;
        margin-bottom: 14px;
    }
    
    .product-hero-subtitle {
        font-size: 13px;
        margin-bottom: 24px;
    }
    
    .product-badge {
        font-size: 10px;
        padding: 7px 18px;
        margin-bottom: 16px;
    }
    
    .product-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-product-primary,
    .btn-product-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .product-hero-title {
        font-size: 24px;
    }
    
    .product-hero-subtitle {
        font-size: 12px;
    }
}

/* Video Performance */
.product-hero-video video {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}





    /* Products Section */
    .products-section {
        padding: 100px 0;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .products-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(1, 174, 239, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    
    .products-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 1;
    }
    
    .products-grid {
        display: grid;
        grid-template-columns: 380px 1fr;
        gap: 50px;
        align-items: start;
    }
    
    /* Section Header */
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }
    
    .title-underline {
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-cyan) 100%);
        border-radius: 2px;
    }
    
    /* Products List */
    .products-list-wrapper {
        position: sticky;
        top: 120px;
    }
    
    .products-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        background: white;
        padding: 20px;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    
    .product-tab {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 16px 20px;
        background: transparent;
        border: 2px solid transparent;
        border-radius: 12px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        text-align: left;
    }
    
    .product-tab::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 0;
        background: var(--accent-gold);
        transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 0 2px 2px 0;
    }
    
    .product-tab i:first-child {
        font-size: 18px;
        color: var(--accent-gold);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .product-tab span {
        flex: 1;
        font-size: 15px;
        font-weight: 500;
        color: #333;
        transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .tab-arrow {
        font-size: 12px;
        color: #999;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .product-tab:hover {
        background: rgba(1, 174, 239, 0.04);
        border-color: rgba(1, 174, 239, 0.1);
        transform: translateX(4px);
    }
    
    .product-tab:hover::before {
        height: 100%;
    }
    
    .product-tab:hover .tab-arrow {
        opacity: 1;
        transform: translateX(0);
    }
    
    .product-tab:hover i:first-child {
        transform: scale(1.1) rotate(5deg);
    }
    
    .product-tab.active {
        background: linear-gradient(135deg, rgba(1, 174, 239, 0.08) 0%, rgba(244, 185, 66, 0.08) 100%);
        border-color: rgba(1, 174, 239, 0.2);
    }
    
    .product-tab.active::before {
        height: 100%;
    }
    
    .product-tab.active span {
        color: var(--primary-blue);
        font-weight: 600;
    }
    
    .product-tab.active .tab-arrow {
        opacity: 1;
        transform: translateX(0);
        color: var(--accent-cyan);
    }
    
    /* Product Details */
    .product-details-wrapper {
        position: relative;
        min-height: 500px;
    }
    
    .product-detail {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    .product-detail.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        position: relative;
    }
    
    .product-image {
        position: relative;
        width: 100%;
        height: 400px;
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .product-detail.active .product-image img {
        animation: zoomIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes zoomIn {
        from {
            transform: scale(1.1);
        }
        to {
            transform: scale(1);
        }
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 72, 118, 0.3) 0%, rgba(1, 174, 239, 0.2) 100%);
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .product-image:hover .image-overlay {
        opacity: 1;
    }
    
    .product-image:hover img {
        transform: scale(1.05);
    }
    
    /* Product Info */
    .product-info {
        background: white;
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    }
    
    .product-name {
        font-size: 28px;
        font-weight: 700;
        color: var(--primary-blue);
        margin-bottom: 15px;
        letter-spacing: -0.5px;
    }
    
    .product-description {
        font-size: 15px;
        font-weight: 400;
        color: #666;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    /* Applications Section */
    .applications-section {
        padding-top: 25px;
        border-top: 2px solid rgba(0, 72, 118, 0.08);
    }
    
    .applications-title {
        font-size: 18px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 18px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .applications-title::before {
        content: '';
        width: 4px;
        height: 20px;
        background: var(--accent-gold);
        border-radius: 2px;
    }
    
    .applications-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .application-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 16px;
        background: linear-gradient(135deg, rgba(1, 174, 239, 0.04) 0%, rgba(244, 185, 66, 0.04) 100%);
        border-radius: 10px;
        border: 1px solid rgba(1, 174, 239, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .application-item i {
        font-size: 16px;
        color: var(--accent-cyan);
        flex-shrink: 0;
    }
    
    .application-item span {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }
    
    .application-item:hover {
        background: linear-gradient(135deg, rgba(1, 174, 239, 0.08) 0%, rgba(244, 185, 66, 0.08) 100%);
        border-color: rgba(1, 174, 239, 0.2);
        transform: translateX(4px);
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .products-grid {
            grid-template-columns: 320px 1fr;
            gap: 40px;
        }
        
        .section-title {
            font-size: 28px;
        }
        
        .product-name {
            font-size: 24px;
        }
    }
    
    @media (max-width: 992px) {
        .products-section {
            padding: 80px 0;
        }
        
        .products-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .products-list-wrapper {
            position: static;
        }
        
        .product-image {
            height: 350px;
        }
        
        .applications-list {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .products-container {
            padding: 0 20px;
        }
        
        .products-section {
            padding: 60px 0;
        }
        
        .section-title {
            font-size: 24px;
        }
        
        .product-image {
            height: 280px;
            border-radius: 16px;
        }
        
        .product-info {
            padding: 25px;
            border-radius: 16px;
        }
        
        .product-name {
            font-size: 22px;
        }
        
        .product-description {
            font-size: 14px;
        }
        
        .product-tab {
            padding: 14px 16px;
        }
        
        .product-tab span {
            font-size: 14px;
        }
    }
    
    @media (max-width: 480px) {
        .section-title {
            font-size: 22px;
        }
        
        .product-name {
            font-size: 20px;
        }
        
        .applications-title {
            font-size: 16px;
        }
        
        .application-item {
            padding: 10px 14px;
        }
        
        .application-item span {
            font-size: 13px;
        }
    }






/* ── Social Strip ─────────────────────────────────────────────────── */
.social-strip {
    position: relative;
    background: #f7f9fb;
    border-top: 1px solid rgba(0, 72, 118, 0.07);
    border-bottom: 1px solid rgba(0, 72, 118, 0.07);
    overflow: hidden;
    padding: 0 40px;
}

/* Subtle noise grain for premium depth */
.social-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Faint horizon glow from brand cyan */
.social-strip::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 120px;
    background: radial-gradient(ellipse at center, rgba(1, 174, 239, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.social-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 96px;
}

/* ── Left copy ───────────────────────────────────────────────────── */
.social-left {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.social-eyebrow {
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    font-family: 'Inter', sans-serif;
}

.social-tagline {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
    letter-spacing: -0.2px;
    white-space: nowrap;
    font-family: 'Inter', sans-serif;
}

/* ── Divider rule ────────────────────────────────────────────────── */
.social-rule {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        to right,
        rgba(0, 72, 118, 0.12),
        rgba(1, 174, 239, 0.25) 40%,
        rgba(244, 185, 66, 0.2) 60%,
        rgba(0, 72, 118, 0.04)
    );
    position: relative;
}

/* Animated shimmer on the rule */
.social-rule::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -40%;
    width: 40%;
    height: 3px;
    background: linear-gradient(to right, transparent, rgba(1, 174, 239, 0.5), transparent);
    animation: ruleShimmer 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    border-radius: 2px;
}

@keyframes ruleShimmer {
    0%   { left: -40%; opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { left: 130%; opacity: 0; }
}

/* ── Icon pills ──────────────────────────────────────────────────── */
.social-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.soc-pill {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(0, 72, 118, 0.1);
    color: var(--primary-blue);
    font-size: 15px;
    text-decoration: none;
    box-shadow:
        0 1px 3px rgba(0, 72, 118, 0.06),
        0 4px 12px rgba(0, 72, 118, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition:
        color          0.28s cubic-bezier(0.4, 0, 0.2, 1),
        background     0.28s cubic-bezier(0.4, 0, 0.2, 1),
        border-color   0.28s cubic-bezier(0.4, 0, 0.2, 1),
        transform      0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow     0.28s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    /* Staggered entrance */
    animation: pillRise 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.soc-pill:nth-child(1) { animation-delay: 0.06s; }
.soc-pill:nth-child(2) { animation-delay: 0.12s; }
.soc-pill:nth-child(3) { animation-delay: 0.18s; }
.soc-pill:nth-child(4) { animation-delay: 0.24s; }
.soc-pill:nth-child(5) { animation-delay: 0.30s; }
.soc-pill:nth-child(6) { animation-delay: 0.36s; }

@keyframes pillRise {
    from { opacity: 0; transform: translateY(10px) scale(0.85); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* Hover glow blob */
.soc-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(1, 174, 239, 0.18), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.soc-pill:hover {
    color: var(--accent-cyan);
    background: #ffffff;
    border-color: rgba(1, 174, 239, 0.35);
    transform: translateY(-4px) scale(1.06);
    box-shadow:
        0 2px 6px rgba(0, 72, 118, 0.06),
        0 10px 28px rgba(1, 174, 239, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.soc-pill:hover .soc-glow {
    opacity: 1;
}

.soc-pill:active {
    transform: translateY(-1px) scale(0.97);
    box-shadow:
        0 1px 4px rgba(0, 72, 118, 0.08),
        0 4px 12px rgba(1, 174, 239, 0.1);
}

/* Tooltip */
.soc-pill::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: var(--primary-blue);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 5px 11px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 4px 16px rgba(0, 72, 118, 0.25);
    transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tooltip arrow */
.soc-pill::before {
    content: '';
    position: absolute;
    bottom: calc(100% + 5px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border: 5px solid transparent;
    border-top-color: var(--primary-blue);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.soc-pill:hover::after,
.soc-pill:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .social-rule {
        display: none;
    }

    .social-inner {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .social-strip {
        padding: 0 20px;
    }

    .social-inner {
        flex-direction: column;
        height: auto;
        padding: 28px 0;
        gap: 20px;
    }

    .social-left {
        align-items: center;
        text-align: center;
    }

    .social-tagline {
        white-space: normal;
        text-align: center;
    }

    .social-right {
        gap: 10px;
    }

    .soc-pill {
        width: 46px;
        height: 46px;
        border-radius: 13px;
    }

    .soc-pill::after,
    .soc-pill::before {
        display: none;
    }
}

@media (max-width: 400px) {
    .social-right {
        gap: 8px;
    }

    .soc-pill {
        width: 42px;
        height: 42px;
        font-size: 14px;
    }
}
    .booking-portals {
    display: flex;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.booking-card {
    display: grid;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-card img {
    width: auto;
}

.booking-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}