/* 
 * arsehole.ca - A website that looks like it costs $1M but has no purpose
 * A parody of corporate websites with excessive design elements
 */

:root {
    --primary-color: #3a0ca3;
    --secondary-color: #4cc9f0;
    --accent-color: #f72585;
    --dark-color: #1a1a2e;
    --light-color: #ffffff;
    --gradient-1: linear-gradient(135deg, #4cc9f0, #3a0ca3);
    --gradient-2: linear-gradient(135deg, #f72585, #7209b7);
    --gradient-3: linear-gradient(135deg, #4361ee, #3a0ca3);
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

.highlight {
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: rgba(247, 37, 133, 0.2);
    z-index: -1;
}

.section-tag {
    display: inline-block;
    background: var(--gradient-1);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--box-shadow);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subheading {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.small-text {
    font-size: 0.8rem;
    color: #999;
    margin-top: 1rem;
}

.disclaimer {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--light-color);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
}

.circular {
    animation: rotate 2s linear infinite;
    height: 60px;
    width: 60px;
    position: relative;
}

.path {
    stroke: var(--primary-color);
    stroke-dasharray: 150, 200;
    stroke-dashoffset: -10;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124;
    }
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--light-color);
    position: relative;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-2);
    transform: scaleX(0.7);
    transform-origin: left;
    transition: var(--transition);
}

.navbar-brand:hover::after {
    transform: scaleX(1);
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.btn-special {
    background: var(--gradient-2);
    border-radius: 50px;
    margin-left: 1rem;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(247, 37, 133, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(247, 37, 133, 0);
    }
}

/* Hero Section */
.hero-section {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="10" cy="10" r="1" fill="%233a0ca3" opacity="0.1"/><circle cx="30" cy="40" r="1" fill="%234cc9f0" opacity="0.1"/><circle cx="50" cy="20" r="1" fill="%23f72585" opacity="0.1"/><circle cx="70" cy="60" r="1" fill="%233a0ca3" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%234cc9f0" opacity="0.1"/><circle cx="20" cy="80" r="1" fill="%23f72585" opacity="0.1"/><circle cx="40" cy="50" r="1" fill="%233a0ca3" opacity="0.1"/><circle cx="60" cy="90" r="1" fill="%234cc9f0" opacity="0.1"/><circle cx="80" cy="70" r="1" fill="%23f72585" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
}

.hero-section .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--box-shadow);
}

.hero-buttons .btn-primary {
    background: var(--gradient-2);
    border: none;
}

.hero-buttons .btn-outline-light {
    border: 2px solid var(--light-color);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-badges span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.trust-badges i {
    margin-right: 0.5rem;
    color: var(--secondary-color);
}

.hero-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shape {
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 10s infinite;
    box-shadow: 0 0 50px rgba(76, 201, 240, 0.3);
}

@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 6s infinite;
}

#float1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

#float2 {
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

#float3 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

#float4 {
    top: 70%;
    right: 20%;
    animation-delay: 3s;
}

#float5 {
    top: 10%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 280px;
}

/* Ticker Banner */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--gradient-3);
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    display: inline-block;
    padding: 0 2rem;
    color: white;
    font-weight: 600;
}

.ticker-item i {
    margin-left: 0.5rem;
}

@keyframes ticker {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* About Section */
.about-section {
    background-color: var(--light-color);
}

.about-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-shape {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphing 12s infinite;
    box-shadow: 0 0 50px rgba(67, 97, 238, 0.3);
}

.about-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.1;
}

.about-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.about-badges {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
}

.badge-item img {
    margin-bottom: 0.5rem;
    width: 50px;
}

.badge-item span {
    font-size: 0.8rem;
    color: #666;
}

/* Services Section */
.services-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(150px, -150px);
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    border-radius: 50%;
    opacity: 0.05;
    transform: translate(-100px, 100px);
}

.service-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 4rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: visible;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    background: var(--gradient-3);
    color: var(--light-color);
}

.service-card.featured::before {
    background: var(--gradient-2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(58, 12, 163, 0.2);
}

.service-card.featured .service-icon {
    background: var(--light-color);
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.service-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    width: 100%;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-card.featured .stat-value {
    color: var(--light-color);
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
}

.service-card.featured .stat-label {
    color: rgba(255, 255, 255, 0.7);
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.service-card.featured .service-link {
    color: var(--light-color);
}

.service-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Solutions Section */
.solutions-section {
    background-color: var(--light-color);
    position: relative;
}

.methodology-diagram {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.methodology-circle {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(248,249,250,1) 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.methodology-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-weight: 700;
    text-align: center;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
    z-index: 2;
}

.methodology-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(calc(var(--rotation))) translate(200px) rotate(calc(-1 * var(--rotation)));
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}

.methodology-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.methodology-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, rgba(76, 201, 240, 0.3), rgba(58, 12, 163, 0.3));
    transform: translate(-50%, -50%) rotate(calc(-1 * var(--rotation)));
    z-index: -1;
}

.methodology-text {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.solution-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.solution-card.featured {
    background: var(--gradient-1);
    color: var(--light-color);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(247, 37, 133, 0.2);
}

.solution-card.featured .solution-icon {
    background: var(--light-color);
    color: var(--primary-color);
}

.solution-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.solution-card.featured .solution-list li::before {
    color: var(--light-color);
}

.solution-card .btn {
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.solution-card.featured .btn-primary {
    background-color: var(--light-color);
    color: var(--primary-color);
    border: none;
}

/* Metrics Section */
.metrics-section {
    background-color: #f8f9fa;
    position: relative;
}

.metrics-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.metrics-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.chart-container {
    position: relative;
    height: 250px;
    margin-bottom: 1.5rem;
}

.metrics-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.legend-color {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.counter-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    height: 100%;
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light-color);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(58, 12, 163, 0.2);
}

.counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.counter-card h4 {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
    position: relative;
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 3rem;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-item {
    flex: 0 0 calc(33.333% - 1.33rem);
    scroll-snap-align: start;
}

.testimonial-content {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
    height: 100%;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    box-shadow: var(--box-shadow);
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0;
}

.client-logos {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-item {
    flex: 0 0 calc(20% - 1.6rem);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
}

.logo-item img {
    max-width: 100px;
    max-height: 100px;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-3);
    color: var(--light-color);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="30" cy="40" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="70" cy="60" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="30" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="20" cy="80" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="50" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="60" cy="90" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="70" r="1" fill="%23ffffff" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: var(--text-shadow);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-content .btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cta-badges span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-badges i {
    margin-right: 0.5rem;
    color: var(--light-color);
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
    position: relative;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.2rem;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(58, 12, 163, 0.2);
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(58, 12, 163, 0.2);
    transition: var(--transition);
}

.contact-social a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(58, 12, 163, 0.3);
}

.contact-form {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    background-color: #f8f9fa;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(76, 201, 240, 0.25);
}

.form-check-label {
    font-size: 0.9rem;
    color: #666;
}

/* Footer */
.footer-section {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 0;
    position: relative;
}

.footer-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gradient-2);
    transform: translateY(-5px);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-2);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-2);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
}

.footer-newsletter button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-2);
    color: var(--light-color);
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    transform: scale(1.1);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 50px;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    text-align: right;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(247, 37, 133, 0.4);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .methodology-item {
        transform: rotate(calc(var(--rotation))) translate(180px) rotate(calc(-1 * var(--rotation)));
    }
}

@media (max-width: 991.98px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-image, .about-image {
        height: 350px;
        margin-top: 3rem;
    }
    
    .hero-shape, .about-shape {
        width: 250px;
        height: 250px;
    }
    
    .methodology-item {
        transform: rotate(calc(var(--rotation))) translate(150px) rotate(calc(-1 * var(--rotation)));
    }
    
    .testimonial-item {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-image, .about-image {
        height: 300px;
    }
    
    .hero-shape, .about-shape {
        width: 200px;
        height: 200px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .methodology-diagram {
        max-width: 400px;
    }
    
    .methodology-item {
        transform: rotate(calc(var(--rotation))) translate(120px) rotate(calc(-1 * var(--rotation)));
    }
    
    .methodology-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .methodology-text {
        font-size: 0.8rem;
    }
    
    .testimonial-item {
        flex: 0 0 100%;
    }
    
    .client-logos {
        gap: 1rem;
    }
    
    .logo-item {
        flex: 0 0 calc(33.333% - 0.67rem);
    }
}

@media (max-width: 575.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-right: 0;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-badges {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .badge-item {
        width: 100%;
    }
    
    .methodology-diagram {
        max-width: 300px;
    }
    
    .methodology-center {
        width: 80px;
        height: 80px;
        font-size: 0.8rem;
    }
    
    .methodology-item {
        transform: rotate(calc(var(--rotation))) translate(90px) rotate(calc(-1 * var(--rotation)));
    }
    
    .methodology-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .methodology-text {
        font-size: 0.7rem;
    }
    
    .cta-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-item {
        flex: 0 0 calc(50% - 0.5rem);
    }
}
