/* 
======================
TABLE OF CONTENTS
======================
1. Variables & Reset
2. Base Styles
3. Typography
4. Layout & Containers
5. Header & Navigation
6. Hero Section
7. About Section
8. Services Section
9. Approach Section
10. Testimonials Section
11. FAQ Section
12. Contact Form
13. Footer
14. Cookie Banner
15. Animations
16. Utility Classes
======================
*/

/* ====================== 1. Variables & Reset ====================== */
:root {
    /* Color Palette */
    --raven-purple: #3E2F5B;
    --fluorescent-blue: #2EC4B6;
    --sun-dust: #F4A261;
    --ivory-mist: #FAF9F6;
    --graphite-black: #1A1A1A;
    
    /* Gradients */
    --main-gradient: linear-gradient(135deg, var(--raven-purple) 0%, var(--fluorescent-blue) 100%);
    --accent-gradient: linear-gradient(135deg, var(--sun-dust) 0%, var(--fluorescent-blue) 80%);
    
    /* Typography */
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Box Shadow */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.15);
}

/* Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ====================== 2. Base Styles ====================== */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--graphite-black);
    background-color: var(--ivory-mist);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--fluorescent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--raven-purple);
}

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
}

section {
    padding: var(--spacing-lg) 0;
}

/* ====================== 3. Typography ====================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--raven-purple);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--fluorescent-blue);
}

h3 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

h4 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-md);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title h2 {
    display: inline-block;
}

.section-title h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--graphite-black);
    opacity: 0.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

/* ====================== 4. Layout & Containers ====================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    flex: 1;
    padding: 0 15px;
}

.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ====================== 5. Header & Navigation ====================== */
.site-header {
    background-color: var(--raven-purple);
    padding: var(--spacing-sm) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: var(--spacing-md);
}

.nav-list li a {
    color: var(--ivory-mist);
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--fluorescent-blue);
    transition: width 0.3s ease;
}

.nav-list li a:hover {
    color: var(--fluorescent-blue);
}

.nav-list li a:hover::after {
    width: 100%;
}

.btn-contact {
    background-color: var(--fluorescent-blue);
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--sun-dust);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
}

/* ====================== 6. Hero Section ====================== */
.hero {
    background: var(--main-gradient);
    color: var(--ivory-mist);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/gPHzNG.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    color: var(--ivory-mist);
    margin-bottom: var(--spacing-md);
    font-size: 3.5rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
}

.cta-button {
    display: inline-block;
    background-color: var(--sun-dust);
    color: var(--graphite-black);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--fluorescent-blue);
    transition: all 0.5s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--ivory-mist);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover::before {
    width: 100%;
}

/* ====================== 7. About Section ====================== */
.about {
    padding: var(--spacing-xl) 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    align-items: center;
}

.about-image {
    flex: 1;
     min-width: 220px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-text {
    flex: 2;
     min-width: 220px;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.feature-card {
    background-color: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--main-gradient);
    z-index: -1;
    transition: height 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--fluorescent-blue);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* ====================== 8. Services Section ====================== */
.services {
    background-color: var(--raven-purple);
    color: var(--ivory-mist);
    padding: var(--spacing-xl) 0;
}

.services .section-title h2 {
    color: var(--ivory-mist);
}

.services .section-subtitle {
    color: var(--ivory-mist);
    opacity: 0.8;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.service-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-image {
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--fluorescent-blue);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-title {
    color: var(--fluorescent-blue);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-sm);
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: var(--spacing-md) 0;
    color: var(--sun-dust);
}

.service-features {
    margin-bottom: var(--spacing-md);
}

.service-features li {
    margin-bottom: var(--spacing-xs);
    display: flex;
    align-items: center;
}

.service-features li::before {
    content: '✓';
    color: var(--fluorescent-blue);
    margin-right: 10px;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    background-color: var(--fluorescent-blue);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: var(--sun-dust);
    color: var(--graphite-black);
}

/* ====================== 9. Approach Section ====================== */
.approach {
    padding: var(--spacing-xl) 0;
}

.approach-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
}

.approach-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 4px;
    height: 100%;
    background: var(--main-gradient);
    border-radius: var(--radius-lg);
    z-index: 1;
}

.step {
    display: flex;
    gap: var(--spacing-md);
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--main-gradient);
    color: white;
    border-radius: 50%;
    z-index: 2;
    box-shadow: var(--shadow-md);
}

.step-content {
    flex: 1;
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.step-title {
    color: var(--raven-purple);
    margin-bottom: var(--spacing-sm);
}

/* ====================== 10. Testimonials Section ====================== */
.testimonials {
    background-color: var(--raven-purple);
    color: var(--ivory-mist);
    padding: var(--spacing-xl) 0;
}

.testimonials .section-title h2 {
    color: var(--ivory-mist);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 300%;
    transition: transform 0.5s ease;
}

.slide {
    width: 33.33%;
    padding: 0 var(--spacing-md);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    color: var(--fluorescent-blue);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--fluorescent-blue);
}

.testimonial-role {
    font-size: 0.9rem;
    opacity: 0.8;
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-md);
}

.slider-nav {
    display: none;
}

.slider-label {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-label:hover {
    background-color: var(--fluorescent-blue);
}

#slide1:checked ~ .slides {
    transform: translateX(0);
}

#slide2:checked ~ .slides {
    transform: translateX(-33.33%);
}

#slide3:checked ~ .slides {
    transform: translateX(-66.66%);
}

#slide1:checked ~ .slider-controls label[for="slide1"],
#slide2:checked ~ .slider-controls label[for="slide2"],
#slide3:checked ~ .slider-controls label[for="slide3"] {
    background-color: var(--fluorescent-blue);
}

/* ====================== 11. FAQ Section ====================== */
.faq {
    padding: var(--spacing-xl) 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: var(--spacing-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    background-color: white;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.faq-toggle {
    display: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--fluorescent-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-toggle:checked ~ .faq-question::after {
    content: '-';
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
}

/* ====================== 12. Contact Form ====================== */
.contact {
    padding: var(--spacing-xl) 0;
    background-color: var(--ivory-mist);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-gradient);
    opacity: 0.03;
    z-index: -1;
}

.form-group {
    margin-bottom: var(--spacing-md);
}

label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    color: var(--raven-purple);
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    background-color: white;
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--fluorescent-blue);
    box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.2);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.checkbox-group input {
    width: auto;
    margin-right: var(--spacing-xs);
}

.form-button {
    background: var(--main-gradient);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.form-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ====================== 13. Footer ====================== */
.site-footer {
    background-color: var(--raven-purple);
    color: var(--ivory-mist);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo img {
    height: 60px;
}

.footer-description {
    opacity: 0.8;
    max-width: 400px;
}

.footer-contact h3, .footer-links h3 {
    color: var(--fluorescent-blue);
    margin-bottom: var(--spacing-md);
    position: relative;
}

.footer-contact h3::after, .footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--fluorescent-blue);
}

.contact-list li, .links-list li {
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
}

.contact-list .icon {
    margin-right: var(--spacing-sm);
    color: var(--fluorescent-blue);
}

.contact-list a, .links-list a {
    color: var(--ivory-mist);
    transition: all 0.3s ease;
}

.contact-list a:hover, .links-list a:hover {
    color: var(--fluorescent-blue);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ====================== 14. Cookie Banner ====================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--graphite-black);
    color: var(--ivory-mist);
    padding: var(--spacing-md);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner p {
    margin-bottom: 0;
    margin-right: var(--spacing-md);
}

.cookie-banner a {
    color: var(--fluorescent-blue);
    text-decoration: underline;
}

.btn-accept {
    background-color: var(--fluorescent-blue);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background-color: var(--sun-dust);
}

/* ====================== 15. Animations ====================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-up {
    animation: fadeInUp 1s ease;
}

/* ====================== 16. Utility Classes ====================== */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.py-1 {
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
}

.py-2 {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.py-3 {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.py-4 {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.py-5 {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.px-1 {
    padding-left: var(--spacing-xs);
    padding-right: var(--spacing-xs);
}

.px-2 {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
}

.px-3 {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.px-4 {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.px-5 {
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
}

.text-primary {
    color: var(--raven-purple);
}

.text-secondary {
    color: var(--fluorescent-blue);
}

.text-accent {
    color: var(--sun-dust);
}

.bg-primary {
    background-color: var(--raven-purple);
}

.bg-secondary {
    background-color: var(--fluorescent-blue);
}

.bg-accent {
    background-color: var(--sun-dust);
}

.bg-light {
    background-color: var(--ivory-mist);
}

.bg-dark {
    background-color: var(--graphite-black);
}

.bg-gradient {
    background: var(--main-gradient);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-glass {
    box-shadow: var(--shadow-glass);
}

.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-md {
    border-radius: var(--radius-md);
}

.rounded-lg {
    border-radius: var(--radius-lg);
}

.rounded-xl {
    border-radius: var(--radius-xl);
} 