/* Variables */
:root {
    --primary: #D81159; /* Raspberry red */
    --secondary: #218380; /* Teal */
    --accent: #FFB400; /* Amber */
    --dark: #2B303A; /* Dark blue-gray */
    --light: #FFFFFF;
    --text: #333333;
    --text-light: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--primary), #8F2D56);
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --accent-light: #FFC233;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary);
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
}

/* Background Pattern */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Header Styles */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 180px;
}

.logo-svg {
    width: 100%;
    height: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    fill: var(--primary);
}

.logo-text-highlight {
    font-size: 24px;
    font-weight: 700;
    fill: var(--secondary);
}

/* Navigation */
.nav-list {
    display: flex;
    gap: 25px;
}

.nav-list a {
    color: var(--dark);
    font-weight: 500;
    padding: 5px 0;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--primary);
}

/* Menu Toggle for Mobile */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 8px;
}

.menu-icon span:nth-child(3) {
    top: 16px;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f5f7fa, #f0f2f5);
    position: relative;
    overflow: hidden;
}

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

.hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 17, 89, 0.1) 0%, rgba(216, 17, 89, 0) 70%);
    top: -100px;
    right: -100px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(33, 131, 128, 0.1) 0%, rgba(33, 131, 128, 0) 70%);
    bottom: -200px;
    left: -200px;
}

.hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    min-width: 300px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--dark);
}

.highlight {
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    background-color: rgba(216, 17, 89, 0.1);
    bottom: 0;
    left: 0;
    z-index: -1;
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--dark);
    opacity: 0.9;
    max-width: 550px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(216, 17, 89, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(216, 17, 89, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(216, 17, 89, 0);
    }
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 400px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.features::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 49%, white 50%);
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(to bottom right, #fff, #f9f9f9);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text);
    opacity: 0.8;
}

/* Process Section */
.process {
    padding: 80px 0;
    background-color: #f6f8fa;
    position: relative;
}

.process::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    top: -50px;
    left: 0;
    background: linear-gradient(to bottom left, transparent 49%, #f6f8fa 50%);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    padding: 30px 20px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--dark);
}

.process-arrow {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quote {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    padding-left: 20px;
}

.quote::before {
    content: '"';
    position: absolute;
    left: -5px;
    top: -15px;
    font-size: 40px;
    color: var(--primary);
    opacity: 0.2;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
}

.author-location {
    font-size: 0.9rem;
    color: var(--text);
    opacity: 0.7;
}

.rating {
    margin-top: 15px;
    color: var(--accent);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f6f8fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 50px;
}

.faq-item {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text);
    opacity: 0.85;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--light);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--light);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-section .cta-button {
    background: var(--light);
    color: var(--primary);
    border: none;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 70px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-svg {
    width: 100px;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
    max-width: 300px;
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.link-group h4 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.link-group ul li {
    margin-bottom: 10px;
}

.link-group ul li a {
    color: var(--light);
    opacity: 0.7;
    transition: var(--transition);
}

.link-group ul li a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 10px;
}

.keywords {
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .process-step {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .menu-icon {
        display: block;
        z-index: 1001;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    #menu-toggle:checked ~ nav .nav-list {
        right: 0;
    }
    
    #menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        top: 8px;
        transform: rotate(45deg);
    }
    
    #menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        top: 8px;
        transform: rotate(-45deg);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
