/* Base styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #FF7050 0%, #008FAD 100%);
    position: relative;
    overflow: hidden;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Adjust height as needed */
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1440 320" xmlns="http://www.w3.org/2000/svg"><path fill="%23ffffff" fill-opacity="0.2" d="M0,160L48,176C96,192,192,224,288,208C384,192,480,128,576,106.7C672,85,768,107,864,133.3C960,160,1056,192,1152,192C1248,192,1344,160,1392,144L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center bottom;
    background-size: cover;
    opacity: 0.3;
    animation: waveAnimation 20s linear infinite;
}

.hero-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-circles::before,
.hero-circles::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: circleAnimation 15s infinite ease-in-out;
}

.hero-circles::before {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.hero-circles::after {
    width: 300px;
    height: 300px;
    bottom: 5%;
    right: 10%;
    animation-delay: 5s;
}

@keyframes waveAnimation {
    0% { background-position-x: 0; }
    100% { background-position-x: 1440px; } /* Adjust based on SVG width */
}

@keyframes circleAnimation {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.1; }
    50% { transform: translateY(-20px) scale(1.05); opacity: 0.2; }
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    transition: all 0.3s ease;
}

.hero-btn:hover {
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn-outline {
    transition: all 0.3s ease;
}

.hero-btn-outline:hover {
    background-color: white;
    color: #FF7050;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Activity Card */
.activity-card {
    transition: all 0.3s ease;
}

.activity-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Service Card */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: #e0e0e0;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item > div {
    width: calc(50% - 40px); /* Adjust for marker width and spacing */
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-item:nth-child(odd) > div {
    margin-left: auto;
    margin-right: 40px;
}

.timeline-item:nth-child(even) > div {
    margin-right: auto;
    margin-left: 40px;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
        transform: translateX(0);
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(-50%);
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .timeline-item > div {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}

/* Result Card */
.result-card {
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Before/After Card */
.before-after-card {
    transition: all 0.3s ease;
}

.before-after-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Testimonial Card */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Form Card */
.contact-form-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
    outline: none;
    ring: 2px;
    ring-color: rgba(255, 255, 255, 0.5);
}

.contact-form-card select option {
    background-color: #008FAD; /* Darker background for options */
    color: white;
}

/* Cookie Popup */
#cookiePopup {
    animation: slideInUp 0.5s ease-out forwards;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Menu */
#mobileMenuBtn span {
    transition: all 0.3s ease-in-out;
}

#mobileMenuBtn.open span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

#mobileMenuBtn.open span:nth-child(2) {
    opacity: 0;
}

#mobileMenuBtn.open span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}
