/* Global Styles */
:root {
    --primary-color: #41AFFF;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --light-text: #fff;
    --dark-text: #222;
    --border-color: #e1e1e1;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    overflow-x: hidden;
    color-scheme: light only;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--dark-text);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
}

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

a:hover {
    color: #2d8fd9;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.primary-btn:hover {
    background-color: #2d8fd9;
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(65, 175, 255, 0.3);
}

.secondary-btn {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(65, 175, 255, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

.slide-up {
    animation: slideUp 0.8s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

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

.logo a {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

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

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 0;
    margin-top: 80px;
    height: calc(100vh - 80px);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 50px;
}

.hero-content h1 {
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out, slideInLeft 1s ease-in-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 1.2s ease-in-out, slideInLeft 1.2s ease-in-out;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    animation: fadeIn 1.4s ease-in-out, slideInLeft 1.4s ease-in-out;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1s ease-in-out, slideInRight 1s ease-in-out;
}

.hero-image img {
    max-width: 100%;
    max-height: 500px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--primary-color);
}

/* Categories Section */
.categories-section {
    background-color: #fff;
}

.categories-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(65, 175, 255, 0.2);
}

.category-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(65, 175, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.category-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.category-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.all-categories {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    animation: fadeIn 0.5s ease-in-out;
}

.view-all {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid var(--primary-color);
}

.view-all:hover {
    color: #fff;
    background-color: var(--primary-color);
    text-decoration: none;
}

/* Vendors Section */
.vendors-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.vendors-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(65, 175, 255, 0.1);
    z-index: 0;
}

.vendors-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(65, 175, 255, 0.1);
    z-index: 0;
}

.vendors-section .section-header {
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.vendors-section .section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.vendors-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.vendors-swiper {
    padding: 20px 30px;
    position: relative;
}

.vendors-button-next,
.vendors-button-prev {
    color: #41AFFF;
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.vendors-button-next:after,
.vendors-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.vendors-button-next:hover,
.vendors-button-prev:hover {
    background-color: #41AFFF;
    color: #fff;
}

.vendors-pagination {
    position: relative;
    margin-top: 20px;
}

.vendors-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 0.7;
}

.vendors-pagination .swiper-pagination-bullet-active {
    background-color: #41AFFF;
    opacity: 1;
}

.vendor-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vendor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(65, 175, 255, 0.25);
    border-color: rgba(65, 175, 255, 0.2);
}

.vendor-image {
    height: 220px;
    overflow: hidden;
    flex: 0 0 220px;
    position: relative;
}

.vendor-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vendor-card:hover .vendor-image::after {
    opacity: 1;
}

.vendor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.vendor-card:hover .vendor-image img {
    transform: scale(1.1);
}

.vendor-card h3 {
    padding: 25px 25px 10px;
    font-size: 1.4rem;
    margin: 0;
    color: #333;
    font-weight: 600;
    position: relative;
}

.vendor-card h3::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 25px;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.vendor-card:hover h3::after {
    width: 60px;
}

.vendor-rating {
    padding: 0 25px 10px;
    color: #ffc107;
    display: flex;
    align-items: center;
}

.vendor-rating i {
    margin-right: 2px;
    font-size: 0.9rem;
}

.vendor-rating span {
    color: #666;
    margin-left: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    background-color: #f8f9fa;
    padding: 2px 8px;
    border-radius: 20px;
}

.vendor-card p {
    padding: 0 25px 25px;
    color: #666;
    margin-top: auto;
    flex-grow: 1;
    line-height: 1.6;
    font-size: 0.95rem;
}

.vendor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background-color: var(--primary-color);
    transition: height 0.4s ease;
}

.vendor-card:hover::before {
    height: 100%;
}

/* Payment Section */
.payment-section {
    padding: 50px 0;
    background-color: #fff;
}

.payment-slider {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-logos {
    display: flex;
    animation: slide 20s linear infinite;
    width: calc(200px * 12); /* Increased width to accommodate more spacing */
}

.payment-logos img {
    height: 50px;
    width: 120px;
    margin: 0 40px;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: all 0.3s ease;
}

.payment-logos img:hover {
    filter: grayscale(0);
    transform: scale(1.1);
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6)); } /* Adjusted for smoother infinite loop */
}

/* Join Us Section */
.join-us-section {
    background-color: #f8f9fa;
}

.join-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.join-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
}

.join-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(65, 175, 255, 0.2);
}

.join-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(65, 175, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.join-icon i {
    font-size: 35px;
    color: var(--primary-color);
}

.join-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.join-card p {
    margin-bottom: 25px;
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #fff;
}

.testimonials-swiper {
    padding: 20px 10px 50px;
}

.testimonial-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    display: flex;
    height: 100%;
    min-height: 250px; /* Minimum height for consistency */
}

.testimonial-image {
    flex: 0 0 150px;
    overflow: hidden;
    height: 100%;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 15px;
    flex-grow: 1;
}

.testimonial-content h4 {
    margin-bottom: 5px;
    margin-top: 10px;
}

.testimonial-content span {
    color: #666;
    font-size: 0.9rem;
}

/* App Download Section */
.app-download-section {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.app-download-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.app-content {
    flex: 1;
    padding-right: 50px;
}

.app-content h2 {
    color: var(--light-text);
    position: relative;
}

.app-content h2.app-title {
    color: var(--light-text);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}

.app-content h2:after {
    background-color: var(--light-text);
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.app-btn {
    display: flex;
    align-items: center;
    background-color: var(--light-text);
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 10px;
    transition: var(--transition);
}

.app-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-btn i {
    font-size: 30px;
    margin-right: 10px;
}

.app-btn span {
    text-align: left;
    line-height: 1.2;
}

.app-btn strong {
    font-size: 1.2rem;
}

.app-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.app-image img {
    max-height: 500px;
}

/* Terms and Conditions Page */
.terms-banner, .privacy-banner {
    background-color: #41AFFF;
    background-image: linear-gradient(135deg, #41AFFF 0%, #2980b9 100%);
}

.banner-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.banner-action-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.banner-action-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.banner-action-btn i {
    margin-right: 8px;
}

.terms-content-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.terms-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.terms-toc {
    position: relative;
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.terms-toc h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
}

.terms-toc h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.terms-toc ul {
    list-style: none;
    padding: 0;
}

.terms-toc li {
    margin-bottom: 10px;
}

.terms-toc a {
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    padding: 8px 10px;
    border-left: 2px solid transparent;
    border-radius: 0 5px 5px 0;
    font-weight: 500;
}

.terms-toc a:hover, .terms-toc a.active {
    color: var(--primary-color);
    border-left: 2px solid var(--primary-color);
    background-color: rgba(65, 175, 255, 0.1);
    padding-left: 15px;
}

.print-terms-btn {
    display: block;
    width: 100%;
    padding: 10px 15px;
    margin-top: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.print-terms-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 175, 255, 0.3);
}

.print-terms-btn i {
    margin-right: 8px;
}

.terms-section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border-left: 3px solid var(--primary-color);
}

.terms-section:hover {
    box-shadow: 0 8px 25px rgba(65, 175, 255, 0.1);
    transform: translateY(-5px);
}

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(65, 175, 255, 0.2);
    position: relative;
}

.terms-section h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
}

.terms-section h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.terms-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.terms-section p, .terms-section ul, .terms-section ol {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.terms-section ul, .terms-section ol {
    padding-left: 20px;
}

.terms-section ul li, .terms-section ol li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.terms-section ul {
    list-style-type: none;
}

.terms-section ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background-color: rgba(65, 175, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.contact-info p {
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    padding-left: 28px;
}

.contact-info i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
    width: 20px;
    text-align: center;
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 5px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background-color: #2980b9;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(65, 175, 255, 0.3);
}

/* Print Styles for Terms Page */
@media print {
    header, footer, .terms-toc, .print-terms-btn {
        display: none !important;
    }
    
    .terms-content {
        display: block;
        width: 100%;
    }
    
    .terms-section {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border-left: 1px solid #ddd;
        margin-bottom: 20px;
        padding: 15px;
    }
    
    .terms-section h2 {
        font-size: 16pt;
        color: #000;
    }
    
    .terms-section h3 {
        font-size: 14pt;
        color: #333;
    }
    
    .terms-section p, .terms-section ul, .terms-section ol {
        font-size: 11pt;
        color: #000;
    }
    
    .contact-info {
        border: 1px solid #ddd;
        padding: 15px;
        box-shadow: none;
    }
    
    .page-banner {
    background-color: #41AFFF;
    background-image: linear-gradient(135deg, #41AFFF 0%, #2980b9 100%);
    text-align: center;
    padding: 100px 0 80px;
    margin-top: 60px;
}
    
    .page-banner h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}
    
    .page-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}
}

/* Contact Page Styles */
.contact-banner {
    background-color: #41AFFF;
    background-image: linear-gradient(135deg, #41AFFF 0%, #2980b9 100%);
    text-align: center;
    padding: 100px 0 80px;
    margin-top: 60px;
}

.contact-banner h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.contact-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1.2s ease-in-out;
}

.contact-info-section {
    background-color: #fff;
    padding: 80px 0;
    margin-top: -40px;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(65, 175, 255, 0.2);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(65, 175, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--dark-text);
}

.contact-card p {
    color: #666;
    line-height: 1.6;
}

.contact-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: var(--dark-text);
    margin-bottom: 10px;
}

.form-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.form-header p {
    color: #666;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(65, 175, 255, 0.2);
    outline: none;
}

/* Form validation styles */
.form-group input.valid,
.form-group textarea.valid {
    border-color: #28a745;
    background-color: rgba(40, 167, 69, 0.05);
}

.form-group input.invalid,
.form-group textarea.invalid {
    border-color: #dc3545;
    background-color: rgba(220, 53, 69, 0.05);
}

.input-error {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #2d8fd9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-status {
    grid-column: span 2;
    margin-top: 15px;
    text-align: center;
}

/* Form status messages */
.success-message,
.error-message,
.loading-message {
    padding: 12px 15px;
    border-radius: 5px;
    font-weight: 500;
    margin-top: 15px;
    animation: fadeIn 0.5s ease-in-out;
}

.success-message {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.error-message {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.loading-message {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.map-section {
    padding: 80px 0;
    background-color: #fff;
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.connect-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.social-connect {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.social-connect-item {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border-radius: 50px;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-connect-item i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-connect-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.facebook {
    background-color: #3b5998;
}

.twitter {
    background-color: #1da1f2;
}

.instagram {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.linkedin {
    background-color: #0077b5;
}

.youtube {
    background-color: #ff0000;
}

.contact-faq-section {
    background-color: #fff;
    padding: 80px 0;
}

.contact-faqs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-faq-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

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

.contact-faq-item p {
    color: #666;
    line-height: 1.6;
}

.more-questions {
    text-align: center;
    margin-top: 40px;
}

.more-questions p {
    font-size: 1.1rem;
    color: #666;
}

.more-questions a {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: underline;
}

.more-questions a:hover {
    color: #2d8fd9;
}

/* FAQ Page Styles */
.faq-banner {
    background-color: #41AFFF;
    background-image: linear-gradient(135deg, #41AFFF 0%, #2980b9 100%);
}

.faq-search-section {
    background-color: #fff;
    padding: 50px 0;
}

.faq-search-container {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.faq-search-box {
    display: flex;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    overflow: hidden;
}

.faq-search-box input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.faq-search-box button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-search-box button:hover {
    background-color: #2d8fd9;
}

.faq-categories-section {
    background-color: #f8f9fa;
    padding: 30px 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.category-btn {
    padding: 10px 20px;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    color: var(--text-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.category-btn:hover, .category-btn.active {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(65, 175, 255, 0.3);
}

.faq-content-section {
    background-color: #fff;
    padding: 50px 0;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-accordion {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-item.active .faq-question h3 {
    color: #fff;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(65, 175, 255, 0.1);
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
}

.contact-support-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact-support-container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.support-option {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.support-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(65, 175, 255, 0.2);
}

.support-option i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.support-option h3 {
    margin-bottom: 10px;
}

.support-option p {
    color: #666;
}

/* Achievements Section */
.achievements-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(65, 175, 255, 0.05);
    z-index: 0;
}

.achievements-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(65, 175, 255, 0.05);
    z-index: 0;
}

/* Team Section Styles */
.team-section {
    position: relative;
    background-color: var(--secondary-color);
    padding: 100px 0;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(65, 175, 255, 0.05);
    z-index: 0;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(65, 175, 255, 0.05);
    z-index: 0;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(65, 175, 255, 0.1);
    height: 100%;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(65, 175, 255, 0.2);
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #2d8fd9);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(65, 175, 255, 0.15);
    transition: all 0.5s ease;
    border: 5px solid rgba(65, 175, 255, 0.1);
}

.team-member:hover .member-image {
    transform: scale(1.1) rotate(5deg);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.team-member span {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: auto;
}

.member-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(65, 175, 255, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.achievements-counters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.counter-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(65, 175, 255, 0.1);
    height: 100%;
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(65, 175, 255, 0.2);
}

.counter-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #2d8fd9);
}

.counter-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(65, 175, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(65, 175, 255, 0.15);
    transition: all 0.5s ease;
}

.counter-item:hover .counter-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(65, 175, 255, 0.2);
}

.counter-icon i {
    font-size: 35px;
    color: var(--primary-color);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
    background: linear-gradient(90deg, var(--primary-color), #2d8fd9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.counter-text {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.counter-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #2d8fd9);
    border-radius: 3px;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo a {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 400;
}

.footer-logo p {
    margin: 15px 0;
    color: #ccc;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3 {
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    color: #ccc;
}

.footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-color);
}

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