/* Base Styles */
:root {
    --primary: #FF5C57;    /* Fresh Coral */
    --secondary: #5B3EBA;  /* Deep Violet */
    --accent: #9AFFC2;     /* Cyber Mint */
    --background: #F8F9FB; /* Ghost Grey */
    --dark: #121212;       /* Ink Black */
    --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --shadow: 0 10px 30px rgba(91, 62, 186, 0.1);
    --transition: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&family=Open+Sans:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--background);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.text-center h2:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 92, 87, 0.2);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 92, 87, 0.3);
    color: white;
}

.btn-secondary {
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(91, 62, 186, 0.2);
}

.btn-secondary:hover {
    box-shadow: 0 8px 20px rgba(91, 62, 186, 0.3);
}

.text-center {
    text-align: center;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section:nth-child(even) {
    background: white;
}

/* Skewed section styles */
.skew-top {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    transform: skewY(-3deg);
    z-index: 1;
}

.skew-bottom {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: inherit;
    transform: skewY(-3deg);
    z-index: 1;
}

/* Animation keyframes */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideRight {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideLeft {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.animate.fade-in { animation-name: fadeIn; }
.animate.slide-up { animation-name: slideUp; }
.animate.slide-right { animation-name: slideRight; }
.animate.slide-left { animation-name: slideLeft; }

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 10px 0;
    background: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
}

.logo:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: var(--dark);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover:after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 5px 0;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 92, 87, 0.05) 0%, rgba(154, 255, 194, 0.1) 100%);
    margin-top: 0;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 200px;
    }
}

.hero:before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 92, 87, 0.2) 0%, rgba(154, 255, 194, 0.2) 100%);
    z-index: 1;
    animation: float 15s infinite ease-in-out;
}

.hero:after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(91, 62, 186, 0.2) 0%, rgba(154, 255, 194, 0.2) 100%);
    z-index: 1;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 20px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: slideUp 1s;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(18, 18, 18, 0.8);
    animation: slideUp 1s 0.2s backwards;
}

.hero-buttons {
    animation: slideUp 1s 0.4s backwards;
}

/* About Section */
.about {
    position: relative;
}

.about h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    border-radius: 0 30% 0 30%;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(91, 62, 186, 0.05) 0%, rgba(154, 255, 194, 0.05) 100%);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(91, 62, 186, 0.15);
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
}

.service-content {
    padding: 30px;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    background: rgba(255, 92, 87, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-icon i {
    font-size: 30px;
    color: var(--primary);
}

/* Benefits Section */
.benefits {
    background: white;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    margin-top: 50px;
}

.benefits-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.stat-block {
    background: var(--gradient-main);
    border-radius: 10px;
    padding: 30px;
    color: white;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-text {
    font-weight: 600;
    text-align: center;
}

.benefits-list {
    list-style: none;
}

.benefit-item {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}

.benefit-item:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: var(--primary);
    font-weight: 700;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, rgba(255, 92, 87, 0.05) 0%, rgba(154, 255, 194, 0.05) 100%);
    position: relative;
}

.testimonials-slider {
    margin-top: 50px;
    position: relative;
}

.testimonial-slide {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin: 10px;
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
}

.testimonial-content:before {
    content: '"';
    position: absolute;
    top: -30px;
    left: -10px;
    font-size: 100px;
    color: rgba(255, 92, 87, 0.1);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.testimonial-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin-bottom: 5px;
}

.testimonial-author-info p {
    margin: 0;
    font-size: 14px;
    color: rgba(18, 18, 18, 0.7);
}

/* Form Section */
.contact {
    background: linear-gradient(135deg, rgba(91, 62, 186, 0.05) 0%, rgba(154, 255, 194, 0.05) 100%);
    position: relative;
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
    padding: 150px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 50px;
    align-items: center;
}

.contact-text h2:after {
    background: white;
}

.form-container {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 40px;
    transform: rotate(-2deg);
}

.form-inner {
    transform: rotate(2deg);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(91, 62, 186, 0.2);
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(91, 62, 186, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.checkbox-input {
    margin-right: 10px;
    margin-top: 3px;
}

.checkbox-label {
    font-size: 14px;
}

.form-submit {
    margin-top: 20px;
}

/* Team Section */
.team {
    position: relative;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(91, 62, 186, 0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-name {
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 14px;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(255, 92, 87, 0.05) 0%, rgba(154, 255, 194, 0.05) 100%);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background: white;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:after {
    content: '+';
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question:after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--gradient-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    grid-gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-logo:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 2px;
}

.footer-about p {
    opacity: 0.7;
}

.footer-heading {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-link-item {
    margin-bottom: 10px;
}

.footer-link {
    color: white;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-link:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 15px;
}

.footer-contact-icon {
    margin-right: 15px;
    font-size: 20px;
    color: var(--primary);
}

.footer-contact-text {
    opacity: 0.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 600px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 0.5s 1s forwards;
}

.cookie-text {
    margin-right: 20px;
    margin-bottom: 0;
    font-size: 14px;
}

.cookie-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-button:hover {
    background: var(--secondary);
}

/* Policy Pages */
.policy-page {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--secondary) 0%, rgba(91, 62, 186, 0.8) 100%);
    min-height: 100vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.policy-header {
    margin-bottom: 40px;
    text-align: center;
}

.policy-section {
    margin-bottom: 30px;
}

.policy-section h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-container {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: white;
        box-shadow: var(--shadow);
        padding: 20px 0;
        transition: var(--transition);
        z-index: 1000;
    }
    
    .nav-list.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
    
    section {
        padding: 70px 0;
    }
    
    .hero {
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .benefits-stats {
        grid-template-columns: 1fr;
    }
    
    .policy-container {
        padding: 20px;
    }
}
