/*
   MaaBijashan Decoration - Main Stylesheet
   Author: Augment Agent
   Version: 1.0
*/

/* ===== VARIABLES ===== */
:root {
    /* Modern Color Palette */
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --accent-color: #f59e0b;
    --dark-color: #0f172a;
    --light-color: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --text-dark: #1e293b;
    --text-light: #475569;

    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-secondary: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);

    /* Typography */
    --heading-font: 'Inter', sans-serif;
    --body-font: 'Inter', sans-serif;

    /* Modern Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    --grid-gap: 32px;

    /* Smooth Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);

    /* Modern Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-colored: 0 10px 25px rgba(37, 99, 235, 0.15);

    /* Modern Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
}

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

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

ul {
    list-style: none;
}

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

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    font-family: var(--body-font);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
    min-height: 48px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-colored);
    border: 1px solid transparent;
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.25);
}

.secondary-btn {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--light-gray);
    box-shadow: var(--shadow-sm);
}

.secondary-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

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

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

.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(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.025em;
}

.section-header h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 400;
}

/* Image styling */
.placeholder-image {
    background-color: var(--light-gray);
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 10px;
}

/* Real images styling */
.hero-image img,
.about-image img,
.service-image img,
.gallery-item img,
.member-image img,
.client-image img,
.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

/* Enhanced hero image styling */
.hero-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid rgba(255, 255, 255, 0.7);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E0F0FF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.loader-container {
    text-align: center;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(37, 99, 235, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.4);
}

.loader-text {
    font-family: var(--heading-font);
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 123, 255, 0.2);
}

.progress-container {
    width: 250px;
    height: 6px;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    width: 0;
    background-color: #007BFF;
    transition: width 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    }
    25% {
        box-shadow: 0 0 25px rgba(0, 123, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 123, 255, 0.5);
    }
    75% {
        box-shadow: 0 0 25px rgba(0, 123, 255, 0.4);
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
    }
}

/* ===== HEADER ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    padding: 8px 0;
}

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

/* Language Toggle Styles */
.language-toggle {
    margin-left: 1rem;
}

.language-toggle button {
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-toggle button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.logo a {
    display: flex;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: var(--dark-color);
}

.logo h1 span {
    color: var(--primary-color);
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.05);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--primary-color);
    background-color: rgba(37, 99, 235, 0.1);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(37, 99, 235, 0.1);
}

.hamburger div {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active .line1 {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active .line2 {
    opacity: 0;
}

.hamburger.active .line3 {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION - REDESIGNED ===== */
.fullscreen-hero {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

/* Slide Background */
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s ease;
}

.hero-slide.active .hero-slide-bg img {
    transform: scale(1);
}

/* Slide Content */
.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 600px;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(-40%);
}

.hero-slide.active .hero-slide-content {
    opacity: 1;
    transform: translateY(-50%);
    transition-delay: 0.5s;
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-left: 60px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-subtitle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 1px;
    background-color: var(--secondary-color);
    transform: translateY(-50%);
}

.hero-slide.active .slide-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.slide-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    opacity: 0.3;
    z-index: -1;
}

.hero-slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.slide-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

.hero-slide-content .btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s ease, color 0.3s ease;
}

.hero-slide.active .hero-slide-content .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.3s;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
}

.hero-control:hover {
    background-color: var(--primary-color);
}

.hero-dots {
    display: flex;
    margin: 0 20px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    z-index: 10;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-icon {
    font-size: 1.2rem;
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover::after {
    margin-left: 10px;
}

.services-cta {
    text-align: center;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 span {
    color: var(--primary-color);
}

.about-image {
    flex: 1;
    height: 400px;
}

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
    padding: var(--section-padding);
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--grid-gap);
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--light-gray);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-cta {
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.testimonials-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 30px;
    scrollbar-width: none; /* Firefox */
}

.testimonials-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    margin-bottom: 20px;
}

.testimonial-text p {
    font-style: italic;
    color: var(--gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

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

.testimonial-author-info {
    flex: 1;
}

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
}

/* ===== CONTACT PREVIEW ===== */
.contact-preview {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-text {
    flex: 1;
}

.contact-text h2 span {
    color: var(--primary-color);
}

.contact-info {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-form {
    flex: 1;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 10px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo h2 span {
    color: var(--primary-color);
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links h3,
.footer-services h3,
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links ul li a,
.footer-services ul li a {
    color: var(--light-gray);
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
}

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

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

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

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

.footer-bottom p {
    color: var(--light-gray);
    margin-bottom: 10px;
}

.developer-credit {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 10px !important;
    margin-bottom: 0 !important;
    font-style: italic;
    transition: color 0.3s ease;
}

.developer-credit a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
}

.developer-credit:hover {
    color: var(--primary-color) !important;
}



/* ===== ABOUT PAGE ===== */
.about {
    padding: 120px 0 var(--section-padding);
    background-color: var(--white);
}

.mission-vision {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.mission-vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.mission, .vision {
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission .icon, .vision .icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.team {
    padding: var(--section-padding);
    background-color: var(--white);
}

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

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.member-image {
    height: 300px;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    margin-bottom: 5px;
}

.designation {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.bio {
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: var(--light-gray);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Founder Highlight Styles */
.founder-highlight {
    position: relative;
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.founder-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.1;
}

.founder-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    z-index: 2;
}

/* Placeholder Image Styles */
.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #64748b;
    border: 2px dashed #cbd5e1;
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 15px;
    opacity: 0.6;
}

.placeholder-image span {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.8;
}

.specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    justify-content: center;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.specialty-item i {
    font-size: 1rem;
}

.contact-owner {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.contact-btn, .whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn {
    background: var(--primary-color);
    color: var(--white);
}

.contact-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
}

.whatsapp-btn:hover {
    background: #1fba58;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.why-choose-us {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

.feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

/* ===== SERVICES PAGE ===== */
.services-overview {
    padding: 120px 0 var(--section-padding);
    background-color: var(--white);
}

.services-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-detail {
    padding: var(--section-padding);
    background-color: var(--white);
}

.service-detail.alt-bg {
    background-color: var(--light-color);
}

.service-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    height: 400px;
}

.service-text {
    flex: 1;
}

.service-features {
    margin: 20px 0 30px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-header h3 {
    margin-bottom: 15px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.currency {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 5px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.duration {
    font-size: 0.9rem;
    color: var(--gray);
    margin-left: 5px;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    margin-right: 10px;
}

.pricing-features ul li.not-included {
    color: var(--gray);
    text-decoration: line-through;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== ENHANCED SERVICES SECTION ===== */
.services-section {
    padding: 40px 20px;
    background: #fdfdfd;
    font-family: 'Segoe UI', sans-serif;
}

.service-tab-pane {
    margin-bottom: 40px;
}

/* Enhanced Service Card Layout */
.service-card.enhanced {
    display: flex;
    flex-direction: row;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card.enhanced:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.service-tab-image {
    flex: 0 0 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    padding: 10px;
    overflow: hidden;
}

.service-tab-image img {
    width: 380px;
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    border-right: 3px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-tab-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.2);
    border-radius: 18px;
}
}

.service-tab-info {
    padding: 20px 30px;
    flex: 1;
}

.service-tab-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.service-tab-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Enhanced Primary Button */
.primary-btn.enhanced {
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.primary-btn.enhanced:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Responsive Design for Enhanced Service Cards */
@media (max-width: 768px) {
    .service-card.enhanced {
        flex-direction: column;
    }

    .service-tab-image {
        flex: none;
        width: 100%;
        height: 280px;
    }

    .service-tab-image img {
        width: 100%;
        height: 250px;
        border-right: none;
        border-bottom: 3px solid rgba(37, 99, 235, 0.1);
        border-radius: 15px 15px 0 0;
    }

    .service-tab-info {
        padding: 20px;
    }
}

/* ===== ENHANCED SERVICES SECTION ===== */
.services-section {
    padding: 40px 20px;
    background: #fdfdfd;
    font-family: 'Segoe UI', sans-serif;
}

.service-tab-pane {
    margin-bottom: 40px;
}

/* Enhanced Service Card Layout */
.service-card.enhanced {
    display: flex;
    flex-direction: row;
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card.enhanced:hover {
    transform: translateY(-6px);
}

.service-tab-image {
    flex: 0 0 auto;
}





/* ===== GALLERY PAGE ===== */
.gallery-filter {
    padding: 50px 0;
    background-color: var(--white);
}

.gallery-main {
    padding: 0 0 100px;
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(37, 99, 235, 0.2);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: var(--white);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    margin-bottom: 5px;
}

.gallery-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.video-gallery {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.video-thumbnail {
    height: 200px;
    position: relative;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--dark-color);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    margin-bottom: 10px;
}

.video-info p {
    color: var(--gray);
    margin-bottom: 0;
}

.client-reviews {
    padding: var(--section-padding);
    background-color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--light-color);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.client-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.client-info p {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.rating {
    color: var(--accent-color);
}

.review-content p {
    font-style: italic;
    color: var(--gray);
}

/* ===== CONTACT PAGE ===== */
.contact-info-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-info-card {
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.contact-info-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.contact-info-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 600;
}

.contact-info-card p {
    color: var(--gray);
    margin-bottom: 5px;
}

.contact-info-card a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-form-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

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

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

.form-header h2 {
    color: var(--dark-color);
}

.form-header h2 span {
    color: var(--primary-color);
}

.form-header p {
    color: var(--gray);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    font-family: var(--body-font);
    font-size: 1rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.form-group select option {
    background: var(--white);
    color: var(--dark-color);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.map-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.map-link:hover {
    transform: scale(1.02);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.map-link:hover .map-placeholder img {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.map-overlay p {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
}

.faq-section {
    padding: var(--section-padding);
    background-color: var(--light-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    color: var(--primary-color);
}

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

.faq-answer p {
    padding-bottom: 20px;
    color: var(--gray);
}

.social-media-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--white);
    color: var(--dark-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.social-link i {
    margin-right: 10px;
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--section-padding);
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta .primary-btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta .primary-btn:hover {
    background-color: var(--dark-color);
    color: var(--white);
}

.cta .secondary-btn {
    border-color: var(--white);
    color: var(--white);
}

.cta .secondary-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Animation classes for GSAP and Framer Motion */
.animate-text {
    opacity: 0;
}

.animate-text-delay {
    opacity: 0;
}

/* CSS Transitions for better performance */
/* Hover effects using CSS instead of JavaScript */
.hover-scale {
    transition: transform 0.2s ease-out !important;
}

.hover-scale:hover {
    transform: scale(1.05) !important;
}

.hover-rotate {
    transition: transform 0.3s ease-out !important;
}

.service-card:hover .hover-rotate {
    transform: rotate(360deg) !important;
}

.hover-float {
    transition: transform 0.2s ease-out !important;
}

.hover-float:hover {
    transform: translateY(-5px) !important;
}

/* Performance optimizations */
.gallery-item, .service-card, .team-member, .feature, .pricing-card,
.contact-info-card, .testimonial-card, .review-card, .faq-item {
    will-change: transform, opacity;
    transform: translateZ(0); /* Force GPU acceleration */
}

/* WhatsApp Floating Button */
.whatsapp-panel {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.whatsapp-button i {
    font-size: 30px;
    color: white;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-content {
    background-color: white;
    border-radius: 12px;
    padding: 15px 20px;
    margin-left: -30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

.whatsapp-panel:hover .whatsapp-content {
    max-width: 300px;
    opacity: 1;
    margin-left: 10px;
}

.whatsapp-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
    color: #333;
}

.whatsapp-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.whatsapp-number {
    font-weight: 600;
    color: #25D366;
    font-size: 16px;
    display: block;
    margin-bottom: 10px;
}

.whatsapp-cta {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    background-color: #1fba58;
    transform: translateY(-2px);
}

/* WhatsApp Button Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button {
    animation: whatsapp-pulse 2s infinite;
}

/* Google Translate Widget Styles */
#translate-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#translate-container:hover {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}



/* Reduce animation complexity on mobile */
@media (max-width: 767.98px) {
    .hover-scale:hover,
    .hover-float:hover {
        transform: none !important; /* Disable hover animations on mobile */
    }

    .service-card:hover .hover-rotate {
        transform: none !important;
    }
}

/* Loading Spinner Styles */
.btn .fa-spinner {
    color: #ffffff !important;
    animation: spin 1s linear infinite;
    margin-right: 8px;
}

.btn:disabled {
    opacity: 0.9;
    cursor: not-allowed;
    background: var(--primary-color) !important;
}

.btn:disabled .fa-spinner {
    color: #ffffff !important;
}

/* Custom Spinner Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Loading Button Styles */
.btn.loading {
    position: relative;
    background: var(--primary-color) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4) !important;
}

.btn.loading .fa-spinner {
    color: #ffffff !important;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.5));
}

/* Alternative Spinner Colors */
.btn.loading.primary .fa-spinner {
    color: #ffffff !important;
}

.btn.loading.success .fa-spinner {
    color: #ffffff !important;
}

.btn.loading.warning .fa-spinner {
    color: #ffffff !important;
}

.btn.loading.danger .fa-spinner {
    color: #ffffff !important;
}

/* Pulsing Effect for Loading Button */
.btn.loading {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 99, 235, 0.6);
    }
    100% {
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    }
}

/* Success and Error Notification Styles */
.success-notification,
.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10000;
    font-family: inherit;
    animation: slideInRight 0.3s ease-out;
    max-width: 400px;
}

.success-notification {
    background: #4CAF50;
    color: white;
}

.error-notification {
    background: var(--primary-color);
    color: white;
}

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

.success-notification:hover,
.error-notification:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}
