/* ============================================
   HERO OVERLAY - MODERN SPLIT SCREEN DESIGN
   ============================================ */

/* Main Container */
.hero-overlay-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Animated Diagonal Split Background */
.hero-overlay-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.65) 45%,
        rgba(212, 175, 55, 0.15) 50%,
        rgba(0, 0, 0, 0.65) 55%,
        rgba(0, 0, 0, 0.75) 100%
    );
    animation: diagonalShift 15s ease-in-out infinite alternate;
}

@keyframes diagonalShift {
    0% {
        transform: scale(1) rotate(0deg);
        background: linear-gradient(
            120deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(212, 175, 55, 0.15) 50%,
            rgba(0, 0, 0, 0.65) 55%,
            rgba(0, 0, 0, 0.75) 100%
        );
    }
    100% {
        transform: scale(1.05) rotate(0.5deg);
        background: linear-gradient(
            125deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.6) 45%,
            rgba(212, 175, 55, 0.2) 50%,
            rgba(0, 0, 0, 0.6) 55%,
            rgba(0, 0, 0, 0.7) 100%
        );
    }
}

/* Content Container - Split Layout - REDUCED SCALE */
.hero-overlay-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem; /* Reduced from 4rem */
    max-width: 1200px; /* Reduced from 1400px */
    width: 85%; /* Reduced from 90% */
    padding: 0;
    animation: contentReveal 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes contentReveal {
    0% {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

/* Left Side - Brand Info - REDUCED PADDING */
.hero-overlay-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.5rem; /* Reduced from 3rem */
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-right: none;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    position: relative;
    overflow: hidden;
    animation: slideInLeft 1s ease-out 0.3s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-overlay-left::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Right Side - CTA - REDUCED PADDING */
.hero-overlay-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 2rem 2.5rem; /* Reduced from 3rem */
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-left: none;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
    position: relative;
    overflow: hidden;
    animation: slideInRight 1s ease-out 0.5s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Pre-title with Animation */
.hero-overlay-pretitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 50px;
    animation: fadeInSlide 1s ease-out 0.7s both;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-overlay-pretitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #F9F295);
    animation: expandLine 0.8s ease-out 0.9s both;
}

@keyframes expandLine {
    from { width: 0; }
    to { width: 40px; }
}

/* Main Title - REDUCED SIZE */
.hero-overlay-title {
    font-family: 'Cinzel', serif;
    margin-bottom: 1.5rem; /* Reduced from 2rem */
    position: relative;
    animation: fadeInSlide 1s ease-out 0.9s both;
}

.brand-name {
    display: block;
    font-size: clamp(2.8rem, 5.5vw, 5rem); /* Reduced from clamp(3.5rem, 7vw, 6.5rem) */
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
    color: transparent;
    background: linear-gradient(135deg, #FFFFFF 0%, #D4AF37 50%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s linear infinite, fadeInSlide 1s ease-out 0.9s both;
    text-shadow: 
        0 0 30px rgba(212, 175, 55, 0.5),
        0 0 60px rgba(212, 175, 55, 0.3);
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

.by-line {
    display: block;
    font-size: clamp(1rem, 1.8vw, 1.5rem); /* Reduced from clamp(1.2rem, 2vw, 1.8rem) */
    font-weight: 300;
    font-style: italic;
    letter-spacing: 2px; /* Reduced from 3px */
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem; /* Reduced from 0.8rem */
    animation: fadeInSlide 1s ease-out 1.1s both;
}

/* Decorative Accent Line - REDUCED */
.hero-overlay-accent {
    width: 90px; /* Reduced from 120px */
    height: 3px; /* Reduced from 4px */
    background: linear-gradient(90deg, #D4AF37, transparent);
    margin: 1.5rem 0; /* Reduced from 2rem */
    position: relative;
    animation: fadeInSlide 1s ease-out 1.3s both;
}

.hero-overlay-accent::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px; /* Reduced from 12px */
    height: 10px; /* Reduced from 12px */
    background: #D4AF37;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

/* Subtitle - REDUCED SIZE */
.hero-overlay-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.95rem, 1.8vw, 1.3rem); /* Reduced from clamp(1.1rem, 2vw, 1.5rem) */
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 450px; /* Reduced from 500px */
    text-align: right;
    margin-bottom: 2rem; /* Reduced from 2.5rem */
    animation: fadeInSlide 1s ease-out 1.1s both;
    position: relative;
}

/* CTA Button - REDUCED SIZE */
.hero-overlay-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem; /* Reduced from 1rem */
    padding: 1rem 2.5rem; /* Reduced from 1.2rem 3rem */
    background: linear-gradient(135deg, #D4AF37 0%, #F9F295 100%);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; /* Reduced from 0.85rem */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px; /* Reduced from 2px */
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInSlide 1s ease-out 1.3s both;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%); /* Reduced from 15px */
}

.hero-overlay-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.hero-overlay-button::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-overlay-button:hover {
    transform: translateX(10px);
    box-shadow: 
        0 10px 40px rgba(212, 175, 55, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.hero-overlay-button:hover::before {
    left: 100%;
}

.hero-overlay-button:hover::after {
    transform: translateX(5px);
}

/* Floating Particles Effect */
.hero-overlay-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #D4AF37, transparent);
    border-radius: 50%;
    animation: floatParticle 8s linear infinite;
    opacity: 0;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) translateX(0) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) translateX(50px) scale(1);
    }
}

/* Trust Badges Container - REDUCED */
.hero-overlay-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem; /* Reduced from 2rem */
    margin-top: 1.5rem; /* Reduced from 2rem */
    padding-top: 1.5rem; /* Reduced from 2rem */
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    animation: fadeInSlide 1s ease-out 1.5s both;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem; /* Reduced from 0.5rem */
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.trust-badge-icon {
    width: 42px; /* Reduced from 50px */
    height: 42px; /* Reduced from 50px */
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    font-size: 1.2rem; /* Reduced from 1.4rem */
    color: #D4AF37;
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge-icon {
    background: rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.trust-badge-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem; /* Reduced from 0.75rem */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px; /* Reduced from 1px */
    color: rgba(255, 255, 255, 0.8);
}

.trust-badge-subtext {
    font-size: 0.6rem; /* Reduced from 0.65rem */
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Customer Reviews Badge - REDUCED */
.hero-reviews-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem; /* Reduced from 0.8rem */
    margin-top: 1.2rem; /* Reduced from 1.5rem */
    padding: 0.8rem 1.2rem; /* Reduced from 1rem 1.5rem */
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    animation: fadeInSlide 1s ease-out 1.7s both;
}

.reviews-stars {
    display: flex;
    gap: 0.15rem; /* Reduced from 0.2rem */
    color: #D4AF37;
    font-size: 0.9rem; /* Reduced from 1rem */
}

.reviews-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem; /* Reduced from 0.85rem */
    color: rgba(255, 255, 255, 0.9);
}

.reviews-count {
    font-weight: 700;
    color: #D4AF37;
}

/* Security Indicators - REDUCED */
.hero-security-badges {
    display: flex;
    align-items: center;
    gap: 1.2rem; /* Reduced from 1.5rem */
    margin-top: 1.2rem; /* Reduced from 1.5rem */
    padding: 0.6rem 1rem; /* Reduced from 0.8rem 1.2rem */
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    animation: fadeInSlide 1s ease-out 1.9s both;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem; /* Reduced from 0.5rem */
    font-size: 0.7rem; /* Reduced from 0.75rem */
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Montserrat', sans-serif;
}

.security-badge i {
    color: #4CAF50;
    font-size: 0.9rem; /* Reduced from 1rem */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-overlay-content {
        gap: 1.5rem;
        width: 90%;
        max-width: 1100px;
    }
    
    .hero-overlay-left,
    .hero-overlay-right {
        padding: 2rem;
    }
    
    .brand-name {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
    }
}

@media (max-width: 992px) {
    .hero-overlay-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 90%;
        max-width: 600px;
    }
    
    .hero-overlay-left,
    .hero-overlay-right {
        clip-path: none;
        border: 2px solid rgba(212, 175, 55, 0.3);
        align-items: center;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .hero-overlay-pretitle {
        padding-left: 0;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        justify-content: center;
    }
    
    .hero-overlay-pretitle::before {
        position: static;
        transform: none;
    }
    
    .hero-overlay-subtitle {
        text-align: center;
        max-width: 100%;
    }
    
    .brand-name {
        font-size: clamp(2.2rem, 5vw, 4rem);
    }
    
    .hero-overlay-trust {
        gap: 1rem;
    }
    
    .trust-badge-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-overlay-content {
        width: 92%;
        gap: 1.2rem;
        max-width: 500px;
    }
    
    .hero-overlay-left,
    .hero-overlay-right {
        padding: 1.5rem 1.2rem;
    }
    
    .hero-overlay-pretitle {
        font-size: 0.65rem;
        letter-spacing: 2px;
    }
    
    .brand-name {
        font-size: clamp(2rem, 4.5vw, 3.5rem);
        letter-spacing: -1px;
    }
    
    .by-line {
        font-size: clamp(0.85rem, 1.5vw, 1.2rem);
        letter-spacing: 1.5px;
    }
    
    .hero-overlay-accent {
        width: 70px;
        height: 2px;
        margin: 1.2rem auto;
    }
    
    .hero-overlay-accent::after {
        width: 8px;
        height: 8px;
    }
    
    .hero-overlay-subtitle {
        font-size: clamp(0.85rem, 1.6vw, 1.15rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-overlay-button {
        padding: 0.85rem 2rem;
        font-size: 0.7rem;
        gap: 0.6rem;
    }
    
    .hero-overlay-trust {
        flex-wrap: wrap;
        gap: 0.8rem;
        padding-top: 1.2rem;
        margin-top: 1.2rem;
    }
    
    .trust-badge-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .trust-badge-text {
        font-size: 0.65rem;
    }
    
    .trust-badge-subtext {
        font-size: 0.55rem;
    }
    
    .hero-reviews-badge {
        padding: 0.7rem 1rem;
        gap: 0.5rem;
    }
    
    .reviews-stars {
        font-size: 0.8rem;
        gap: 0.1rem;
    }
    
    .reviews-text {
        font-size: 0.7rem;
    }
    
    .hero-security-badges {
        gap: 0.8rem;
        padding: 0.5rem 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .security-badge {
        font-size: 0.65rem;
    }
    
    .security-badge i {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-overlay-content {
        width: 95%;
        padding: 0 0.5rem;
        gap: 1rem;
        max-width: 100%;
    }
    
    .hero-overlay-left,
    .hero-overlay-right {
        padding: 1.2rem 1rem;
        border-radius: 8px;
    }
    
    .hero-overlay-pretitle {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
        gap: 0.6rem;
    }
    
    .hero-overlay-pretitle::before {
        width: 25px;
    }
    
    .brand-name {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
    
    .by-line {
        font-size: clamp(0.75rem, 1.4vw, 1rem);
        letter-spacing: 1px;
        margin-top: 0.3rem;
    }
    
    .hero-overlay-accent {
        width: 60px;
        margin: 1rem auto;
    }
    
    .hero-overlay-subtitle {
        font-size: clamp(0.8rem, 1.5vw, 1rem);
        margin-bottom: 1.2rem;
    }
    
    .hero-overlay-button {
        padding: 0.75rem 1.8rem;
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-overlay-trust {
        flex-direction: row;
        gap: 0.5rem;
        justify-content: space-around;
    }
    
    .trust-badge {
        flex: 1;
        min-width: 0;
    }
    
    .trust-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .trust-badge-text {
        font-size: 0.6rem;
    }
    
    .trust-badge-subtext {
        font-size: 0.5rem;
    }
    
    .hero-reviews-badge {
        width: 100%;
        justify-content: center;
        padding: 0.6rem 0.8rem;
    }
    
    .reviews-stars {
        font-size: 0.75rem;
    }
    
    .reviews-text {
        font-size: 0.65rem;
    }
    
    .hero-security-badges {
        width: 100%;
        flex-direction: column;
        gap: 0.6rem;
        padding: 0.5rem 0.6rem;
    }
    
    .security-badge {
        font-size: 0.6rem;
    }
}

/* Print Styles */
@media print {
    .hero-overlay-section {
        display: none;
    }
}
