/* ================================================================
   TGT HERO SECTION - GLOBAL STYLES (V3 - FINAL)
   This version fixes the excessive height on desktop screens.
   ================================================================ */

/*
 * ----------------------------------------------------------------
 * 1. GLOBAL VARIABLES & CONFIGURATION
 * ----------------------------------------------------------------
 */
:root {
    --tgt-primary: #102842;
    --tgt-accent: #7a2448;
    --tgt-gold: #d4a574;
    --tgt-white: #FFFFFF;
    --tgt-bg-light: #F9F7F5;
    --tgt-text-dark: #102842;
    --tgt-text-light: #555555;
    --tgt-border-color: #EAEAEA;
    --tgt-font-heading: 'Montserrat', sans-serif;
    --tgt-font-body: 'Montserrat', sans-serif;
    --tgt-section-spacing: clamp(6rem, 15vh, 10rem); /* Generous padding for the hero */
    --tgt-container-padding: clamp(1.5rem, 5vw, 2rem);
    --tgt-transition-normal: 0.3s ease;
    --tgt-transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/*
 * ----------------------------------------------------------------
 * 2. BASE HERO STYLES (GLOBALLY CORRECTED LAYOUT)
 * ----------------------------------------------------------------
 */
.tgt-hero {
    position: relative;
    background: linear-gradient(135deg, var(--tgt-primary) 0%, #0d1f36 20%, var(--tgt-accent) 100%);
    overflow: hidden;
    color: white;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    
    /* --- CRITICAL FIX --- */
    /* Removed min-height: 100vh and display: flex. */
    /* Height is now controlled by responsive padding for a tighter, more professional look. */
    padding: var(--tgt-section-spacing) 0;
}

/* Background Effects (Unchanged) */
.tgt-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(122, 36, 72, 0.2) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}
.tgt-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 20px 30px, rgba(212, 165, 116, 0.4), transparent),
        radial-gradient(1px 1px at 40px 70px, rgba(255, 255, 255, 0.3), transparent);
    background-size: 150px 120px;
    animation: heroParticles 15s linear infinite;
}
@keyframes heroParticles {
    from { transform: translateY(0); }
    to { transform: translateY(-120px); }
}

.tgt-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--tgt-container-padding);
    position: relative;
    z-index: 2;
    width: 100%;
}

/*
 * ----------------------------------------------------------------
 * 3. GLOBAL CONTENT STYLES (CENTERED BY DEFAULT)
 * ----------------------------------------------------------------
 */
.tgt-hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; /* This perfectly centers all content */
    text-align: center;
}

/* Badge */
.tgt-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--tgt-gold) 0%, #e6b885 100%);
    color: var(--tgt-primary);
    padding: clamp(6px, 2vw, 8px) clamp(15px, 4vw, 20px);
    border-radius: 25px;
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Title */
.tgt-hero-title {
    font-family: var(--tgt-font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    color: white;
    max-width: 1100px;
}
.tgt-hero-title .highlight {
    color: var(--tgt-gold);
    position: relative;
    display: inline-block;
}
.tgt-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--tgt-gold);
}

/* Subtitle */
.tgt-hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin: 0 auto 2.5rem auto;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 750px;
}

/*
 * ----------------------------------------------------------------
 * 4. GLOBALLY UPGRADED SHINING BUTTON
 * ----------------------------------------------------------------
 */
.tgt-hero-cta {
    margin-top: 1rem;
}

.tgt-cta-primary {
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-family: var(--tgt-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--tgt-primary);
    background: var(--tgt-gold);
    border: 2px solid var(--tgt-gold);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--tgt-transition-normal);
    z-index: 1;
    max-width: none;
    animation: none;
}

.tgt-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 75%;
    height: 100%;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: left var(--tgt-transition-slow);
}

.tgt-cta-primary:hover {
    background: var(--tgt-accent);
    border-color: var(--tgt-accent);
    color: var(--tgt-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tgt-cta-primary:hover::before {
    left: 120%;
}

/*
 * ----------------------------------------------------------------
 * 5. OTHER ORIGINAL STYLES (STATS, TRUST INDICATORS, ETC.)
 * These remain for pages that use them.
 * ----------------------------------------------------------------
 */
.tgt-hero-stats {
    display: flex;
    gap: clamp(15px, 5vw, 80px);
    margin: clamp(25px, 6vw, 70px) 0;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.tgt-stat {
    text-align: center;
    flex-shrink: 0;
    min-width: clamp(80px, 20vw, 200px);
    padding: clamp(10px, 3vw, 25px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    flex: 1 1 auto;
}
.tgt-stat-number {
    display: block;
    font-family: var(--tgt-font-heading);
    font-size: clamp(1.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--tgt-gold);
    line-height: 1;
    margin-bottom: clamp(5px, 2vw, 15px);
}
.tgt-stat-label {
    font-size: clamp(0.8rem, 2.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}
.tgt-trust-indicators {
    margin-top: clamp(25px, 6vw, 50px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 5vw, 50px);
    flex-wrap: wrap;
}
.tgt-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    color: white;
    white-space: nowrap;
    font-weight: 500;
}
.tgt-trust-icon {
    width: clamp(20px, 5vw, 24px);
    height: clamp(20px, 5vw, 24px);
    background: var(--tgt-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(12px, 3vw, 14px);
    color: var(--tgt-primary);
    font-weight: bold;
    flex-shrink: 0;
}