@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  /* site-colors: #2C3E50 #E74C3C #ECF0F1 #3498DB */
  --primary-color: #2C3E50;
  --secondary-color: #3498DB;
  --accent-color: #E74C3C;
  --light-color: #ECF0F1;
  --dark-color: #1A252F;
  --gradient-primary: linear-gradient(135deg, #3498DB 0%, #2C3E50 100%);
  --hover-color: #2980B9;
  --background-color: #F8F9F9;
  --text-color: #2C3E50;
  --border-color: rgba(52, 152, 219, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.15);
  --highlight-color: #F1C40F; /* Complementary */
  
  --main-font: 'Roboto Condensed', sans-serif;
  --alt-font: 'Open Sans', sans-serif;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--alt-font);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    color: var(--dark-color);
}
.bg-light {
    background-color: #ffffff;
}
.text-primary { color: var(--primary-color); }
.text-highlight { color: var(--highlight-color); }

/* Neumorphism Utilities */
.neu-card {
    background: var(--background-color);
    border-radius: 20px;
    box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px #ffffff;
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.neu-card:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px var(--shadow-color), -12px -12px 20px #ffffff;
}
.neu-input {
    width: 100%;
    padding: 1rem;
    border: none;
    background: var(--background-color);
    border-radius: 10px;
    box-shadow: inset 5px 5px 10px var(--shadow-color), inset -5px -5px 10px #ffffff;
    font-family: var(--alt-font);
    color: var(--text-color);
    transition: box-shadow 0.3s ease;
}
.neu-input:focus {
    outline: none;
    box-shadow: inset 2px 2px 5px var(--shadow-color), inset -2px -2px 5px #ffffff;
}
.neu-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px #ffffff;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--main-font);
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 6px 6px 12px var(--shadow-color), -6px -6px 12px #ffffff;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}
.btn-primary:hover {
    background: var(--hover-color);
    color: white;
    box-shadow: 2px 2px 5px var(--shadow-color), -2px -2px 5px #ffffff;
}
.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    font-family: var(--main-font);
    font-weight: bold;
    border-radius: 50px;
    border: 2px solid white;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
}
.btn-secondary:hover {
    background: white;
    color: var(--dark-color);
}

/* Header & Navigation */
.site-header {
    background-color: var(--dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.navigation a {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--main-font);
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s;
}
.hover-underline:hover {
    color: var(--highlight-color);
    text-decoration: underline;
}
.hamburger {
    display: none;
    color: var(--light-color);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hamburger { display: block; }
    .navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        padding: 1rem 0;
    }
    .navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    #menu-toggle:checked ~ .navigation {
        display: block;
    }
    .header-container {
        justify-content: center;
        position: relative;
    }
    .hamburger {
        position: absolute;
        right: 1rem;
    }
}

/* Sections General */
section {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}
.hero-section {
    height: 70vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 37, 47, 0.7), rgba(26, 37, 47, 0.7)), url('./img/bg.jpg') no-repeat center center/cover;
    color: white;
}
.hero-content {
    max-width: 800px;
    padding: 0 1rem;
}
.hero-content h1 {
    color: white;
}

/* Content Sections */
.content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}
.content-wrapper.reverse {
    flex-direction: row-reverse;
}
.img-container { width: 40%; }
.text-container { width: 60%; }

@media (max-width: 768px) {
    .content-wrapper, .content-wrapper.reverse {
        flex-direction: column;
    }
    .img-container, .text-container { width: 100%; }
}

/* Divider */
.divider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5dvh 1rem;
    gap: 20px;
}
.divider-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color);
    max-width: 400px;
}
.divider-text {
    color: var(--secondary-color);
    text-align: center;
}

/* CTA Sections */
.cta-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cta-bg-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./img/bg.jpg');
}
.cta-bg-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./img/bg.jpg');
}
.cta-content {
    position: relative;
    z-index: 2;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.icon-wrapper i {
    color: var(--secondary-color);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Contact Form */
.contact-wrapper {
    display: flex;
    gap: 40px;
}
.contact-info { width: 40%; }
.contact-form-container { width: 60%; }

@media (max-width: 768px) {
    .contact-wrapper { flex-direction: column; }
    .contact-info, .contact-form-container { width: 100%; }
}

/* FAQ Accordion */
.neu-accordion {
    background: var(--background-color);
    border-radius: 15px;
    box-shadow: 5px 5px 10px var(--shadow-color), -5px -5px 10px #ffffff;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.neu-accordion summary {
    outline: none;
    color: var(--primary-color);
}
.neu-accordion summary::-webkit-details-marker {
    display: none;
}
.neu-accordion[open] summary {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

/* Footer */
.site-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 3rem 1rem 1rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}
.footer-links a {
    color: var(--light-color);
    text-decoration: none;
}
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}