/* ── Hero Section Premium Design ── */
.hero-section {
    position: relative;
    width: 100vw;
    height: 70vh;
    height: 70dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #F7FAFC 0%, #DCEAF5 60%, #123B68 100%);
    background-attachment: fixed;
    will-change: transform;
    margin: 0 !important;
    padding: 0 !important;
}

/* Suppress conflicting ::before from style.css */
.hero-section::before {
    display: none !important;
    content: none !important;
}

/* ----- floating orbs (blurred depth) ----- */
.orb {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px);
    pointer-events: none;
    will-change: transform;
    z-index: 0;
}
.orb-1 {
    width: 40vw;
    height: 40vw;
    top: -10%;
    left: -5%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.08), rgba(18, 59, 104, 0.02));
}
.orb-2 {
    width: 55vw;
    height: 55vw;
    bottom: -20%;
    right: -10%;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.06), rgba(18, 59, 104, 0.03));
}
.orb-3 {
    width: 30vw;
    height: 30vw;
    top: 30%;
    right: 20%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05), rgba(18, 59, 104, 0.02));
}

/* ----- Container left / right ----- */
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* ----- LEFT SIDE ----- */
.hero-left {
    flex: 0 0 48%;
    max-width: 580px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(2.6rem, 8vw, 5.2rem);
    line-height: 1;
    letter-spacing: -0.02em;
    color: #0b1f2e;
    text-transform: uppercase;
}
.brand-name span {
    display: block;
    color: #D4AF37;
    margin-top: -0.05em;
}

.tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    letter-spacing: 0.02em;
    color: #0b1f2e;
    opacity: 0.85;
    margin-top: 0.25rem;
}
.tagline span {
    display: inline-block;
    margin-right: 0.6rem;
}

.description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.95rem, 1.3vw, 1.2rem);
    line-height: 1.6;
    color: #1e3a5f;
    max-width: 460px;
    opacity: 0.8;
    margin-top: 0.2rem;
    letter-spacing: 0.01em;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.8rem;
}

.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.8rem 2.2rem;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    letter-spacing: 0.02em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.btn-primary {
    background: #D4AF37;
    color: #0b1f2e;
    box-shadow: 0 8px 20px -8px rgba(212, 175, 55, 0.4);
}
.btn-primary:hover {
    background: #e4c35a;
    transform: scale(1.04);
    box-shadow: 0 16px 32px -10px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.7);
    color: #0b1f2e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.8);
    transform: scale(1.04);
    border-color: #D4AF37;
}

/* ----- RIGHT SIDE (product stage) ----- */
.hero-right {
    flex: 1;
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item {
    position: absolute;
    will-change: transform, opacity;
    opacity: 0;
    transform: scale(0.8) translateY(-100px);
    pointer-events: none;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.08));
}

.product-item.active {
    opacity: 1;
    transform: scale(1) translateY(0px);
    pointer-events: auto;
}

.product-item.floating {
    animation: floatDesktop 4.5s ease-in-out infinite;
}

@keyframes floatDesktop {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-16px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-container { flex-direction: column; justify-content: center; gap: 0.5rem; padding: 2rem; }
    .hero-left { flex: 0 0 auto; max-width: 100%; text-align: center; align-items: center; }
    .description { max-width: 100%; }
    .hero-right { width: 100%; height: 50vh; min-height: 300px; }
}

@media (max-width: 640px) {
    .hero-section {
        position: relative !important;
        width: 100vw !important;
        height: 25vh !important;
        min-height: 25vh !important;
        max-height: 25vh !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .hero-container {
        padding: 0 !important;
        margin: 0 !important;
        height: 100% !important;
        width: 100% !important;
    }
    .hero-left {
        display: none !important;
    }
    .hero-right {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        perspective: 800px !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .single-image-container {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .product-item {
        position: absolute !important;
        will-change: transform, opacity !important;
        opacity: 0 !important;
        transform: scale(0.8) translateY(-100px) !important;
        pointer-events: none !important;
        filter: drop-shadow(0 20px 40px rgba(0,0,0,0.10)) !important;
        transition: opacity 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), 
                    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    }
    .product-item img {
        display: block !important;
        width: auto !important;
        height: auto !important;
        max-width: 95vw !important;
        max-height: 23vh !important;
        object-fit: contain !important;
        filter: drop-shadow(0 12px 28px rgba(0,0,0,0.08)) !important;
    }
    .product-item.active {
        opacity: 1 !important;
        transform: scale(1.1) translateY(0px) !important;
        pointer-events: auto !important;
    }
    .product-item.floating {
        animation: floatMobile 4.5s ease-in-out infinite !important;
    }
    @keyframes floatMobile {
        0% { transform: translateY(0px) scale(1.1); }
        50% { transform: translateY(-16px) scale(1.12); }
        100% { transform: translateY(0px) scale(1.1); }
    }
    .product-item:active img {
        transform: scale(1.15) !important;
        transition: transform 0.2s !important;
    }
}

/* Background image fill */
.hero-background {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
}

.hero-image-full {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, #D4AF37 0%, #D4AF37 100%);
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin: 0;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.welcome-banner h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-banner p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 400;
}

@keyframes dropFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content block – centred */
.hero-inner {
    position: relative;
    z-index: 2;
    padding: 0 6vw;
    max-width: 700px;
    animation: heroFadeUp 0.9s ease-out both;
}

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Title – large italic only */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 16px rgba(0,0,0,0.45);
    color: #fff !important;
}

.hero-title em {
    font-style: italic;
    color: #fff !important;
}

.hero-title .text-highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

/* Arrow buttons */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255,255,255,0.14);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.hero-arrow:hover {
    background: rgba(255,107,53,0.85);
    border-color: #D4AF37;
}
.hero-arrow-prev { left: 16px; }
.hero-arrow-next { right: 16px; }

/* Navigation dots */
.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dot.active,
.hero-dot:hover {
    background: #D4AF37;
    border-color: #D4AF37;
    width: 22px;
}

/* ── Trust Bar ── */
.trust-bar {
    background: #fff;
    border-bottom: 3px solid #D4AF37;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 12px 20px;
    gap: 10px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
}
.trust-item i { color: #D4AF37; }
.trust-divider {
    width: 1px;
    height: 20px;
    background: #ddd;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 350px;
        margin-top: 0 !important;
        padding-top: 0 !important;
        max-height: 500px;
    }
    .hero-inner { padding: 0 5vw; }
    .hero-arrow { display: none; }
    .trust-divider { display: none; }
    .trust-bar-inner { flex-direction: column; gap: 6px; padding: 10px 16px; }
}

@media (max-width: 480px) {
    .hero-section {
        height: auto;
        min-height: 300px;
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .hero-dots { bottom: 10px; }
}

/* Slide-in animation */
@keyframes slideIn {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Integration with fixed header */
.modern-header + .hero-section { margin-top: 0; }
