/* 
   Blanco Properties x Aurex Merger - THE INSPIRATION REDESIGN (v4 - Beautiful Logo & Solid Career Card)
*/
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');

:root {
    --bg-deep: #0d1531;
    --card-dark: #050a1b; /* Solid Dark Rectangle */
    --text-white: #ffffff;
    --muted-white: rgba(255, 255, 255, 0.6);
    --accent-green: #2ecc71; /* Modern Green for Apply Now */
    --accent-green-hover: #27ae60;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    height: 100%;
    background-color: var(--bg-deep);
}

body { 
    background-color: var(--bg-deep);
    font-family: 'Lato', sans-serif;
    color: var(--text-white);
    text-align: center;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Particles Container */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
}

/* Header & Beautiful Logo Handling */
.simple-header {
    position: relative;
    z-index: 20;
    padding: 60px 20px 20px;
    text-align: center;
    width: 100%;
}

.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.logo-img {
    height: auto;
    max-height: 85px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    /* BEAUTIFUL LOGO FIX: If it's a white square, this helps integrate it */
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
    transition: transform 0.3s ease;
}

.blanco-logo {
    max-height: 110px;
    max-width: 350px;
}

.logo-img:hover {
    transform: scale(1.05);
}

.arrow-icon {
    font-size: 18px;
    color: var(--muted-white);
}

/* Main Content Wrapper */
.content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}

/* Hero Text */
.merger-announcement {
    margin-bottom: 40px;
}

.soon-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-white);
}

.main-headline {
    font-size: clamp(2.5rem, 8vw, 95px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.sub-headline {
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 300;
    color: var(--muted-white);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Links & Buttons */
.merger-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 0;
}

.golden-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 45%, #B38728 70%, #FBF5B7 100%);
    color: #0d1531;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(191, 149, 63, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-size: 0.9rem;
}

.golden-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(191, 149, 63, 0.6);
    filter: brightness(1.1);
}

/* CAREER DARK RECTANGLE CARD */
.hiring-card-container {
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
}

.hiring-card {
    background-color: var(--card-dark); /* Solid Dark Rectangle */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px; /* More architectural rectangular feel */
    padding: 70px 50px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hiring-tag {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--muted-white);
    margin-bottom: 20px;
}

.hiring-card-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.hiring-card-desc {
    font-size: 1.1rem;
    color: var(--muted-white);
    margin-bottom: 45px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 300;
}

.hiring-card-btn {
    display: inline-block;
    padding: 22px 70px;
    background-color: var(--accent-green); /* Vibrant Green Button */
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 2px; /* Rectangular theme */
    transition: all 0.3s ease;
}

.hiring-card-btn:hover {
    background-color: var(--accent-green-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

/* Footer */
.simple-footer {
    position: relative;
    z-index: 20;
    padding: 100px 20px 60px;
    text-align: center;
    width: 100%;
}

.footer-logo-small {
    height: 30px;
    opacity: 0.3;
    margin-bottom: 30px;
    filter: invert(1) grayscale(1);
}

.footer-text {
    font-size: 0.75rem;
    color: var(--muted-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.legal-links a:hover {
    opacity: 1;
}

/* Mobile Overrides (Global) */
@media (max-width: 768px) {
    .logo-wrap { flex-direction: column; gap: 20px; }
    .logo-img { max-height: 70px; max-width: 240px; }
    .blanco-logo { max-height: 100px; max-width: 300px; }
    .arrow-icon { transform: rotate(90deg); }
    .main-headline { font-size: 2.5rem; }
    .merger-links { flex-direction: column; gap: 20px; }
    .hiring-card { padding: 40px 20px; }
    .hiring-card-title { font-size: 1.8rem; }
    .hiring-card-btn { width: 100%; padding: 20px; }
}

/* Smart Cards Expansion Styles */
.blanco-section {
    position: relative;
    z-index: 10;
    padding: 30px 20px 60px; /* Reduced top padding to tighten spacing between sections */
    width: 100%;
    text-align: left;
}

.blanco-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.center-align { text-align: center; }

.section-header {
    max-width: 700px;
    margin: 0 auto 70px;
}

.blanco-heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 25px;
    letter-spacing: -1px;
    color: var(--text-white);
    text-transform: uppercase;
}

.blanco-paragraph {
    font-size: 1.15rem;
    color: var(--muted-white);
    line-height: 1.8;
    font-weight: 300;
}

.smart-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.smart-card {
    background: var(--card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.smart-card:hover {
    transform: translateY(-10px);
    border-color: rgba(46, 204, 113, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-graphic {
    height: 180px;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Smart Graphics (CSS Geometric Shapes) */
.graphic-shape {
    position: absolute;
    opacity: 0.8;
    transition: transform 0.8s ease;
}

.smart-card:hover .graphic-shape {
    transform: scale(1.1) rotate(5deg);
}

.shape-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent-green);
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.2);
}

.shape-square {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255,255,255,0.8);
    transform: rotate(45deg);
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 45px solid transparent;
    border-right: 45px solid transparent;
    border-bottom: 78px solid var(--accent-green);
    opacity: 0.6;
}

.smart-card-content {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    color: var(--accent-green);
    margin-bottom: 20px;
    opacity: 0.8;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.card-desc {
    color: var(--muted-white);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 300;
}

/* Final Mobile Overrides for New Sections */
@media (max-width: 768px) {
    .smart-cards-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    .blanco-section { 
        padding: 40px 15px; 
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .blanco-heading {
        font-size: 2.2rem;
    }
    
    .card-graphic {
        height: 140px;
    }
}
