@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Site Colors: Blue/Teal tones for Trust & Calm */
  --primary-color: #2874A6;
  --secondary-color: #3498DB;
  --accent-color: #1ABC9C;
  --light-color: #ECF0F1;
  --dark-color: #17202A;
  
  --gradient-primary: linear-gradient(135deg, #3498DB 0%, #2874A6 100%);
  --hover-color: #21618C;
  --background-color: #F8FBFC;
  --text-color: #34495E;
  
  --border-color: rgba(40, 116, 166, 0.2);
  --divider-color: rgba(52, 152, 219, 0.15);
  --shadow-color: rgba(40, 116, 166, 0.1);
  --highlight-color: #F1C40F; /* Complementary */
  
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

/* Reset & Base */
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--alt-font);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
}

/* Header */
header {
    background-color: var(--dark-color);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
header .logo img {
    height: 40px;
    width: auto;
}
.navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}
.navigation a {
    color: var(--light-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.navigation a:hover {
    color: var(--accent-color);
}
.btn-nav {
    background: var(--gradient-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white !important;
}

/* Mobile Menu - CSS Only */
#nav-toggle { display: none; }
@media (max-width: 768px) {
    .nav-icon {
        display: block;
        width: 30px;
        cursor: pointer;
    }
    .nav-icon span {
        display: block;
        height: 3px;
        background: white;
        margin: 6px 0;
        transition: 0.3s;
    }
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        padding: 1rem;
        text-align: center;
    }
    .navigation ul {
        flex-direction: column;
        gap: 1.5rem;
    }
    #nav-toggle:checked ~ .navigation {
        display: block;
    }
    /* Hamburger Animation */
    #nav-toggle:checked ~ .nav-icon span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    #nav-toggle:checked ~ .nav-icon span:nth-child(2) { opacity: 0; }
    #nav-toggle:checked ~ .nav-icon span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
    
    header .logo { margin: 0 auto; }
}

/* Hero Section */
.hero-section {
    min-height: 70vh;
    background: linear-gradient(rgba(23, 32, 42, 0.6), rgba(23, 32, 42, 0.6)), url('./img/bg.jpg') no-repeat center center/cover;
    padding-top: 80px; /* Header height */
}
.cta-button {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
}
.cta-button:hover {
    background: var(--hover-color);
    transform: translateY(-2px);
}

/* Sections General */
section {
    padding-top: 10vh;
    padding-bottom: 10vh;
    position: relative;
}
/* Neumorphism Pattern Background */
section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--divider-color) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.5;
}

/* Content Elements */
.header-text {
    color: var(--primary-color);
}
.content-text {
    color: var(--text-color);
}
.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.02);
}

/* Divider */
.divider-section {
    border-top: 1px solid var(--border-color);
}
.divider-text {
    background-color: var(--background-color);
    color: var(--secondary-color);
}

/* CTA Sections */
.cta-parallax {
    background-image: url('./img/bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}
.cta-overlay {
    background-color: rgba(23, 32, 42, 0.7);
}

/* Features (Neumorphism Lite) */
.feature-card {
    background: #ffffff;
    border: 1px solid white;
    box-shadow: 10px 10px 20px var(--shadow-color), -10px -10px 20px #ffffff;
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
}
.feature-icon {
    color: var(--accent-color);
}

/* Testimonials */
.testimonial-card {
    background: #fff;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 15px var(--shadow-color);
}

/* Contact Form */
.contact-info {
    background: var(--light-color);
    color: var(--text-color);
}
.contact-info i {
    color: var(--primary-color);
}
.submit-btn {
    background: var(--secondary-color);
}
.submit-btn:hover {
    background: var(--hover-color);
}
input:focus, textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.2);
}

/* FAQ */
#faq {
    background-color: #f0f4f8;
}
.faq-item {
    background: white;
    border: 1px solid var(--border-color);
}
.faq-item h3 {
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
}
footer a {
    color: #BDC3C7;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: var(--highlight-color);
}