/* Global Styles */
:root {
    --primary-color: #2A3990;      /* Professional deep blue */
    --secondary-color: #FF4B91;    /* Anime-inspired soft pink */
    --accent-color: #6C63FF;       /* Modern purple accent */
    --text-primary: #333333;       /* Main text color */
    --text-secondary: #666666;     /* Secondary text color */
    --bg-light: #F5F5F5;          /* Light background */
    --bg-white: #FFFFFF;          /* White background */
    --bg-dark: #1A1A1A;           /* Dark background */
    --transition: all 0.3s ease;   /* Smooth transitions */
}

/* Typography */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Enhanced Navigation Styles */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    color: #333 !important;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-link:hover {
    color: #007bff !important;
    background: rgba(0, 123, 255, 0.05);
    transform: translateY(-1px);
}

.nav-link.active {
    color: #007bff !important;
    background: rgba(0, 123, 255, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .nav-link::after {
        display: none;
    }
}

/* Text Logo Styles */
.text-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    text-decoration: none;
    background: linear-gradient(120deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
    letter-spacing: -0.5px;
}

.text-logo:hover {
    background-position: right center;
    transform: translateY(-1px);
}

.text-logo span {
    color: var(--accent-color);
    font-weight: 600;
    margin-left: 2px;
}

/* Navigation Links */
.navbar-nav {
    margin-left: 2rem;
}

.nav-item {
    position: relative;
    margin: 0 0.3rem;
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

/* Mobile Navigation */
.navbar-toggler {
    padding: 0.5rem;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 24px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 8px;
}

.navbar-toggler-icon::after {
    bottom: 8px;
}

/* Media Queries */
@media (max-width: 991px) {
    .navbar-nav {
        margin: 1rem 0;
        padding: 1rem 0;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .text-logo {
        font-size: 1.3rem;
    }

    .navbar {
        padding: 0.8rem 0;
    }
}

@media (max-width: 480px) {
    .text-logo {
        font-size: 1.1rem;
    }

    .navbar {
        padding: 0.6rem 0;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0;
    overflow: hidden;
    background-color: var(--bg-dark);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                      url('../images/hero/hero-main.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomInOut 20s infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    padding: 2rem;
}

.hero-content h1 {
    background: linear-gradient(120deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 8s ease-in-out infinite;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    text-shadow: none;
    white-space: nowrap;
    display: inline-block;
    overflow: hidden;
    line-height: 1.2;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--bg-white);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.hero-buttons .btn-outline {
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    background: transparent;
}

.hero-buttons .btn-outline:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Media Queries for Hero Section */
@media (max-width: 1200px) {
    .hero-content h1 {
        letter-spacing: -0.3px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        letter-spacing: -0.2px;
        margin-bottom: 1rem;
    }
    
    .hero-content .lead {
        font-size: clamp(1rem, 2.5vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: clamp(1.5rem, 3.5vw, 1.8rem);
        letter-spacing: -0.1px;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before,
.services-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    z-index: 0;
}

.services-section::before {
    top: -100px;
    left: -100px;
    background: var(--primary-color);
    animation: floatBubble 20s infinite alternate;
}

.services-section::after {
    bottom: -100px;
    right: -100px;
    background: var(--secondary-color);
    animation: floatBubble 15s infinite alternate-reverse;
}

@keyframes floatBubble {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.2); }
    100% { transform: translate(0, 100px) scale(1); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(var(--primary-rgb), 0.1) 0%, 
        rgba(var(--secondary-rgb), 0.1) 50%,
        rgba(var(--primary-rgb), 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, center) var(--mouse-y, center),
        rgba(var(--primary-rgb), 0.2) 0%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    animation: iconPop 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes iconPop {
    0% { transform: scale(1.1) rotate(5deg); }
    50% { transform: scale(1.2) rotate(-5deg); }
    100% { transform: scale(1.1) rotate(5deg); }
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    filter: blur(10px);
    z-index: -1;
    animation: pulse 2s infinite;
    opacity: 0.5;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0.5; }
}

.service-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-2px);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card:hover p {
    transform: translateY(-2px);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(var(--primary-rgb), 0.1);
}

.learn-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
}

.learn-more:hover i {
    transform: translateX(5px);
    animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(5px); }
    50% { transform: translateX(8px); }
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(var(--primary-rgb), 0.1) 0%, 
        rgba(var(--secondary-rgb), 0.1) 100%);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23ffffff" stroke-width="0.5" fill="none"/></svg>') repeat;
    opacity: 0.1;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

.services-cta h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    position: relative;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0.5rem;
    }
    
    .services-cta {
        margin: 3rem 1rem 0;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 2rem auto 0;
    }

    .service-card {
        padding: 1.8rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .services-cta {
        margin: 2rem 1rem 0;
        padding: 1.8rem;
    }

    .services-cta h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 3rem 0;
    }

    .service-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .services-cta {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }

    .services-cta h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .learn-more {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 25px;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.9);
    filter: blur(2px);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0;
    transition: all 0.4s ease;
}

.dot.active {
    width: 28px;
    border-radius: 15px;
    background: var(--primary-color);
    opacity: 1;
}

.dot:hover::after {
    opacity: 0.5;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    position: relative;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.2;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.testimonial-card:hover .quote-icon {
    opacity: 0.6;
    transform: rotate(10deg);
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-rating i {
    animation: starPop 0.4s ease forwards;
}

@keyframes starPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.testimonial-card:hover .testimonial-rating i:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:hover .testimonial-rating i:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:hover .testimonial-rating i:nth-child(4) { animation-delay: 0.3s; }
.testimonial-card:hover .testimonial-rating i:nth-child(5) { animation-delay: 0.4s; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-card:hover .author-image {
    border-color: var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.2);
}

.author-info {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .author-info {
    transform: translateX(5px);
}

.author-info h4 {
    font-size: 1rem;
    margin: 0;
    color: var(--text-primary);
    font-weight: 600;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0.2rem 0 0;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .testimonials-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-card {
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .testimonials-wrapper {
        padding: 0 40px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-card {
        min-width: 260px;
        padding: 1.2rem;
    }
    
    .author-image {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .testimonials-wrapper {
        padding: 0 30px;
    }
    
    .testimonial-card {
        min-width: 240px;
        padding: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #6C63FF;
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.15);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn-primary {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    background: #6C63FF;
    border: none;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #5a52cc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 99, 255, 0.2);
}

/* Enhanced Contact Form Styles */
.contact-form .form-control {
    border: 2px solid rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.contact-form .form-control:focus {
    border-color: #6C63FF;
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.15);
    outline: none;
}

.contact-form .form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    padding-right: calc(1.5em + 0.75rem);
}

.contact-form .invalid-feedback {
    display: none;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.contact-form .form-control.is-invalid + .invalid-feedback {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.contact-form .char-counter {
    text-align: right;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6c757d;
    transition: color 0.3s ease;
}

.contact-form .char-counter.text-warning {
    color: #ffc107;
}

.contact-form button[type="submit"] {
    position: relative;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #6C63FF;
    border: none;
    color: white;
    border-radius: 8px;
}

.contact-form button[type="submit"]:hover {
    background: #5a52cc;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(108, 99, 255, 0.2);
}

.contact-form button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-form button[type="submit"] .spinner {
    display: inline-block;
    margin-right: 8px;
}

.contact-form .form-message {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.contact-form .form-message.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-weight: 500;
}

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

.contact-form .form-message.alert-danger {
    background-color: rgba(220, 53, 69, 0.2);
    border: 2px solid rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Enhanced Service Dropdown Styles */
.contact-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236C63FF' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding: 15px;
    padding-right: 3rem;
    border: 2px solid rgba(108, 99, 255, 0.1);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #2d2d2d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form select.form-control:hover {
    border-color: rgba(108, 99, 255, 0.3);
    background-color: rgba(108, 99, 255, 0.02);
}

.contact-form select.form-control:focus {
    border-color: #6C63FF;
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.15);
    outline: none;
}

.contact-form select.form-control option {
    padding: 15px;
    font-size: 16px;
    background-color: #ffffff;
    color: #2d2d2d;
}

.contact-form select.form-control option:hover {
    background-color: rgba(108, 99, 255, 0.1);
}

.contact-form select.form-control option:first-child {
    color: #6c757d;
    font-style: italic;
}

.contact-form select.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23dc3545' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    padding-right: 4rem;
    background-position: center right 1rem;
}

.contact-form select.form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2328a745' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    padding-right: 4rem;
    background-position: center right 1rem;
}

.contact-form .invalid-feedback {
    font-size: 0.875rem;
    color: #dc3545;
    margin-top: 0.5rem;
    margin-left: 0.25rem;
    animation: fadeInUp 0.3s ease;
}

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

/* Remove chatbot styles */
.chatbot-widget,
.chat-indicator,
.chatbot-toggle,
.chatbot-container,
.chatbot-header,
.chatbot-messages,
.chatbot-input {
    display: none !important;
}

/* Cleanup any remaining chatbot animations */
@keyframes bounce {
    0%, 100% {
        transform: none;
    }
}

/* Chat Widget Styles */
.chat-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.98);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.chat-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

.chat-indicator i {
    color: var(--primary-color);
    animation: bounce 1s infinite;
}

.chat-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.chat-trigger i {
    font-size: 1.1rem;
}

.chat-trigger:hover {
    color: var(--primary-color);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Dark Mode Support for Chat */
@media (prefers-color-scheme: dark) {
    .chat-indicator {
        background: rgba(17, 24, 39, 0.98);
        color: #fff;
    }
}

/* Mobile Responsiveness for Chat */
@media (max-width: 768px) {
    .chat-indicator {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .chat-indicator {
        left: 20px;
        right: 20px;
        justify-content: center;
        text-align: center;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1001;
    transition: width 0.2s ease-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Skeleton Loading Animation */
.skeleton-nav-item,
.skeleton-content,
.skeleton-image,
.skeleton-text,
.skeleton-button {
    display: none;
}

.content-loading {
    opacity: 1 !important;
    visibility: visible !important;
}

.nav-item,
.content-section,
.image-container,
.text-content,
.button-container {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background: var(--bg-white);
        padding: 1rem;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

/* Section Padding */
.section-padding {
    padding: 100px 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.svg') center/cover;
    opacity: 0.03;
    pointer-events: none;
}

.footer-top {
    padding: 50px 0 30px;
    position: relative;
}

.footer-widget {
    margin-bottom: 20px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    background: linear-gradient(120deg, #fff, #6C63FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-link:hover {
    background: #6C63FF;
    color: #fff;
    transform: translateY(-2px);
}

.widget-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: #6C63FF;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.newsletter-form .input-group {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 4px;
}

.newsletter-form .form-control {
    background: transparent;
    border: none;
    height: 40px;
    padding: 0 15px;
    color: #fff;
    border-radius: 20px;
    font-size: 0.95rem;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: #6C63FF;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.newsletter-form .btn:hover {
    background: #5a52cc;
}

.footer-bottom {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-top {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: center;
        margin-top: 10px;
    }
    
    .footer-logo {
        font-size: 1.4rem;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
}

/* Utility Classes */
.bg-light {
    background-color: var(--bg-light) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced Scroll Padding for Fixed Header */
:target {
    scroll-margin-top: 100px;
}

/* Smooth Transitions for All Interactive Elements */
a, button, .btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Interactive Stats Counter */
.stats-counter {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stats-counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Interactive Buttons */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

/* Call to Action Section Enhancement */
/* Removed */

/* Portfolio Section */
.stats-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.stats-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stats-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stats-img {
    position: relative;
    overflow: hidden;
    background: var(--bg-dark);
}

.stats-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-item:hover .stats-img img {
    transform: scale(1.1) rotate(2deg);
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(var(--primary-rgb), 0.9),
        rgba(var(--primary-rgb), 0.7)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-item:hover .stats-overlay {
    opacity: 1;
    transform: translateY(0);
}

.stats-info {
    text-align: center;
    padding: 2rem;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.stats-item:hover .stats-info {
    transform: translateY(0);
    opacity: 1;
}

.stats-info h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.stats-item:hover .stats-info h4 {
    transform: translateY(0);
}

.stats-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.stats-item:hover .stats-info p {
    transform: translateY(0);
}

.stats-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.stats-item:hover .stats-links {
    transform: translateY(0);
    opacity: 1;
}

.stats-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.stats-links a:hover {
    background: var(--primary-dark);
    color: white;
    transform: rotate(360deg);
}

/* Responsive Design */
@media (max-width: 992px) {
    .stats-item.wide {
        grid-column: span 1;
    }

    .stats-item.tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Detail Pages */
.service-hero {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: center;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.service-hero .container {
    position: relative;
    z-index: 2;
}

.service-hero .service-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.service-hero .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Service-specific hero backgrounds */
.anime-manga-hero {
    background-image: url('../images/services/anime-manga-hero.jpg');
}

.anime-apps-hero {
    background-image: url('../images/services/anime-apps-hero.jpg');
}

.shoutouts-hero {
    background-image: url('../images/services/shoutouts-hero.jpg');
}

.anime-art-hero {
    background-image: url('../images/services/anime-art-hero.jpg');
}

.clothing-brand-hero {
    background-image: url('../images/services/clothing-brand-hero.jpg');
}

/* Service Intro Section */
.service-intro {
    padding: 80px 0;
    background-color: #fff;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.detail-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.detail-card .icon {
    font-size: 2.5rem;
    color: #6C63FF;
    margin-bottom: 20px;
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6C63FF;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #fff;
}

.why-choose-card {
    text-align: center;
    padding: 30px;
    height: 100%;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
}

.why-choose-card i {
    font-size: 2.5rem;
    color: #6C63FF;
    margin-bottom: 20px;
}

.why-choose-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

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

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

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 30px;
    background-color: #fff;
    color: #333;
}

.accordion-button:not(.collapsed) {
    background-color: #6C63FF;
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(108, 99, 255, 0.25);
}

.accordion-body {
    padding: 20px 30px;
    color: #666;
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #6C63FF 0%, #4c46b3 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn-primary {
    background-color: #fff;
    color: #6C63FF;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .service-hero {
        padding: 120px 0 80px;
    }

    .service-hero .service-title {
        font-size: 2.5rem;
    }

    .service-hero .lead {
        font-size: 1.1rem;
    }

    .detail-card, .why-choose-card {
        margin-bottom: 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section .lead {
        font-size: 1.1rem;
    }
}

/* Newsletter Message Styles */
.newsletter-message {
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    animation: fadeInUp 0.3s ease;
}

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

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

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

/* Newsletter Form Loading State */
.newsletter-form button .fa-spinner {
    margin-right: 0;
}

.newsletter-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Privacy Policy Styles */
.privacy-policy {
    padding-top: 120px;
    background-color: #f8f9fa;
}

.privacy-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-content h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
}

.privacy-content p {
    color: #4a4a4a;
    line-height: 1.7;
}

.privacy-content ul {
    list-style: none;
    padding-left: 0;
}

.privacy-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.privacy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #6C63FF;
    border-radius: 50%;
}

.privacy-content .contact-info {
    background: rgba(108, 99, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.privacy-content .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 0;
}

.privacy-content .contact-info li::before {
    display: none;
}

.privacy-content .contact-info li i {
    color: #6C63FF;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 25px;
    }
    
    .privacy-content h3 {
        font-size: 1.3rem;
    }
}

/* Terms of Service Styles */
.terms-of-service {
    padding-top: 120px;
    background-color: #f8f9fa;
}

.terms-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-content h3 {
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 30px;
}

.terms-content p {
    color: #4a4a4a;
    line-height: 1.7;
}

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

.terms-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.terms-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: #6C63FF;
    border-radius: 50%;
}

.terms-content .contact-info {
    background: rgba(108, 99, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.terms-content .contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 0;
}

.terms-content .contact-info li::before {
    display: none;
}

.terms-content .contact-info li i {
    color: #6C63FF;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .terms-content {
        padding: 25px;
    }
    
    .terms-content h3 {
        font-size: 1.3rem;
    }
}

/* Service Dropdown Styles */
.contact-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.contact-form select.form-control:focus {
    border-color: #6C63FF;
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.15);
}

.contact-form select.form-control option {
    padding: 10px;
    font-size: 16px;
}

.contact-form select.form-control option:first-child {
    color: #6c757d;
}
