:root {
    --steel-blue: #1034A6;
    --sky-blue: #00A8E8;
    --concrete: #333333;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    
    --font-head: 'Anton', sans-serif;
    --font-body: 'Barlow', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--concrete);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.rise-header { background: var(--white); padding: 20px 0; box-shadow: 0 4px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--steel-blue); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 2rem; color: var(--concrete); letter-spacing: 1px; }
.up-arrow { color: var(--steel-blue); }

.sky-nav a { font-weight: 600; font-size: 1rem; color: #555; margin-left: 25px; }
.sky-nav a:hover, .sky-nav a.active { color: var(--steel-blue); }

.btn-blue { background: var(--steel-blue); color: var(--white) !important; padding: 10px 20px; border-radius: 4px; }
.btn-blue:hover { background: var(--sky-blue); }

/* Mobile Menu */
.mobile-btn { display: none; font-family: var(--font-head); cursor: pointer; border: 2px solid var(--concrete); padding: 5px 10px; }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--steel-blue); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-menu.open { right: 0; }
.close-btn { position: absolute; top: 30px; right: 30px; background: none; border: 2px solid var(--white); color: var(--white); padding: 5px 15px; font-family: var(--font-head); cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2.5rem; color: var(--white); margin: 15px 0; letter-spacing: 2px; }

/* Hero */
.hero-sky { height: 80vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(to right, rgba(16, 52, 166, 0.8), rgba(0,0,0,0.2)); display: flex; align-items: center; }
.hero-text { color: var(--white); margin-left: 10%; max-width: 600px; }
.tagline { font-weight: bold; letter-spacing: 3px; color: var(--sky-blue); font-size: 0.9rem; display: block; margin-bottom: 10px; }
.hero-text h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 1; margin-bottom: 20px; }
.hero-text p { font-size: 1.2rem; margin-bottom: 30px; border-left: 4px solid var(--sky-blue); padding-left: 15px; }
.btn-outline { border: 2px solid var(--white); color: var(--white); padding: 12px 30px; font-weight: bold; font-family: var(--font-head); letter-spacing: 1px; }
.btn-outline:hover { background: var(--white); color: var(--steel-blue); }

/* Stats */
.stats-bar { background: var(--concrete); color: var(--white); padding: 30px 0; }
.stats-grid { display: flex; justify-content: space-around; text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: 3rem; color: var(--sky-blue); line-height: 1; }
.stat span { font-size: 0.9rem; font-weight: bold; }

/* Projects */
.section-head { margin-bottom: 50px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--steel-blue); }
.blue-bar { width: 80px; height: 5px; background: var(--sky-blue); margin-top: 10px; }
.blue-bar.left { margin: 20px 0; }

.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.project-card { border: 1px solid #eee; transition: 0.3s; }
.project-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); transform: translateY(-5px); }
.p-img img { width: 100%; height: 250px; object-fit: cover; display: block; }
.p-info { padding: 25px; }
.p-info h3 { font-family: var(--font-head); font-size: 1.5rem; color: var(--concrete); margin-bottom: 10px; }
.p-info a { color: var(--steel-blue); font-weight: bold; font-size: 0.9rem; }

/* About & Contact */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-side h1 { font-family: var(--font-head); font-size: 3rem; color: var(--steel-blue); }
.values-list { list-style: none; margin-top: 30px; font-weight: 600; color: var(--concrete); }
.values-list li { margin-bottom: 10px; }
.img-side img { width: 100%; border-bottom: 10px solid var(--sky-blue); }

.contact-block { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--light-grey); padding: 50px; }
.contact-info h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--steel-blue); }
.info-item { margin-top: 20px; font-size: 1.1rem; }

.build-form .form-grp { margin-bottom: 20px; }
.build-form label { display: block; font-weight: bold; margin-bottom: 5px; font-size: 0.9rem; }
.build-form input, .build-form select, .build-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; background: var(--white); font-family: var(--font-body); }
.btn-submit { width: 100%; background: var(--steel-blue); color: var(--white); border: none; padding: 15px; font-family: var(--font-head); font-size: 1.2rem; cursor: pointer; }
.btn-submit:hover { background: var(--sky-blue); }

/* Reviews & Legal */
.reviews-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-box { background: var(--white); padding: 30px; border: 1px solid #eee; border-top: 4px solid var(--steel-blue); }
.review-box.highlight { background: var(--steel-blue); color: var(--white); border-top-color: var(--sky-blue); }
.review-box h4 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 10px; }
.review-box p { font-style: italic; margin-bottom: 15px; font-size: 0.95rem; }
.author { font-weight: bold; font-size: 0.8rem; }

.legal-doc { max-width: 800px; margin: 0 auto; }
.legal-doc h1 { font-family: var(--font-head); font-size: 2.5rem; color: var(--steel-blue); }
.legal-doc h3 { margin-top: 30px; color: var(--concrete); }

/* Footer */
.rise-footer { background: var(--concrete); color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #444; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { color: var(--white); font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 5px; }
.f-col.right a { color: #aaa; margin-left: 20px; }
.f-col.right a:hover { color: var(--sky-blue); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-box { position: fixed; bottom: 20px; left: 20px; background: var(--white); border: 2px solid var(--steel-blue); padding: 20px; z-index: 9999; display: none; box-shadow: 0 5px 20px rgba(0,0,0,0.1); }
.cookie-box.show { display: block; animation: slideUp 0.5s; }
.cookie-box button { background: var(--steel-blue); color: var(--white); border: none; padding: 5px 15px; margin-top: 10px; cursor: pointer; font-weight: bold; }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 900px) {
    .sky-nav { display: none; }
    .mobile-btn { display: block; }
    .hero-text h1 { font-size: 3.5rem; }
    .project-grid, .about-grid, .contact-block, .reviews-list, .stats-grid { grid-template-columns: 1fr; }
    .stats-grid { gap: 30px; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}