/* Palette: Sky Blue, White, Sun Yellow */
:root {
    --blue: #03A9F4;
    --dark-blue: #0277BD;
    --yellow: #FFEB3B;
    --text: #37474F;
    --light-grey: #F5F5F5;
    --white: #FFFFFF;
    --sidebar-w: 280px;
    
    --font-head: 'Lora', serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    display: flex;
}

/* Sidebar Navigation (Desktop) */
.sidebar {
    width: var(--sidebar-w);
    height: 100vh;
    background: var(--white);
    position: fixed;
    left: 0;
    top: 0;
    border-right: 1px solid #eee;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
}

.logo {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    text-decoration: none;
    line-height: 1.1;
    display: block;
}
.logo .blue { color: var(--blue); }

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-nav a {
    text-decoration: none;
    color: #90A4AE;
    font-weight: 500;
    font-size: 1.1rem;
    transition: 0.3s;
}

.side-nav a:hover, .side-nav a.active {
    color: var(--blue);
    transform: translateX(5px);
}

.btn-sidebar {
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(3, 169, 244, 0.3);
    transition: 0.3s;
}
.btn-sidebar:hover { background: var(--dark-blue); }

/* Main Content Area */
.main-content {
    margin-left: var(--sidebar-w);
    width: calc(100% - var(--sidebar-w));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Mobile Header (Hidden on Desktop) */
.mobile-header { display: none; }
.mobile-menu-overlay { display: none; }

/* Split Hero */
.hero-split {
    display: flex;
    height: 90vh;
}
.hero-text {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FAFAFA;
}
.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.badge-soft {
    background: rgba(3, 169, 244, 0.1);
    color: var(--blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    align-self: flex-start;
    margin-bottom: 20px;
}

.hero-text h1 {
    font-family: var(--font-head);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text);
}
.hero-text p {
    font-size: 1.2rem;
    color: #607D8B;
    margin-bottom: 40px;
    max-width: 500px;
}

.link-arrow {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.link-arrow span { transition: 0.3s; }
.link-arrow:hover span { transform: translateX(10px); color: var(--blue); }

/* Services List */
.services-scroll {
    padding: 100px 60px;
    background: var(--white);
}
.service-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #eee;
    padding: 40px 0;
    transition: 0.3s;
}
.service-row:hover {
    padding-left: 20px;
    border-bottom-color: var(--blue);
}
.service-info h2 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 10px; }
.service-info p { color: #78909C; max-width: 600px; }
.service-num { font-size: 3rem; color: #eee; font-weight: 700; }

/* Subpages Content */
.content-wrapper { padding: 80px 60px; max-width: 1200px; }
.intro-block h1 { font-family: var(--font-head); font-size: 3.5rem; margin-bottom: 20px; }
.lead { font-size: 1.5rem; color: var(--blue); margin-bottom: 50px; font-family: var(--font-head); font-style: italic; }

.image-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center; margin-bottom: 80px; }
.img-large { width: 100%; border-radius: 20px; }
.text-card { background: #E1F5FE; padding: 40px; border-radius: 20px; }
.text-card h3 { margin-bottom: 15px; }

.timeline { display: flex; gap: 50px; margin-top: 50px; border-top: 2px solid #eee; padding-top: 40px; }
.t-item .year { font-size: 2rem; font-weight: 700; color: var(--blue); display: block; margin-bottom: 10px; }

/* Masonry Grid (Testimonials) */
.masonry-grid { column-count: 2; column-gap: 40px; }
.review-box { break-inside: avoid; background: #FAFAFA; padding: 40px; border-radius: 20px; margin-bottom: 40px; border: 1px solid #eee; }
.review-box.highlight { background: var(--blue); color: var(--white); }
.flag { font-size: 1.5rem; display: block; margin-bottom: 15px; }
.review-box p { font-style: italic; font-size: 1.1rem; margin-bottom: 20px; }

/* Contact Full */
.contact-full { display: flex; min-height: 100vh; }
.contact-card { flex: 1; padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; background: var(--white); }
.map-bg { flex: 1; background-size: cover; background-position: center; }

.contact-card h2 { font-family: var(--font-head); font-size: 2.5rem; margin-bottom: 20px; }
.contact-list { list-style: none; margin-bottom: 40px; }
.contact-list li { margin-bottom: 10px; color: #546E7A; }

.clean-form input, .clean-form select { width: 100%; padding: 15px; border: 1px solid #eee; border-radius: 10px; margin-bottom: 15px; font-family: var(--font-body); }
.clean-form button { width: 100%; background: var(--text); color: var(--white); padding: 15px; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; }

/* Footer */
.footer-simple { padding: 40px 60px; border-top: 1px solid #eee; display: flex; justify-content: space-between; }
.f-col h4 { font-weight: 700; margin-bottom: 5px; }
.f-col a { color: #90A4AE; margin-left: 20px; text-decoration: none; }
.copy { font-size: 0.8rem; color: #ccc; }

/* Cookie Toast */
.cookie-toast { position: fixed; bottom: 30px; right: 30px; background: var(--white); padding: 20px; border-radius: 10px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); display: flex; gap: 20px; align-items: center; z-index: 200; display: none; }
.cookie-toast.active { display: flex; }
.cookie-toast button { background: var(--blue); color: var(--white); border: none; padding: 5px 15px; border-radius: 5px; cursor: pointer; }

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .sidebar { display: none; }
    .main-content { margin-left: 0; width: 100%; }
    
    .mobile-header { display: flex; justify-content: space-between; align-items: center; padding: 20px; position: sticky; top: 0; background: var(--white); z-index: 100; border-bottom: 1px solid #eee; }
    .logo-mobile { font-weight: 700; color: var(--text); text-decoration: none; }
    .logo-mobile .blue { color: var(--blue); }
    .menu-trigger { background: none; border: none; font-weight: 700; }

    .mobile-menu-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--white); z-index: 200; display: flex; flex-direction: column; justify-content: center; align-items: center; display: none; }
    .mobile-menu-overlay.active { display: flex; }
    .close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.2rem; }
    .mobile-menu-overlay nav a { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--text); text-decoration: none; margin: 15px 0; }

    .hero-split { flex-direction: column; height: auto; }
    .hero-text { padding: 60px 20px; }
    .hero-image { height: 300px; }
    
    .image-grid, .contact-full, .timeline { grid-template-columns: 1fr; flex-direction: column; }
    .services-scroll { padding: 40px 20px; }
    .masonry-grid { column-count: 1; }
    .footer-simple { flex-direction: column; gap: 20px; padding: 40px 20px; }
    .content-wrapper { padding: 40px 20px; }
    .contact-card { padding: 40px 20px; }
}