@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Blue Professional Palette */
  --primary-color: #2980B9;
  --secondary-color: #3498DB;
  --accent-color: #1ABC9C;
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  
  --gradient-primary: linear-gradient(135deg, #3498DB 0%, #2980B9 100%);
  --hover-color: #1F618D;
  --background-color: #F8F9F9;
  --text-color: #34495E;
  
  --border-color: rgba(41, 128, 185, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.1);
  --highlight-color: #F39C12; /* Complementary */
  
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
  
  /* Neumorphism Variables */
  --neu-shadow-light: #ffffff;
  --neu-shadow-dark: #d1d9e6;
}

body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

/* Neumorphism Classes */
.neu-flat {
    background: var(--background-color);
    box-shadow: 5px 5px 10px var(--neu-shadow-dark), -5px -5px 10px var(--neu-shadow-light);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
}

.neu-pressed {
    background: var(--background-color);
    box-shadow: inset 5px 5px 10px var(--neu-shadow-dark), inset -5px -5px 10px var(--neu-shadow-light);
    border-radius: 12px;
}

/* Header & Mobile Menu (CSS Only) */
header {
    background-color: var(--dark-color);
    color: var(--light-color);
}
#nav-toggle { display: none; }
.nav-icon { display: none; cursor: pointer; }

@media (max-width: 768px) {
    .nav-icon { display: block; font-size: 1.5rem; }
    .navigation {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        z-index: 50;
    }
    #nav-toggle:checked + label + .navigation {
        max-height: 500px;
    }
    .navigation ul {
        flex-direction: column;
        padding: 20px;
    }
    .navigation li { margin-bottom: 15px; text-align: center; }
}

/* Section specific */
.hero-bg {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('./img/bg.jpg') no-repeat center center/cover;
}

.cta-parallax {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cta-overlay {
    background: rgba(44, 62, 80, 0.6);
}

/* Timeline Feature */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid var(--primary-color);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--highlight-color);
}

/* FAQ Accordion (CSS Only) */
.faq-details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}
.faq-details summary {
    cursor: pointer;
    list-style: none;
    font-weight: bold;
}