@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  /* site-colors: #16A085 #27AE60 #F1C40F #2C3E50 */
  --primary-color: #16A085;
  --secondary-color: #27AE60;
  --accent-color: #F1C40F;
  --light-color: #ECF0F1;
  --dark-color: #2C3E50;
  --gradient-primary: linear-gradient(135deg, #16A085 0%, #27AE60 100%);
  --hover-color: #117A65;
  --background-color: #F4F6F7;
  --text-color: #34495E;
  --border-color: rgba(22, 160, 133, 0.2);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.12);
  --highlight-color: #E74C3C; /* Complementary */
  
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Poppins', 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.7;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    color: var(--dark-color);
}
.bg-soft { background-color: #FFFFFF; }

/* Neumorphism Utilities */
.neu-card-item {
    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: 2.5rem;
    transition: all 0.3s ease;
}
.bg-soft .neu-card-item {
    background: #FFFFFF;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.06), -8px -8px 16px #ffffff;
}
.neu-card-item:hover {
    box-shadow: inset 2px 2px 5px var(--shadow-color), inset -2px -2px 5px #ffffff;
    transform: scale(0.99);
}
.neumorphic-input {
    width: 100%;
    padding: 1.2rem;
    border: none;
    background: var(--background-color);
    border-radius: 12px;
    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;
}
.neumorphic-input:focus {
    outline: none;
    box-shadow: inset 3px 3px 6px var(--shadow-color), inset -3px -3px 6px #ffffff;
}
.img-neumorphic {
    width: 100%;
    border-radius: 20px;
    box-shadow: 8px 8px 16px var(--shadow-color), -8px -8px 16px #ffffff;
    object-fit: cover;
}

/* Buttons */
.btn-solid {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--alt-font);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 30px;
    box-shadow: 6px 6px 12px var(--shadow-color), -6px -6px 12px #ffffff;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
.btn-solid:hover {
    background: var(--hover-color);
    color: white;
    box-shadow: inset 3px 3px 6px rgba(0,0,0,0.2);
}
.btn-bordered {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--accent-color);
    font-family: var(--alt-font);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 30px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}
.btn-bordered:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

/* Header & Navigation */
.navbar-wrapper {
    background-color: var(--dark-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.site-navigation ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}
.site-navigation a {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--alt-font);
    font-size: 1.1rem;
    transition: color 0.3s;
}
.hover-effect:hover {
    color: var(--primary-color);
}
.burger-icon {
    display: none;
    color: var(--light-color);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .burger-icon { display: block; }
    .site-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        padding: 2rem 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .site-navigation ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    #burger-menu:checked ~ .site-navigation { display: block; }
    .navbar-container { justify-content: center; position: relative; }
    .burger-icon { position: absolute; right: 1.5rem; }
}

/* Sections General */
section {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}
.hero-screen {
    height: 65vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(44, 62, 80, 0.6), rgba(44, 62, 80, 0.6)), url('./img/bg.jpg') no-repeat center center/cover;
    color: white;
}
.hero-box {
    max-width: 800px;
    padding: 0 1rem;
}
.hero-box h1 { color: white; }

/* Content Sections */
.layout-split {
    display: flex;
    align-items: center;
    gap: 50px;
}
.layout-split.reverse-split {
    flex-direction: row-reverse;
}
.media-col { width: 40%; }
.text-col { width: 60%; }

@media (max-width: 768px) {
    .layout-split, .layout-split.reverse-split { flex-direction: column; }
    .media-col, .text-col { width: 100%; }
}

/* Divider */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5dvh 1rem;
    gap: 30px;
}
.divider-bar {
    flex-grow: 1;
    height: 2px;
    background-color: var(--border-color);
    max-width: 250px;
}
.divider-title { color: var(--primary-color); text-align: center; }

/* CTA Sections */
.cta-block {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cta-bg-first, .cta-bg-second {
    background-image: linear-gradient(rgba(22, 160, 133, 0.85), rgba(22, 160, 133, 0.85)), url('./img/bg.jpg');
}
.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

/* Features (4 cols) */
.grid-4-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.icon-wrap i { color: var(--primary-color); }

/* Contact Form */
.form-layout-flex {
    display: flex;
    gap: 50px;
}
.info-side { width: 40%; }
.form-side { width: 60%; }
.contact-ul { list-style: none; padding: 0; }
.contact-ul i { color: var(--primary-color); margin-right: 15px; font-size: 1.3rem; }

@media (max-width: 768px) {
    .form-layout-flex { flex-direction: column; }
    .info-side, .form-side { width: 100%; }
}

/* FAQ Accordion */
.neu-accordion-item {
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: 6px 6px 12px var(--shadow-color), -6px -6px 12px #ffffff;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.neu-accordion-item summary {
    outline: none;
    color: var(--dark-color);
    list-style: none;
}
.neu-accordion-item summary::-webkit-details-marker { display: none; }
.neu-accordion-item[open] summary {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Footer */
.footer-wrapper {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 1rem 2rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-links-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    padding: 0;
    margin: 0;
}
.footer-links-list a {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--alt-font);
}
.footer-bottom-bar {
    border-top: 1px solid rgba(236, 240, 241, 0.1);
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-links-list {
        flex-direction: column;
        gap: 1.5rem;
    }
}