@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  /* site-colors: #59057B #E01171 #FFCEE4 #0F0766 */
  --primary-color: #59057B;
  --secondary-color: #E01171;
  --accent-color: #0F0766;
  --light-color: #FFCEE4;
  --dark-color: #1A0124;
  --gradient-primary: linear-gradient(135deg, #59057B 0%, #E01171 100%);
  --hover-color: #7A08A8;
  --background-color: #FDF2F8; /* Light pinkish tint */
  --text-color: #2D3748;
  --border-color: rgba(224, 17, 113, 0.2);
  --divider-color: rgba(89, 5, 123, 0.1);
  --shadow-color: rgba(89, 5, 123, 0.15);
  --highlight-color: #FFD700; /* Complementary */
  
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', 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(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.bg-alt { background-color: #FFFFFF; }

/* Neumorphism Utilities */
.neu-box {
    background: var(--background-color);
    border-radius: 12px;
    box-shadow: 7px 7px 14px var(--shadow-color), -7px -7px 14px #ffffff;
    border: 1px solid var(--border-color);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bg-alt .neu-box {
    background: #FFFFFF;
    box-shadow: 7px 7px 14px rgba(0,0,0,0.05), -7px -7px 14px #ffffff;
}
.neu-box:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 20px var(--shadow-color), -10px -10px 20px #ffffff;
}
.input-neu {
    width: 100%;
    padding: 1rem;
    border: none;
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: inset 4px 4px 8px var(--shadow-color), inset -4px -4px 8px #ffffff;
    font-family: var(--alt-font);
    color: var(--text-color);
    transition: box-shadow 0.3s ease;
}
.input-neu:focus {
    outline: none;
    box-shadow: inset 2px 2px 4px var(--shadow-color), inset -2px -2px 4px #ffffff;
}
.neu-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 7px 7px 14px var(--shadow-color), -7px -7px 14px #ffffff;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 5px 5px 10px var(--shadow-color), -5px -5px 10px #ffffff;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}
.btn-primary:hover {
    background: var(--hover-color);
    color: white;
    box-shadow: 2px 2px 5px var(--shadow-color), -2px -2px 5px #ffffff;
}
.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}
.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* Header & Navigation */
.main-header {
    background-color: var(--dark-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-menu a {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--main-font);
    font-size: 1.2rem;
    transition: color 0.3s;
}
.link-hover:hover {
    color: var(--highlight-color);
}
.nav-toggle-label {
    display: none;
    color: var(--light-color);
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle-label { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-color);
        padding: 1.5rem 0;
    }
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    #nav-toggle:checked ~ .nav-menu { display: block; }
    .header-content { justify-content: center; position: relative; }
    .nav-toggle-label { position: absolute; right: 1.5rem; }
}

/* Sections General */
section {
    padding-top: 10dvh;
    padding-bottom: 10dvh;
}
.hero-area {
    height: 75vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(26, 1, 36, 0.7), rgba(26, 1, 36, 0.7)), url('./img/bg.jpg') no-repeat center center/cover;
    color: white;
}
.hero-text {
    max-width: 850px;
    padding: 0 1rem;
}
.hero-text h1 { color: white; }

/* Content Sections */
.content-split {
    display: flex;
    align-items: center;
    gap: 40px;
}
.content-split.reverse {
    flex-direction: row-reverse;
}
.image-box { width: 40%; }
.text-box { width: 60%; }

@media (max-width: 768px) {
    .content-split, .content-split.reverse { flex-direction: column; }
    .image-box, .text-box { width: 100%; }
}

/* Divider */
.divider-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5dvh 1rem;
    gap: 20px;
}
.div-line {
    flex-grow: 1;
    height: 1px;
    background-color: var(--border-color);
    max-width: 300px;
}
.div-text { color: var(--secondary-color); text-align: center; font-family: var(--main-font); text-transform: uppercase; }

/* CTA Sections */
.cta-banner-1, .cta-banner-2 {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    background-image: linear-gradient(rgba(89, 5, 123, 0.8), rgba(89, 5, 123, 0.8)), url('./img/bg.jpg');
}
.cta-wrapper {
    position: relative;
    z-index: 2;
}

/* Features (6 cols) */
.grid-6-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}
.icon-container i { color: var(--secondary-color); }

/* Testimonials (3 cols) */
.grid-3-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.review-card h4 { color: var(--secondary-color); }

/* Contact Form */
.contact-flex {
    display: flex;
    gap: 40px;
}
.contact-details { width: 40%; }
.contact-form-box { width: 60%; }
.info-line i { color: var(--secondary-color); margin-right: 10px; font-size: 1.2rem; }
.info-line span { font-weight: bold; }

@media (max-width: 768px) {
    .contact-flex { flex-direction: column; }
    .contact-details, .contact-form-box { width: 100%; }
}

/* FAQ Accordion */
.accordion-neu {
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: 5px 5px 10px var(--shadow-color), -5px -5px 10px #ffffff;
    border: 1px solid var(--border-color);
    overflow: hidden;
}
.accordion-neu summary {
    outline: none;
    color: var(--primary-color);
    list-style: none;
    font-family: var(--main-font);
    letter-spacing: 0.5px;
}
.accordion-neu summary::-webkit-details-marker { display: none; }
.accordion-neu[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-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-nav {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
}
.footer-nav a {
    color: var(--light-color);
    text-decoration: none;
    font-family: var(--main-font);
    font-size: 1.1rem;
}
.footer-copy {
    border-top: 1px solid rgba(255, 206, 228, 0.2);
}
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}