/* Additional Custom Styles for The Local SEO */

/* Custom CSS Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --text-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Enhanced animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translateY(0);
    }
    40%, 43% {
        transform: translateY(-20px);
    }
    70% {
        transform: translateY(-10px);
    }
    90% {
        transform: translateY(-4px);
    }
}



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

/* Enhanced gradient effects */
.enhanced-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}


/* Modern Navigation Pill */
.nav-pill {
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

.nav-pill:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}

.nav-link {
    position: relative;
    padding: 8px 10px;
    border-radius: 16px;
    transition: all 0.2s ease;
    font-size: 0.875rem;
}

.nav-link:hover {
    background: rgba(59, 130, 246, 0.08);
    color: #2563eb;
}



/* Modern transparent navbar enhancements */
nav {
}

/* Logo styling for transparent nav */

/* Contact button enhancements */


.contact-btn:hover {
    box-shadow: 
        0 6px 20px rgba(59, 130, 246, 0.35),
        0 2px 6px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Mobile menu button styling */
.mobile-menu-btn {
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: scale(1.05);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for modern navbar */
@media (max-width: 1279px) {
    .nav-pill {
        display: none; /* Hide pill on smaller screens, use hamburger menu */
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (min-width: 1280px) {
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .nav-pill .flex {
        gap: 1rem;
    }
}

/* Improved glassmorphism effect */
@supports (backdrop-filter: blur(20px)) {
    .nav-pill {
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    
    .mobile-menu-btn {
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}







/* Interactive hover effects for cards */
.card-magic {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card-magic::before {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(102, 126, 234, 0.1) 50%, 
        transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.card-magic:hover::before {
    animation: shimmer 0.6s ease-in-out;
    opacity: 1;
}

/* Glowing text effects */
.glow-text {
    text-shadow: 
        0 0 5px rgba(102, 126, 234, 0.5),
        0 0 10px rgba(102, 126, 234, 0.3),
        0 0 15px rgba(102, 126, 234, 0.2);
}



.gradient-border {
    background: var(--primary-gradient);
    padding: 2px;
    border-radius: 1rem;
}

.gradient-border-content {
    background: white;
    border-radius: calc(1rem - 2px);
    padding: 1.5rem;
}

/* Advanced button styles */
.btn-primary-enhanced {
    background: var(--primary-gradient);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

/* Enhanced card styles */
.card-enhanced {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
}

/* Icon hover effects */
.icon-hover {
    transition: all 0.3s ease;
}

.icon-hover:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Testimonial card special effects */
.testimonial-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    color: #667eea;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced form styles */
.form-enhanced input,
.form-enhanced select,
.form-enhanced textarea {
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-enhanced input:focus,
.form-enhanced select:focus,
.form-enhanced textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform-origin: left;
    z-index: 9999;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .card-enhanced {
        padding: 1.5rem;
    }
    
    .btn-primary-enhanced {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .testimonial-card::after {
        font-size: 3rem;
        top: -5px;
        right: 15px;
    }
}

/* Dark mode support (for future enhancement) */
@media (prefers-color-scheme: dark) {
    .card-enhanced {
        background: #1f2937;
        color: white;
    }
    
    .form-enhanced input,
    .form-enhanced select,
    .form-enhanced textarea {
        background: #374151;
        border-color: #4b5563;
        color: white;
    }
}

/* Accessibility improvements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for better accessibility */
.focus-visible:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Enhanced hover states */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #667eea;
}

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .card-enhanced,
    .testimonial-card {
        box-shadow: none;
        border: 1px solid #e5e7eb;
    }
}


/* SEO Dashboard Section */
.seo-dashboard-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 800px;
}