/* style.css */
/* ==========================================================================
   1. CORE VARIABLES & RESET
   ========================================================================== */
:root {
    --blk-deep: #050505;
    --blk-light: #151515;
    --wht-pure: #ffffff;
    --wht-off: #fcfcfc;
    --gld-main: #D4AF37;
    --gld-glow: rgba(212, 175, 55, 0.4);
    --text-dark: #333333;
    --text-muted: #666666;
    --trans-fast: 0.3s ease;
    --trans-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
html { scroll-behavior: smooth; }
body { background-color: var(--wht-pure); color: var(--text-dark); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; transition: var(--trans-fast); }
.gold-txt { color: var(--gld-main); }
.section-pad { padding: 120px 5%; } 

/* ==========================================================================
   2. NAVIGATION & LOGO
   ========================================================================== */
nav {
    position: fixed; top: 0; width: 100%; padding: 25px 5%;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 10000; transition: var(--trans-fast);
    background: rgba(5, 5, 5, 0); border-bottom: 1px solid transparent;
}

/* Force dark header on scroll OR globally if it's a sub-page */
nav.scrolled, body.sub-page nav {
    background: rgba(5, 5, 5, 0.98); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3); padding: 15px 5%;
}

.logo { 
    position: relative; 
    z-index: 10001; 
    display: flex; 
    align-items: center; 
    max-width: calc(100% - 70px); 
}
.site-logo {
    height: 55px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--trans-fast);
}

.menu-toggle { 
    display: none; 
    cursor: pointer; 
    flex-direction: column; 
    gap: 6px; 
    z-index: 10005; 
    flex-shrink: 0; 
    position: relative; 
    padding: 10px;
    background: transparent;
    border: none;
}
.menu-toggle span { 
    display: block; 
    width: 30px; 
    height: 3px; 
    background-color: #ffffff !important; 
    transition: var(--trans-fast); 
}

.nav-links { display: flex; gap: 40px; }
.nav-links a {
    color: var(--wht-pure); font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 2px; position: relative;
}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 2px;
    bottom: -8px; left: 0; background-color: var(--gld-main); transition: var(--trans-fast);
}
.nav-links a:hover::after { width: 100%; }

/* ==========================================================================
   3. MULTI-IMAGE HERO SLIDER
   ========================================================================== */
.hero { position: relative; height: 100vh; min-height: 600px; width: 100%; overflow: hidden; background: var(--blk-deep); z-index: 2; }
.hero-slides { width: 100%; height: 100%; position: relative; }
.slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; transition: opacity 1.5s ease-in-out;
    background-size: cover; background-position: center;
    display: flex; align-items: center; padding: 0 5%; 
}
.slide::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(5,5,5,0.9) 0%, rgba(5,5,5,0.3) 100%);
    z-index: 0;
}
.slide.active { opacity: 1; z-index: 1; }

.hero-content {
    position: relative; z-index: 2; max-width: 800px; 
    transform: translateY(30px); opacity: 0; transition: all 1s ease 0.5s;
}
.slide.active .hero-content { transform: translateY(0); opacity: 1; }

.hero-content h1 { font-size: clamp(3rem, 6vw, 5.5rem); color: var(--wht-pure); line-height: 1.1; margin-bottom: 20px; font-weight: 300;}
.hero-content p { font-size: 1.2rem; color: #dddddd; margin-bottom: 40px; max-width: 600px; }

.btn-gold {
    display: inline-block; padding: 18px 45px; background: var(--gld-main);
    color: var(--blk-deep); font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; position: relative; overflow: hidden; z-index: 1; border-radius: 4px;
}
.btn-gold::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--wht-pure); transition: var(--trans-fast); z-index: -1;
}
.btn-gold:hover::before { left: 0; }
.btn-gold:hover { color: var(--blk-deep); box-shadow: 0 10px 30px var(--gld-glow); }

/* ==========================================================================
   4. CLEAN CORPORATE ABOUT US
   ========================================================================== */
.about-section { background: var(--wht-pure); position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1400px; margin: 0 auto; }

.about-img-wrapper { position: relative; padding-bottom: 25px; padding-right: 25px; }
.about-img-wrapper img { 
    width: 100%; height: auto; object-fit: cover; 
    border-radius: 8px; position: relative; z-index: 2; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); 
}
.about-img-wrapper::after { 
    content: ''; position: absolute; bottom: 0; right: 0; 
    width: 80%; height: 80%; background: var(--gld-main); 
    z-index: 1; border-radius: 8px; 
}

.about-text h4 { color: var(--gld-main); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 15px; font-weight: 700;}
.about-text h2 { font-size: 3.2rem; color: var(--blk-deep); line-height: 1.1; margin-bottom: 25px; font-weight: 800;}
.about-text p { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 40px; line-height: 1.8;}

.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid var(--border-light); padding-top: 30px; }
.stat-item h3 { font-size: 2.8rem; color: var(--blk-deep); font-weight: 900; line-height: 1;}
.stat-item span { color: var(--gld-main); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; display: block; margin-top: 5px;}

/* ==========================================================================
   5. DIVISIONS NAVIGATION 
   ========================================================================== */
.divisions-section { background: var(--blk-deep); color: var(--wht-pure); }
.sec-title-center { text-align: center; margin-bottom: 60px; }
.sec-title-center h2 { font-size: 3.5rem; font-weight: 300; }

.divisions-accordion { display: flex; height: 600px; width: 100%; max-width: 1400px; margin: 0 auto; gap: 10px; }
.div-panel {
    flex: 1; position: relative; background-size: cover; background-position: center;
    transition: var(--trans-slow); cursor: pointer; overflow: hidden; border-radius: 4px;
}
.div-panel::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 100%); transition: var(--trans-slow);
}
.div-panel:hover { flex: 4; }
.div-panel:hover::before { background: linear-gradient(to top, rgba(212,175,55,0.85) 0%, rgba(0,0,0,0.2) 100%); }

.div-content { position: absolute; bottom: 30px; left: 30px; right: 30px; transition: var(--trans-slow); }
.div-panel h3 { font-size: 1.5rem; margin-bottom: 10px; white-space: nowrap; transform: rotate(-90deg); transform-origin: left bottom; position: absolute; bottom: 30px; left: 30px; transition: var(--trans-slow); }

.div-panel:hover h3 { transform: rotate(0); position: relative; bottom: 0; left: 0; font-size: 2.5rem; white-space: normal; }
.div-details { opacity: 0; max-height: 0; overflow: hidden; transition: var(--trans-slow); }
.div-panel:hover .div-details { opacity: 1; max-height: 200px; margin-top: 15px; }
.div-details p { margin-bottom: 20px; font-size: 1rem; color: #fcfcfc; }
.div-link { color: var(--blk-deep); background: var(--wht-pure); padding: 12px 25px; display: inline-block; font-weight: bold; text-transform: uppercase; font-size: 0.85rem; border-radius: 4px;}

/* ==========================================================================
   6. LATEST NEWS & BLOG
   ========================================================================== */
.news-section { background: var(--wht-off); }
.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 40px; max-width: 1400px; margin: 0 auto; }
.news-card { background: var(--wht-pure); border-radius: 8px; overflow: hidden; border-bottom: 4px solid transparent; transition: var(--trans-fast); box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.news-card:hover { border-bottom-color: var(--gld-main); transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.news-img { height: 250px; background-size: cover; background-position: center; }
.news-info { padding: 40px 30px; }
.news-date { color: var(--gld-main); font-size: 0.85rem; font-weight: 700; margin-bottom: 15px; display: block; text-transform: uppercase; letter-spacing: 1px;}
.news-info h3 { font-size: 1.5rem; color: var(--blk-deep); margin-bottom: 15px; font-weight: 800;}
.news-info p { color: var(--text-muted); margin-bottom: 25px; font-size: 1rem; line-height: 1.7;}
.read-more { color: var(--blk-deep); font-weight: 800; text-transform: uppercase; font-size: 0.85rem; display: flex; align-items: center; gap: 5px; }
.read-more:hover { color: var(--gld-main); }

/* ==========================================================================
   7. CLIENT / PARTNER LOGO SLIDER
   ========================================================================== */
.partner-section { padding: 60px 0; background: var(--wht-pure); border-top: 1px solid var(--border-light); overflow: hidden; }
.partner-track { display: flex; width: calc(250px * 14); animation: scrollMarquee 30s linear infinite; }
.partner-logo { width: 250px; display: flex; justify-content: center; align-items: center; padding: 0 40px; filter: grayscale(100%) opacity(0.5); transition: var(--trans-fast); min-height: 50px; }
.partner-logo:hover { filter: grayscale(0%) opacity(1); }
.partner-logo img { max-height: 50px; width: auto; }
@keyframes scrollMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(calc(-250px * 7)); } }

/* ==========================================================================
   8. FULL ENTERPRISE FOOTER
   ========================================================================== */
footer { background: var(--blk-deep); color: #aaaaaa; padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr 1fr; gap: 50px; max-width: 1400px; margin: 0 auto; padding: 0 5% 60px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.ft-col h4 { color: var(--wht-pure); font-size: 1.1rem; margin-bottom: 25px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }

.ft-about .site-logo { margin-bottom: 20px; display: block; height: 45px; } 
.ft-about p { margin-bottom: 25px; font-size: 0.95rem; line-height: 1.8;}
.ft-contact li { list-style: none; margin-bottom: 15px; font-size: 0.95rem; display: flex; gap: 10px; }
.ft-contact i { color: var(--gld-main); font-style: normal; }

.ft-links ul { list-style: none; }
.ft-links li { 
    margin-bottom: 15px; 
    position: relative; 
    padding-left: 15px;
}
.ft-links li::before {
    content: '•'; 
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--gld-main);
    font-size: 1.2rem;
    line-height: 1.4;
}
.ft-links a { color: #aaaaaa; font-size: 0.95rem; transition: var(--trans-fast); display: inline-block; }
.ft-links a:hover { color: var(--gld-main); transform: translateX(5px); }

.ft-news .ft-news-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center;}
.ft-news-img { width: 70px; height: 70px; background-size: cover; flex-shrink: 0; border-radius: 4px;}
.ft-news-txt h5 { color: var(--wht-pure); font-size: 0.95rem; font-weight: 600; margin-bottom: 5px; transition: var(--trans-fast); cursor: pointer; line-height: 1.4;}
.ft-news-txt h5:hover { color: var(--gld-main); }
.ft-news-txt span { font-size: 0.8rem; color: var(--gld-main); font-weight: 700; text-transform: uppercase;}

.ft-social { display: flex; gap: 15px; }
.social-icon { width: 45px; height: 45px; border: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: center; align-items: center; color: var(--wht-pure); border-radius: 50%; transition: var(--trans-fast);}
.social-icon:hover { background: var(--gld-main); border-color: var(--gld-main); color: var(--blk-deep); transform: translateY(-3px);}

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 30px 5%; max-width: 1400px; margin: 0 auto; font-size: 0.9rem; }
.legal-links { display: flex; gap: 30px; }
.legal-links a { color: #aaaaaa; transition: var(--trans-fast);}
.legal-links a:hover { color: var(--wht-pure); }

/* ==========================================================================
   9. RESPONSIVE QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .menu-toggle { display: flex; }
    
    .nav-links {
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(5, 5, 5, 0.98); flex-direction: column;
        align-items: center; padding: 0; max-height: 0; overflow: hidden;
        transition: all var(--trans-slow);
        border-bottom: 1px solid transparent;
        gap: 0; 
        opacity: 0;
        visibility: hidden;
    }
    .nav-links.active { 
        max-height: 600px !important; 
        padding: 20px 0 !important; 
        border-bottom: 1px solid var(--gld-main) !important; 
        opacity: 1 !important;
        visibility: visible !important;
    }
    .nav-links a { margin: 15px 0; font-size: 1.1rem; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text { padding-left: 0; text-align: center; }
    .about-text h2 { font-size: 2.8rem; }
    .about-img-wrapper { max-width: 800px; margin: 0 auto; }
    
    .divisions-accordion { flex-direction: column; height: auto; }
    .div-panel { height: 120px; flex: none; transition: height var(--trans-slow); }
    .div-panel:hover, .div-panel:focus, .div-panel:active { height: 350px; flex: none; }
    .div-panel h3 { transform: rotate(0); bottom: 20px; left: 20px; font-size: 1.5rem; }
    .div-panel:hover h3 { font-size: 1.8rem; bottom: 20px; left: 20px; white-space: normal; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

@media (max-width: 768px) {
    /* Smaller Mobile Logo per request */
    .site-logo { height: 45px !important; }

    .section-pad { padding: 80px 5%; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px;}
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    
    .hero-content h1 { font-size: 2.8rem; }
    .about-text h2 { font-size: 2.2rem; }
    .about-stats { grid-template-columns: 1fr; gap: 30px; text-align: center; }
}

/* ==========================================================================
   10. ADDITIONAL PAGE STYLES 
   ========================================================================== */

/* ABOUT PAGE SPECIFIC STYLES */
.inner-hero { 
    position: relative; height: 60vh; min-height: 400px; 
    background: var(--blk-deep) url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop') center/cover; 
    display: flex; align-items: center; justify-content: center; text-align: center; 
}
.inner-hero::after { 
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 
    background: linear-gradient(to bottom, rgba(5,5,5,0.7), rgba(5,5,5,0.95)); 
}
.hero-text { position: relative; z-index: 2; padding: 0 20px; }
.hero-text h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); color: var(--wht-pure); margin-bottom: 15px; font-weight: 300; }
.hero-text p { color: var(--gld-main); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 3px; }

/* STORY SECTION */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; align-items: center; }
.story-img { box-shadow: -20px 20px 0px var(--gld-main); background: #eee; }
.story-text h2 { font-size: 2.8rem; color: var(--blk-deep); margin-bottom: 25px; line-height: 1.2; }
.story-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; }

/* TESTIMONIALS */
.testimonials { background: var(--wht-off); text-align: center; }
.test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1400px; margin: 40px auto 0; }
.test-card { background: var(--wht-pure); padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); position: relative; }
.test-card::before { content: '\"'; font-size: 6rem; color: rgba(212,175,55,0.2); position: absolute; top: -10px; left: 20px; font-family: Georgia, serif; line-height: 1; }
.test-card p { font-style: italic; color: var(--text-dark); margin-bottom: 20px; font-size: 1.05rem; position: relative; z-index: 2; }
.test-card h5 { color: var(--gld-main); font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.test-card span { font-size: 0.85rem; color: var(--text-muted); }

/* TEAM TEASER */
.team-teaser { background: var(--blk-deep); color: var(--wht-pure); text-align: center; }

/* CONTACT PAGE SPECIFIC STYLES */
.contact-hero { height: 50vh; min-height: 350px; }
.contact-hero::after { background: linear-gradient(to bottom, rgba(5,5,5,0.8), rgba(5,5,5,0.98)); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; max-width: 1400px; margin: 0 auto; }
.contact-info h2 { font-size: 2.5rem; color: var(--blk-deep); margin-bottom: 20px; }
.contact-info p { color: var(--text-muted); margin-bottom: 40px; }

.info-block { margin-bottom: 30px; }
.info-block h4 { color: var(--gld-main); text-transform: uppercase; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 10px; }
.info-block p, .info-block a { color: var(--blk-deep); font-size: 1.1rem; font-weight: 600; display: block; }

.contact-form { background: var(--blk-light); padding: 50px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.contact-form h3 { color: var(--wht-pure); font-size: 1.8rem; margin-bottom: 30px; font-weight: 300; }

.form-group { margin-bottom: 25px; }
.form-group label { display: block; color: var(--gld-main); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }

.form-control { width: 100%; padding: 15px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--wht-pure); font-size: 1rem; transition: var(--trans-fast); outline: none; }
.form-control:focus { border-color: var(--gld-main); background: rgba(255,255,255,0.1); }
textarea.form-control { height: 150px; resize: vertical; }

/* DIVISIONS PAGE SPECIFIC STYLES */
.divisions-hero { 
    height: 50vh; min-height: 350px; 
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070&auto=format&fit=crop'); 
}
.divisions-hero::after { background: linear-gradient(to bottom, rgba(5,5,5,0.8), rgba(5,5,5,0.98)); }

.directory-grid { display: grid; grid-template-columns: 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; }
.dir-card { display: flex; background: var(--wht-pure); box-shadow: 0 15px 40px rgba(0,0,0,0.05); overflow: hidden; transition: var(--trans-fast); border-left: 4px solid transparent; }
.dir-card:hover { border-left-color: var(--gld-main); transform: translateY(-5px); }

.dir-img { width: 40%; background-size: cover; background-position: center; min-height: 300px; }
.dir-content { width: 60%; padding: 50px; display: flex; flex-direction: column; justify-content: center; }
.dir-content h2 { font-size: 2.2rem; color: var(--blk-deep); margin-bottom: 15px; }
.dir-content p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; }

.btn-outline { align-self: flex-start; padding: 12px 30px; border: 2px solid var(--gld-main); color: var(--gld-main); text-transform: uppercase; font-weight: bold; letter-spacing: 1px; transition: var(--trans-fast); }
.btn-outline:hover { background: var(--gld-main); color: var(--wht-pure); }

/* ICE BUSINESS DIVISION SPECIFIC STYLES */
.business-hero { height: 60vh; min-height: 400px; }

.overview { background: var(--wht-pure); }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; align-items: center; }
.overview-text h2 { font-size: 2.5rem; color: var(--blk-deep); margin-bottom: 20px; line-height: 1.2; }
.overview-text p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 20px; }
.overview-image { border: 1px solid var(--gld-main); padding: 20px; background: var(--wht-off); }
.overview-image img { width: 100%; height: auto; box-shadow: 15px 15px 0px rgba(0,0,0,0.05); }

.solutions { background: var(--blk-deep); color: var(--wht-pure); }
.sec-header { text-align: center; margin-bottom: 60px; max-width: 800px; margin-left: auto; margin-right: auto; }
.sec-header h2 { font-size: 2.8rem; font-weight: 300; margin-bottom: 15px; }
.sec-header p { color: #aaa; font-size: 1.1rem; }

.solutions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; }
.solution-card { background: var(--blk-light); padding: 40px 30px; border-top: 3px solid transparent; transition: var(--trans-fast); position: relative; overflow: hidden; }
.solution-card:hover { border-top-color: var(--gld-main); transform: translateY(-5px); background: #1a1a1a; }

.icon-wrap { width: 60px; height: 60px; background: rgba(212, 175, 55, 0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 25px; }
.icon-wrap svg { width: 30px; height: 30px; fill: var(--gld-main); }

.solution-card h3 { font-size: 1.5rem; margin-bottom: 15px; }
.solution-card p { color: #aaa; font-size: 0.95rem; margin-bottom: 20px; }
.solution-link { color: var(--gld-main); font-size: 0.85rem; text-transform: uppercase; font-weight: bold; letter-spacing: 1px; display: inline-flex; align-items: center; gap: 5px; }
.solution-link:hover { color: var(--wht-pure); }

/* DIVISION HEROES */
.one-hero { height: 60vh; min-height: 400px; }
.security-hero { height: 60vh; min-height: 400px; }
.tech-hero { height: 60vh; min-height: 400px; }

/* NEWS ARCHIVE SPECIFIC STYLES */
.news-hero { height: 50vh; min-height: 350px; }

.news-archive-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; }
.news-archive-card { background: var(--wht-pure); border-bottom: 3px solid transparent; transition: var(--trans-fast); box-shadow: 0 10px 30px rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.news-archive-card:hover { border-bottom-color: var(--gld-main); transform: translateY(-10px); }
.news-archive-img { height: 250px; background-color: #ddd; background-size: cover; background-position: center; }
.news-archive-info { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.news-archive-date { color: var(--gld-main); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; display: block; text-transform: uppercase; }
.news-archive-info h3 { font-size: 1.4rem; color: var(--blk-deep); margin-bottom: 15px; }
.news-archive-info p { color: var(--text-muted); margin-bottom: 25px; font-size: 0.95rem; flex-grow: 1; }

/* TEAM PAGE SPECIFIC STYLES */
.team-hero { height: 50vh; min-height: 350px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; max-width: 1400px; margin: 0 auto; }
.team-card { background: var(--wht-pure); padding: 30px; text-align: center; border-bottom: 3px solid transparent; transition: var(--trans-fast); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.team-card:hover { border-bottom-color: var(--gld-main); transform: translateY(-10px); }
.team-img { width: 180px; height: 180px; border-radius: 50%; margin: 0 auto 20px; object-fit: cover; border: 3px solid var(--wht-off); box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.team-card h3 { font-size: 1.5rem; color: var(--blk-deep); margin-bottom: 5px; }
.team-card p { color: var(--gld-main); font-size: 0.9rem; text-transform: uppercase; font-weight: 600; letter-spacing: 1px; margin-bottom: 20px; }
.team-social { display: flex; justify-content: center; gap: 15px; }
.team-social a { display: flex; align-items: center; justify-content: center; width: 35px; height: 35px; background: var(--blk-deep); color: var(--wht-pure); border-radius: 50%; font-size: 0.8rem; font-weight: bold; }
.team-social a:hover { background: var(--gld-main); color: var(--blk-deep); }

/* SINGLE DETAIL & SIDEBAR LAYOUTS (Articles & Services) */
.single-news-hero, .service-hero { height: 50vh; min-height: 350px; }
.single-news-meta { color: var(--gld-main); font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 15px; }

.single-layout-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; max-width: 1400px; margin: 0 auto; align-items: start; }
.single-main-content { background: var(--wht-pure); padding: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-radius: 4px; }
.lead-paragraph { font-size: 1.25rem; font-weight: 600; color: var(--blk-deep); line-height: 1.8; margin-bottom: 30px; border-left: 4px solid var(--gld-main); padding-left: 20px; }
.single-main-content h2 { font-size: 2rem; color: var(--blk-deep); margin: 35px 0 15px; }
.single-main-content p { color: var(--text-muted); font-size: 1.1rem; line-height: 1.8; margin-bottom: 25px; }

.single-main-content blockquote {
    background: var(--wht-off); border-left: 4px solid var(--gld-main); padding: 25px 30px;
    margin: 30px 0; font-style: italic; font-size: 1.15rem; color: var(--blk-deep);
}

.deliverables-list { list-style: none; margin: 25px 0 35px; }
.deliverables-list li { margin-bottom: 15px; font-size: 1.05rem; color: var(--text-dark); position: relative; padding-left: 25px; }
.deliverables-list li::before { content: '■'; position: absolute; left: 0; color: var(--gld-main); font-size: 0.9rem; }

.article-footer-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 50px; padding-top: 30px; border-top: 1px solid #eee; flex-wrap: gap; gap: 20px; }

.single-sidebar { display: flex; flex-direction: column; gap: 30px; }
.sidebar-widget { background: var(--wht-pure); padding: 35px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-radius: 4px; border-top: 3px solid var(--gld-main); }
.sidebar-widget h4 { color: var(--blk-deep); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }

.sidebar-news-list, .sidebar-nav-list { list-style: none; }
.sidebar-news-list li, .sidebar-nav-list li { margin-bottom: 18px; border-bottom: 1px solid #f0f0f0; padding-bottom: 12px; }
.sidebar-news-list a, .sidebar-nav-list a { color: var(--blk-deep); font-weight: 600; font-size: 0.95rem; display: block; margin-bottom: 5px; }
.sidebar-news-list a:hover, .sidebar-nav-list a:hover { color: var(--gld-main); }
.sidebar-news-list span { font-size: 0.8rem; color: var(--gld-main); font-weight: 700; text-transform: uppercase; }

.sidebar-cta { background: var(--blk-deep); color: var(--wht-pure); border-top: 3px solid var(--gld-main); }
.sidebar-cta h4 { color: var(--wht-pure); }
.sidebar-cta p { color: #aaa; margin-bottom: 20px; font-size: 0.95rem; }

/* COOKIE CONSENT BANNER */
.cookie-banner { 
    position: fixed; bottom: -150%; left: 0; width: 100%; 
    background: var(--blk-light); color: var(--wht-pure); padding: 20px 5%; 
    display: flex; justify-content: space-between; align-items: center; 
    z-index: 100000; transition: bottom var(--trans-slow); 
    border-top: 2px solid var(--gld-main); box-shadow: 0 -10px 40px rgba(0,0,0,0.8); 
}
.cookie-banner.show { bottom: 0; }
.cookie-content { max-width: 800px; }
.cookie-content p { margin: 0; font-size: 0.95rem; color: #aaaaaa; line-height: 1.6; }
.cookie-content a { color: var(--gld-main); font-weight: bold; text-decoration: underline; }
.cookie-content a:hover { color: var(--wht-pure); }

/* EXTRA RESPONSIVE OVERRIDES */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .overview-grid { grid-template-columns: 1fr; }
    .overview-image { order: -1; }
    .single-layout-grid { grid-template-columns: 1fr; }
    .single-main-content { padding: 30px 20px; }
}
@media (max-width: 768px) {
    .dir-card { flex-direction: column; }
    .dir-img { width: 100%; min-height: 250px; }
    .dir-content { width: 100%; padding: 30px; }
    .contact-form { padding: 30px 20px; }
    .cookie-banner { flex-direction: column; gap: 20px; text-align: center; } 
}