/* ----------------------------------------------------------------
   RESET & BASE
---------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Palette */
    --primary: #e91e63;
    --primary-dark: #c2185b;
    --secondary: #2196f3;
    --secondary-dark: #1976d2;
    --accent: #ffeb3b;
    --accent-dark: #fbc02d;

    /* Greys & Surfaces */
    --bg-light: #f3f6fa;
    --bg-dark: #e0e5ec;
    --bg-darker: #d5dae1;
    --text-dark: #222222;
    --text-light: #ffffff;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(233, 30, 99, 0.15) 0%, rgba(33, 150, 243, 0.15) 100%);

    /* Shadows / Neumorphism */
    --shadow-light: 6px 6px 10px rgba(0, 0, 0, 0.07), -6px -6px 10px rgba(255, 255, 255, 0.9);
    --shadow-inset: inset 6px 6px 10px rgba(0, 0, 0, 0.08), inset -6px -6px 10px rgba(255, 255, 255, 0.9);

    /* Misc */
    --radius: 12px;
    --transition: all 0.3s ease;
    --section-padding: 80px 0;
    --max-width: 1200px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.15);
}

p { margin-bottom: 1rem; }

.section-title { margin-bottom: 2.5rem; }

/* Utility ----------------------------------------------------- */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section {
    padding: var(--section-padding);
}

.center { text-align: center; }

.gradient-bg { background: var(--gradient-main); color: var(--text-light); }

.is-two-thirds { max-width: 66.666%; margin: 0 auto; }

/* ----------------------------------------------------------------
   HEADER & NAV
---------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-dark);
    box-shadow: var(--shadow-light);
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-family: 'Raleway', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
}

nav ul { display: flex; list-style: none; gap: 1.5rem; }

nav a {
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: color .25s;
}

nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0%; height: 2px;
    background: var(--primary);
    transition: width .25s;
}

nav a:hover { color: var(--primary); }
nav a:hover::after { width: 100%; }

/* Burger ------------------------------------------------------- */
.burger {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--bg-dark);
    box-shadow: var(--shadow-light);
}

.mobile-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid var(--bg-darker);
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .burger { display: block; }
    .mobile-menu.show { display: flex; }
}

/* ----------------------------------------------------------------
   HERO
---------------------------------------------------------------- */
.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    color: var(--text-light);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55));
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

/* ----------------------------------------------------------------
   BUTTONS
---------------------------------------------------------------- */
.btn,
button,
input[type='submit'] {
    display: inline-block;
    padding: 15px 35px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    background: var(--gradient-main);
    color: var(--text-light);
}

.btn.secondary-btn {
    background: var(--secondary);
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 8px 8px 14px rgba(0,0,0,0.12), -4px -4px 8px rgba(255,255,255,0.7);
}

.btn:active {
    transform: translateY(0px);
    box-shadow: var(--shadow-inset);
}

/* ----------------------------------------------------------------
   NEUMORPH SECTIONS
---------------------------------------------------------------- */
.neuromorph-light {
    background: var(--bg-light);
}

.neuromorph-dark {
    background: var(--bg-dark);
}

/* ----------------------------------------------------------------
   CARDS
---------------------------------------------------------------- */
.card {
    background: var(--bg-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .35s;
}

.card:hover { transform: translateY(-6px); }

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 1.2rem;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.pricing-grid,
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* ----------------------------------------------------------------
   ACCORDION
---------------------------------------------------------------- */
.accordion-btn {
    width: 100%;
    padding: 18px 22px;
    margin-bottom: 8px;
    background: var(--bg-darker);
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.accordion-btn[aria-expanded="true"] {
    background: var(--primary);
    color: var(--text-light);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    background: var(--bg-light);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 0 18px;
}

.accordion-content p {
    padding: 15px 0;
}

/* ----------------------------------------------------------------
   MODALS
---------------------------------------------------------------- */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal.show { display: flex; }

.modal-content {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: pop 0.45s ease;
}

.close-modal {
    position: absolute;
    top: 12px; right: 15px;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-dark);
}

@keyframes pop {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* ----------------------------------------------------------------
   FORMS
---------------------------------------------------------------- */
.contact-form .field {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    border: none;
    border-radius: var(--radius);
    background: var(--bg-dark);
    box-shadow: var(--shadow-inset);
    font-family: 'Open Sans', sans-serif;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    box-shadow: 3px 3px 8px rgba(0,0,0,0.08) inset, -3px -3px 8px rgba(255,255,255,0.9) inset;
}

/* ----------------------------------------------------------------
   NEWS LIST
---------------------------------------------------------------- */
.news-item {
    margin-bottom: 1.8rem;
    padding: 20px 25px;
    background: var(--bg-light);
    border-radius: var(--radius);
    box-shadow: var(--shadow-light);
}

/* ----------------------------------------------------------------
   EXTERNAL LINKS
---------------------------------------------------------------- */
.external-links li {
    margin-bottom: 10px;
}

.external-links a {
    color: var(--secondary-dark);
    font-weight: 700;
    transition: color .25s;
}

.external-links a:hover { color: var(--primary-dark); }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.footer {
    background: var(--bg-dark);
    padding: 40px 0;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.footer-nav,
.social-links {
    margin-top: 10px;
}

.footer a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
    margin: 0 5px;
    transition: color .25s;
}

.footer a:hover { color: var(--secondary-dark); }

/* Social link pseudo-icons */
.social-links a {
    position: relative;
    padding-left: 22px;
}

.social-links a::before {
    content: '#';
    position: absolute;
    left: 0;
    color: var(--accent-dark);
    font-weight: 800;
}

/* ----------------------------------------------------------------
   SUCCESS PAGE
---------------------------------------------------------------- */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    background: var(--gradient-subtle);
}

/* ----------------------------------------------------------------
   PRIVACY & TERMS PAGES
---------------------------------------------------------------- */
body.privacy-page .content,
body.terms-page .content {
    padding-top: 100px;
}

/* ----------------------------------------------------------------
   UTILITY CLASSES
---------------------------------------------------------------- */
.read-more {
    color: var(--secondary);
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: var(--transition);
}

.read-more::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0%; height: 2px;
    background: var(--secondary);
    transition: width .25s;
}

.read-more:hover { color: var(--primary); }
.read-more:hover::after { width: 100%; }

/* Animation helpers */
[data-animate] { opacity: 0; transform: translateY(40px); transition: opacity .6s ease, transform .6s ease; }
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ----------------------------------------------------------------
   MEDIA QUERIES
---------------------------------------------------------------- */
@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    .section { padding: 60px 0; }
}

@media (max-width: 576px) {
    h1 { font-size: 1.6rem; }
    .btn, button { padding: 12px 25px; }
}