/* Extra specificity for 'Need instant help?' heading in contact-hero-card */
.contact-hero-card h3, .contact-hero-card h3 * {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    text-shadow: none !important;
}
/* === iFix Contact Us: Force white for key headings and labels === */
.contact-form-panel h2, /* Send us your repair request */
.contact-form-sidebar h3, /* Why choose iFix? */
.contact-socials h4,      /* Follow Us */
.snapshot-card h3         /* Call Center, WhatsApp, Email, 5 Locations */
{
    color: #fff !important;
}

/* Force white for 'Need instant help?' heading in contact-hero-card */
.contact-hero-card h3 {
    color: #fff !important;
}
/* ============================================
   Interactive & Responsive Enhancements
   Making the UI highly interactive and engaging
   ============================================ */

/* ============================================
   1. SMOOTH ANIMATIONS & TRANSITIONS
   ============================================ */

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Apply animations to sections on scroll */
.section {
    animation: slideInUp 0.6s ease-out;
}

/* ============================================
   2. INTERACTIVE CARDS WITH 3D EFFECTS
   ============================================ */

.service-card,
.feature-card,
.price-card,
.sidebar-card {
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 77, 77, 0.3),
        0 0 30px rgba(255, 77, 77, 0.2);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 10px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover::after {
    opacity: 1;
    transform: translateY(5px);
}

/* ============================================
   3. INTERACTIVE BUTTONS WITH RIPPLE EFFECT
   ============================================ */

.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.02);
}

.btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Icon animation within buttons */
.btn i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.btn:hover i.fa-phone-alt {
    animation: none !important;
}

.btn:hover i.fa-arrow-right {
    transform: translateX(5px);
}

/* ============================================
   4. INTERACTIVE HERO SECTION
   ============================================ */

.hero-features li {
    opacity: 0;
    animation: slideInLeft 0.5s ease forwards;
}

.hero-features li:nth-child(1) { animation-delay: 0.1s; }
.hero-features li:nth-child(2) { animation-delay: 0.2s; }
.hero-features li:nth-child(3) { animation-delay: 0.3s; }
.hero-features li:nth-child(4) { animation-delay: 0.4s; }

.hero-features li i {
    transition: transform 0.3s ease;
}

.hero-features li:hover i {
    transform: scale(1.3) rotate(360deg);
}

.hero-image {
    animation: slideInRight 0.8s ease;
}

.hero-image img {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.hero-image:hover img {
    transform: scale(1.05) rotate(2deg);
}

/* ============================================
   5. INTERACTIVE GALLERY WITH ZOOM
   ============================================ */

.gallery-item {
    cursor: pointer;
    position: relative;
}

.gallery-item::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 3rem;
    color: var(--color-primary);
    z-index: 10;
    transition: transform 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ============================================
   6. ANIMATED STATS COUNTER
   ============================================ */

.stat {
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
}

.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }
.stat:nth-child(4) { animation-delay: 0.4s; }

.stat h3 {
    background: linear-gradient(90deg, #ffffff 0%, #ff4d4d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* ============================================
   7. INTERACTIVE FAQ ACCORDION
   ============================================ */

.faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item h3 {
    position: relative;
    padding-right: 40px;
}

.faq-item h3::after {
    position: absolute;
    right: var(--space-lg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-item.active h3::after {
    transform: rotate(180deg);
}

.faq-item p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 var(--space-lg);
}

.faq-item.active p {
    max-height: 500px;
    padding: 0 var(--space-lg) var(--space-lg);
    transition: max-height 0.5s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* ============================================
   8. INTERACTIVE MODEL TAGS
   ============================================ */

.model-tag {
    position: relative;
    overflow: hidden;
}

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

.model-tag:hover::before {
    left: 100%;
}

.model-tag:active {
    transform: translateY(-2px) scale(0.95);
}

/* ============================================
   9. INTERACTIVE PRICING CARDS
   ============================================ */

.price-card {
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(255, 77, 77, 0.1) 90deg,
        transparent 180deg
    );
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.price-card:hover {
    transform: translateY(-12px) scale(1.02);
}

/* ============================================
   10. INTERACTIVE STEP CARDS
   ============================================ */

.process-step,
.step-card {
    transition: all 0.3s ease;
}

.process-step:hover,
.step-card:hover {
    transform: scale(1.05);
}

.step-number {
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover .step-number {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

/* ============================================
   11. BREADCRUMB INTERACTIONS
   ============================================ */

.breadcrumb a {
    position: relative;
    padding-bottom: 2px;
}

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

.breadcrumb a:hover::after {
    width: 100%;
}

/* ============================================
   12. LOADING SKELETON STATES
   ============================================ */

.skeleton {
    background: linear-gradient(
        90deg,
        var(--color-bg-elevated) 0%,
        var(--color-bg-surface) 50%,
        var(--color-bg-elevated) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* ============================================
   13. PARALLAX SCROLL EFFECTS
   ============================================ */

.hero-service {
    position: relative;
    overflow: hidden;
}

.hero-service::before {
    animation: floatBackground 20s ease-in-out infinite;
}

/* Keep the iPhone service landing-page heroes truly pitch black. */
body.page-iphone-screen-replacement-bangalore .hero-service,
body.page-iphone-battery-replacement-bangalore .hero-service,
body.page-iphone-speaker-replacement-bangalore .hero-service,
body.page-iphone-back-glass-replacement-bangalore .hero-service,
body.page-iphone-liquid-damage-repair-bangalore .hero-service,
body.page-iphone-logic-board-replacement-in-bangalore .hero-service {
    background: #000 !important;
}

body.page-iphone-screen-replacement-bangalore .hero-service::before,
body.page-iphone-battery-replacement-bangalore .hero-service::before,
body.page-iphone-speaker-replacement-bangalore .hero-service::before,
body.page-iphone-back-glass-replacement-bangalore .hero-service::before,
body.page-iphone-liquid-damage-repair-bangalore .hero-service::before,
body.page-iphone-logic-board-replacement-in-bangalore .hero-service::before {
    content: none !important;
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* ============================================
   14. TOOLTIP INTERACTIONS
   ============================================ */

[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    padding: var(--space-sm) var(--space-md);
    background: var(--color-bg-overlay);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 100;
}

[data-tooltip]:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

/* ============================================
   15. SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   16. MOBILE TOUCH INTERACTIONS
   ============================================ */

@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .service-card:hover,
    .btn:hover,
    .gallery-item:hover {
        transform: none;
    }
    
    /* Add tap feedback */
    .service-card:active,
    .btn:active {
        transform: scale(0.95);
    }
}

/* ============================================
   17. RESPONSIVE GRID ADJUSTMENTS
   ============================================ */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-content-split {
        animation: slideInUp 0.6s ease;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   18. SVG ICON STYLES
   ============================================ */

.icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    transition: all 0.3s ease;
}

.icon-svg-lg {
    width: 48px;
    height: 48px;
}

.icon-svg-xl {
    width: 64px;
    height: 64px;
}

.service-icon .icon-svg {
    width: 40px;
    height: 40px;
}

/* ============================================
   19. INTERACTIVE CONTACT FORMS
   ============================================ */

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 77, 77, 0.1);
    transform: none;
}

/* ============================================
   20. CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--color-bg-surface);
    border-radius: 6px;
    border: 2px solid var(--color-bg-base);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* ============================================
   21. SELECTION STYLING
   ============================================ */

::selection {
    background: var(--color-primary);
    color: var(--color-text-primary);
}

::-moz-selection {
    background: var(--color-primary);
    color: var(--color-text-primary);
}

/* ============================================
   22. FLOATING ACTION BUTTONS
   ============================================ */

.fab-container {
    position: fixed;
    bottom: var(--space-2xl);
    right: var(--space-2xl);
    z-index: 1000;
}

.fab-container .fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-text-primary);
    border: none;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.fab-container .fab:hover {
    transform: none !important;
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .fab-container {
        bottom: var(--space-lg);
        right: var(--space-lg);
    }
    
    .fab-container .fab {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* ============================================
   23. THANK YOU PAGE STYLES
   ============================================ */

.thank-you-hero {
    min-height: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) 0;
    padding-bottom: var(--space-6xl);
    position: relative;
    z-index: 20;
    overflow: visible;
}

.thank-you-container {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 25;
    width: 100%;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary), #cc3d3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-2xl);
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(255, 77, 77, 0.4);
}

.success-icon .icon-svg-xl,
.success-icon i {
    font-size: 50px;
    color: var(--color-text-primary);
    width: 50px;
    height: 50px;
}

.next-steps-card {
    background: var(--color-bg-elevated);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    max-width: 600px;
    margin: var(--space-2xl) auto;
    margin-bottom: var(--space-3xl);
    text-align: left;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.next-steps-card h3 {
    text-align: center;
    margin-bottom: var(--space-xl);
    color: var(--color-text-primary);
}

.next-steps-card .process-grid {
    display: grid;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.next-steps-card .process-step {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.next-steps-card .step-number {
    width: 36px;
    height: 36px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--text-sm);
    flex-shrink: 0;
    color: var(--color-text-primary);
}

.next-steps-card .process-step p {
    margin: 0;
    padding-top: 6px;
    line-height: 1.6;
}

.thank-you-hero .hero-cta {
    margin-top: var(--space-2xl);
    margin-bottom: 0;    /* Center the CTA buttons horizontally */
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;}

/* Prevent overlap with stats section */
.thank-you-hero + .stats {
    margin-top: 4rem !important;
    position: relative;
    z-index: 5;
    clear: both;
}

/* Force stats banner to be static and not overlap or be overlapped */
.footer .stats {
    /* Ensure the stats banner participates in normal document flow */
    position: static !important;
    clear: both !important;
    z-index: 1 !important;

    /* Spacing for footer placement */
    margin-top: 0 !important;
    margin-bottom: var(--space-3xl) !important;
    padding-top: var(--space-3xl) !important;
    padding-bottom: var(--space-3xl) !important;

    /* Full width behaviour inside container */
    width: auto !important;
    overflow: visible !important;

    /* Disable all transforms, parallax, and 3D effects */
    transform: none !important;
    transform-style: flat !important;
    perspective: none !important;
    will-change: auto !important;
    backface-visibility: visible !important;
    
    /* Ensure visibility */
    opacity: 1 !important;
    visibility: visible !important;
}

/* Disable only 3D transforms and parallax on stats children, keep fade-in transitions */
.footer .stats *,
.footer .stats-grid,
.footer .stats-grid *,
.footer .stat,
.footer .stat * {
    transform: none !important;
    transform-style: flat !important;
    perspective: none !important;
    will-change: auto !important;
}

/* Prevent any scroll-based scale/transform on stats */
.footer .stats,
.footer .stats * {
    pointer-events: auto !important;
}

@media (prefers-reduced-motion: no-preference) {
    .footer .stats,
    .footer .stats *,
    .footer .stats-grid,
    .footer .stat {
        animation: none !important;
    }
}

/* Small viewport tweaks */
@media (max-width: 768px) {
    .stats {
        margin-top: var(--space-4xl) !important;
        padding-top: var(--space-2xl) !important;
        padding-bottom: var(--space-2xl) !important;
        margin-left: var(--space-md);
        margin-right: var(--space-md);
    }
}

/* Fix: ensure stats text is visible when moved into footer
   Some stat elements previously used gradient text-fill with
   animations; for footer we force a solid readable color and
   ensure opacity is 1 so the numbers are always visible. */
.footer .stat {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
}

.footer .stat h3 {
    /* Remove background-clip trick for footer - use solid color */
    background: none !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    -webkit-text-fill-color: unset !important;
    color: var(--color-text-primary) !important;
}

.footer .stat p {
    color: rgba(255,255,255,0.92) !important;
}

/* ============================================
   24. UTILITY CLASSES FOR COMMON PATTERNS
   ============================================ */

.content-centered {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image-container {
    text-align: center;
}

.hero-image-container img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.contact-map {
    border: 0;
    border-radius: var(--radius-lg);
    width: 100%;
    height: 450px;
}

.store-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

@media (max-width: 768px) {
    .hero-image-container img {
        max-width: 100%;
    }
    
    .store-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 350px;
    }
}

/* ============================================
   25. ABOUT US PAGE INTERACTIVE ENHANCEMENTS
   ============================================ */

/* Animated Background */
.animated-bg-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 77, 77, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(15, 52, 96, 0.2) 0%, transparent 50%);
    animation: floatBg 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Typewriter Effect */
.typewriter-about {
    overflow: hidden;
    border-right: 3px solid var(--color-primary);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
    display: inline-block;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--color-primary); }
}

/* Glow Text */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 77, 77, 0.5),
                 0 0 20px rgba(255, 77, 77, 0.3),
                 0 0 30px rgba(255, 77, 77, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 10px rgba(255, 77, 77, 0.5), 0 0 20px rgba(255, 77, 77, 0.3); }
    50% { text-shadow: 0 0 20px rgba(255, 77, 77, 0.8), 0 0 30px rgba(255, 77, 77, 0.5); }
}

.fade-in-about {
    animation: fadeInUp 1s ease 0.5s both;
}

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

/* Hero Mini Stats */
.hero-stats-mini {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-mini {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 120px;
    transition: all 0.3s ease;
}

.stat-mini:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(255, 77, 77, 0.2);
}

.stat-mini .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-mini .stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Interactive Stats Section */
.stats-section-interactive {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--color-bg-base) 0%, var(--color-bg-elevated) 100%);
}

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

.stat-card-interactive {
    background: var(--color-bg-surface);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.stat-card-interactive::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #cc3d3d);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.stat-card-interactive:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.stat-icon svg {
    width: 48px;
    height: 48px;
}

.stat-number-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0.5rem 0;
    background: linear-gradient(135deg, var(--color-primary), #ff8080);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

.stat-progress {
    height: 4px;
    background: rgba(255, 77, 77, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), #ff8080);
    width: 0;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* About Content Section */
.about-content-section {
    padding: 5rem 0;
}

.about-grid-interactive {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-text-primary);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-heading-fancy {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-text-primary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--color-bg-surface);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    margin: 2rem 0;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.mission-box:hover {
    transform: translateX(10px);
}

.mission-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.mission-icon svg {
    width: 32px;
    height: 32px;
}

.mission-box h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-bg-elevated);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
}

.value-item:hover {
    background: var(--color-bg-surface);
    transform: translateX(5px);
}

.value-item i {
    color: var(--color-primary);
    font-size: 1.25rem;
}

.value-item span {
    font-weight: 500;
    color: var(--color-text-primary);
}

/* About Image Container */
.about-image-container {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-zoom {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.image-frame:hover .about-image-zoom {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.overlay-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-primary);
    font-weight: 600;
}

.overlay-badge i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* Scroll Reveal */
[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-scroll-reveal="right"] {
    transform: translateX(50px);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

/* Process Timeline */
.process-section-enhanced {
    padding: 5rem 0;
}

.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-step-enhanced {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step-enhanced.active {
    opacity: 1;
    transform: translateX(0);
}

.process-step-enhanced:nth-child(even) {
    transform: translateX(50px);
}

.step-connector {
    position: absolute;
    left: 28px;
    top: 60px;
    width: 2px;
    height: calc(100% + 20px);
    background: linear-gradient(180deg, var(--color-primary), transparent);
}

.process-step-enhanced:last-child .step-connector {
    display: none;
}

.step-icon-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), #cc3d3d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step-enhanced:hover .step-icon-circle {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 6px 25px rgba(255, 77, 77, 0.6);
}

.step-content {
    background: var(--color-bg-surface);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.step-content h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.step-content p {
    margin: 0;
    color: var(--color-text-secondary);
}

/* Services Showcase */
.services-showcase {
    padding: 5rem 0;
    background: var(--color-bg-elevated);
}

.services-grid-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card-fancy {
    background: var(--color-bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.service-card-fancy::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.service-card-inner {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

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

.service-card-fancy:hover .service-icon-large {
    transform: rotateY(360deg) scale(1.1);
}

.service-card-fancy h4 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.service-card-fancy > .service-card-inner > p {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
}

.service-features li i {
    color: var(--color-primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Locations Interactive */
.locations-section-interactive {
    padding: 5rem 0;
}

/* View Toggle */
.view-toggle-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.view-toggle-btn {
    padding: 0.75rem 1.5rem;
    background: var(--color-bg-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-toggle-btn:hover {
    background: var(--color-bg-elevated);
    transform: translateY(-2px);
}

.view-toggle-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-text-primary);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.view-toggle-btn i {
    font-size: 1rem;
}

.locations-grid-interactive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.location-card-fancy {
    background: var(--color-bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.location-card-fancy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.location-card-fancy:hover::before {
    opacity: 1;
}

.location-card-header {
    background: linear-gradient(135deg, var(--color-primary), #cc3d3d);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.location-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    font-size: 1.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pulse-animation {
    animation: pulse-icon 3s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(255, 255, 255, 0.4);
    }
}

.location-card-header h4 {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 1.375rem;
    flex: 1;
}

.location-status {
    margin-left: auto;
}

.status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.open {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0);
    }
}

.status-badge.closed {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.location-card-body {
    padding: 1.75rem;
}

.location-address {
    color: var(--color-text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.location-address i {
    color: var(--color-primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.location-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    padding: 0.625rem;
    background: var(--color-bg-elevated);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: var(--color-bg-base);
    transform: translateX(3px);
}

.info-item i {
    color: var(--color-primary);
    font-size: 1rem;
}

.location-features {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--color-text-secondary);
    padding: 0.5rem 0.875rem;
    background: var(--color-bg-elevated);
    border-radius: 2rem;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    cursor: default;
}

.feature-badge:hover {
    background: var(--color-primary);
    color: var(--color-text-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.feature-badge i {
    color: var(--color-primary);
    font-size: 0.875rem;
}

.feature-badge:hover i {
    color: var(--color-text-primary);
}

.location-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.625rem;
}

.action-btn {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 0.875rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

.action-btn i {
    font-size: 0.875rem;
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Map View */
.locations-map-view {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.map-info-banner {
    background: linear-gradient(135deg, var(--color-primary), #cc3d3d);
    color: var(--color-text-primary);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.map-info-banner i {
    font-size: 1.25rem;
}

.map-legend {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--color-bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.map-legend h4 {
    margin: 0 0 1rem 0;
    color: var(--color-text-primary);
    font-size: 1.125rem;
}

.legend-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: var(--color-bg-elevated);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.legend-item:hover {
    background: var(--color-bg-base);
    border-color: var(--color-primary);
    color: var(--color-text-primary);
    transform: translateX(5px);
}

.legend-item i {
    color: var(--color-primary);
    font-size: 1.125rem;
}

/* Enhanced Button Styles */
.btn-sm {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i.fa-arrow-right {
    transform: translateX(3px);
}

.btn:hover i.fa-phone-alt {
    animation: phone-ring 0.5s ease;
}

@keyframes phone-ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.btn:hover i.fa-directions {
    animation: bounce-direction 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .locations-grid-interactive {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .location-info-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .locations-section-interactive {
        padding: 3rem 0;
    }
    
    .view-toggle-container {
        margin: 1.5rem 0;
    }
    
    .view-toggle-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .locations-grid-interactive {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card-header {
        padding: 1.25rem;
    }
    
    .location-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
    
    .location-card-header h4 {
        font-size: 1.125rem;
    }
    
    .location-card-body {
        padding: 1.5rem;
    }
    
    .location-info-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .location-actions {
        grid-template-columns: 1fr;
    }
    
    .action-btn {
        width: 100%;
    }
    
    .legend-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .view-toggle-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .view-toggle-btn {
        width: 100%;
        justify-content: center;
    }
    
    .location-features {
        gap: 0.5rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .status-badge {
        padding: 0.25rem 0.625rem;
        font-size: 0.6875rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid-interactive {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-step-enhanced {
        grid-template-columns: auto 1fr;
    }
}

@media (max-width: 768px) {
    .hero-stats-mini {
        gap: 1rem;
    }
    
    .stat-mini {
        min-width: 100px;
        padding: 0.75rem 1rem;
    }
    
    .stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card-interactive {
        padding: 1.5rem 1rem;
    }
    
    .stat-number-large {
        font-size: 2rem;
    }
    
    .section-heading-fancy {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        padding: 1rem 0;
    }
    
    .process-step-enhanced {
        gap: 1rem;
    }
    
    .step-icon-circle {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .step-connector {
        left: 22px;
    }
    
    .services-grid-interactive {
        grid-template-columns: 1fr;
    }
    
    .locations-grid-interactive {
        grid-template-columns: 1fr;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .typewriter-about {
        animation: none;
        border-right: none;
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .stats-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .hero-stats-mini {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stat-mini {
        width: 100%;
    }
}

/* ============================================
   LOCATION TILES - Interactive & Responsive
   ============================================ */

/* Tile Container */
.location-tile {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(30, 30, 50, 0.95));
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 77, 77, 0.1);
}

.location-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 45px rgba(255, 77, 77, 0.25);
    border-color: rgba(255, 77, 77, 0.3);
}

/* Tile Image */
.tile-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #2a2a4a);
}

.tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.location-tile:hover .tile-image img {
    transform: scale(1.1);
}

/* Tile Overlay */
.tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
    z-index: 2;
}

/* Status Badge */
.pulse-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(76, 175, 80, 0);
    }
}

/* Rating Badge */
.rating-badge {
    background: rgba(255, 193, 7, 0.95);
    color: #1a1a2e;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.rating-badge i {
    color: #1a1a2e;
}

/* Tile Content */
.tile-content {
    padding: 20px;
}

/* Tile Header */
.tile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.tile-header h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tile-header h4 i {
    color: #ff4d4d;
}

/* Expand Button */
.expand-btn {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.3);
    color: #ff4d4d;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-btn:hover {
    background: rgba(255, 77, 77, 0.2);
    transform: rotate(180deg);
}

.location-tile.expanded .expand-btn {
    transform: rotate(180deg);
}

.location-tile.expanded .expand-btn:hover {
    transform: rotate(0deg);
}

/* Tile Summary */
.tile-summary {
    margin-bottom: 16px;
}

.tile-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0 0 8px 0;
}

.tile-meta {
    display: flex;
    gap: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.tile-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.tile-meta i {
    color: #ff4d4d;
}

/* Quick Action Buttons */
.tile-quick-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-action-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.quick-action-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.quick-action-btn:hover::before {
    width: 100%;
    height: 100%;
}

.call-btn {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: white;
}

.directions-btn {
    background: linear-gradient(135deg, #2196f3, #1565c0);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.info-btn {
    background: linear-gradient(135deg, #ff9800, #e65100);
    color: white;
}

.quick-action-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Tile Details (Expandable) */
.tile-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0;
}

.location-tile.expanded .tile-details {
    max-height: 600px;
    padding: 20px 0 0 0;
}

.detail-section {
    margin-bottom: 20px;
}

.detail-section h5 {
    color: #ff4d4d;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
}

.amenity {
    background: rgba(255, 77, 77, 0.1);
    border: 1px solid rgba(255, 77, 77, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.amenity i {
    color: #ff4d4d;
}

.amenity:hover {
    background: rgba(255, 77, 77, 0.2);
    border-color: rgba(255, 77, 77, 0.4);
    transform: translateX(4px);
}

/* Detail Actions */
.detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 16px;
}

.detail-actions .btn-block {
    width: 100%;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.detail-actions .btn-primary {
    background: linear-gradient(135deg, #ff4d4d, #e60000);
    color: white;
    border: none;
}

.detail-actions .btn-primary:hover {
    background: linear-gradient(135deg, #e60000, #cc0000);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
}

.detail-actions .btn-outline {
    background: transparent;
    color: #ff4d4d;
    border: 2px solid #ff4d4d;
}

.detail-actions .btn-outline:hover {
    background: rgba(255, 77, 77, 0.1);
    transform: translateY(-2px);
}

/* List View Styles */
.locations-list-view {
    display: none;
}

.location-list-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.location-list-item {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(30, 30, 50, 0.95));
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 20px;
    border: 1px solid rgba(255, 77, 77, 0.1);
    transition: all 0.3s ease;
}

.location-list-item:hover {
    border-color: rgba(255, 77, 77, 0.3);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(255, 77, 77, 0.2);
}

.list-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff4d4d, #e60000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.list-item-content {
    flex: 1;
}

.list-item-content h4 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 8px 0;
}

.list-item-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 12px 0;
}

.list-item-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.list-item-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.list-item-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.list-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.list-action-btn:hover {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .tile-image {
        height: 160px;
    }
    
    .tile-header h4 {
        font-size: 18px;
    }
    
    .quick-action-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .location-list-item {
        flex-direction: column;
    }
    
    .list-item-actions {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .tile-quick-actions {
        gap: 8px;
    }
    
    .quick-action-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .tile-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* Remove underlines from location tiles section */
.locations-section a,
.location-tile a,
.tile-address,
.tile-meta,
.detail-section p,
.amenities-grid,
.detail-actions a {
    text-decoration: none !important;
}

/* Ensure tile address has proper spacing with icon */
.tile-address i {
    margin-right: 8px;
    color: #ff4d4d;
}

/* Locations tiles view container - grid layout */
.locations-tiles-view {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.locations-tiles-view.active {
    display: grid;
}

@media (max-width: 768px) {
    .locations-tiles-view {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .locations-tiles-view {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Force remove ALL underlines from location tiles - comprehensive */
.location-tile *,
.location-tile a,
.location-tile h4,
.location-tile h4 a,
.tile-header *,
.tile-summary *,
.tile-address *,
.tile-meta *,
.tile-details *,
.detail-section *,
.detail-section a,
.detail-section p,
.detail-section h5,
.amenities-grid *,
.detail-actions *,
.locations-section *,
.locations-section a {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Ensure links in tiles don't show underline on hover either */
.location-tile a:hover,
.location-tile a:focus,
.location-tile a:active,
.detail-section a:hover,
.detail-section a:focus {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Harden underline removal for all locations section variants */
.locations-section-interactive *,
.locations-section-interactive a,
.locations-tiles-view *,
.locations-tiles-view a,
.locations-list-view *,
.locations-list-view a,
.location-list-item *,
.location-list-item a,
.locations-map-view *,
.locations-map-view a,
.legend-items *,
.legend-item {
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* FINAL OVERRIDE - Remove underlines with maximum specificity */
section.locations-section-interactive a[href],
section.locations-section-interactive a[href] *,
.locations-tiles-view a[href],
.locations-tiles-view a[href] *,
div.location-tile a,
div.location-tile span,
div.location-tile p,
div.location-tile h4,
p.tile-address,
div.legend-items a {
    text-decoration: none !important;
    border-bottom: 0 !important;
    text-underline-offset: 0 !important;
}

/* Remove underlines from home page location cards */
.service-card,
.service-card *,
.service-card h4,
.service-card p,
.service-card:hover,
.service-card:hover *,
.service-card:hover h4,
.service-card:hover p {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* ========================================
   STORE LOCATION PAGES - INTERACTIVE ABOUT SECTION
   ======================================== */

/* Store About Section Container */
.store-about-section {
    position: relative;
    overflow: hidden;
}

.store-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Section Title Enhancement */
.store-about-section .section-title {
    margin-bottom: 4rem;
    text-align: center;
}

.store-about-section .section-subtitle {
    color: #999;
    font-size: 1.125rem;
    font-weight: 400;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

/* About Cards Grid */
.store-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4d4d, #e60000);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.15), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover::after {
    width: 400px;
    height: 400px;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 77, 77, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 77, 77, 0.2);
}

/* About Card Icon */
.about-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 77, 77, 0.1), rgba(230, 0, 0, 0.1));
    border-radius: 50%;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4d4d, #e60000);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.about-card:hover .about-card-icon::before {
    opacity: 0.4;
}

.about-card-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #ff4d4d, #e60000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card:hover .about-card-icon i {
    transform: scale(1.15);
}

/* About Card Content */
.about-card h3 {
    color: #fff;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.about-card:hover h3 {
    background: linear-gradient(135deg, #ff4d4d, #e60000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-card p {
    color: #aaa;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.about-card:hover p {
    color: #ddd;
}

/* Scroll Reveal Animation */
.about-card[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--delay, 0s);
}

.about-card[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Store Stats Mini Section */
.store-stats-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-stats-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 77, 77, 0.05), transparent 70%);
    pointer-events: none;
}

.store-stats-mini[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

.stat-mini-item {
    text-align: center;
    padding: 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-mini-item:hover {
    transform: scale(1.05);
}

.stat-mini-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stat-mini-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff4d4d, #e60000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.stat-mini-item:hover .stat-mini-number {
    transform: scale(1.1);
}

.stat-mini-label {
    color: #999;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.stat-mini-item:hover .stat-mini-label {
    color: #ccc;
}

/* Section Title Scroll Reveal */
.section-title[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-title[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN - STORE ABOUT SECTION
   ======================================== */

@media (max-width: 768px) {
    .store-about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .about-card {
        padding: 2rem 1.5rem;
    }
    
    .about-card-icon {
        width: 70px;
        height: 70px;
    }
    
    .about-card-icon i {
        font-size: 2rem;
    }
    
    .about-card h3 {
        font-size: 1.25rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
    }
    
    .store-stats-mini {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .stat-mini-item:not(:last-child)::after {
        width: 60%;
        height: 1px;
        left: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(-50%);
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    }
    
    .stat-mini-number {
        font-size: 2.5rem;
    }
    
    .stat-mini-label {
        font-size: 0.875rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .store-about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1025px) {
    .store-about-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Animation for cards on mobile - stagger effect */
@media (max-width: 768px) {
    .about-card:nth-child(1) { --delay: 0.1s; }
    .about-card:nth-child(2) { --delay: 0.2s; }
    .about-card:nth-child(3) { --delay: 0.3s; }
    .about-card:nth-child(4) { --delay: 0.4s; }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    .about-card,
    .about-card-icon,
    .about-card-icon i,
    .stat-mini-item,
    .stat-mini-number,
    .store-stats-mini,
    .section-title[data-scroll-reveal],
    .about-card[data-scroll-reveal] {
        transition: none !important;
        animation: none !important;
    }
    
    .about-card[data-scroll-reveal],
    .section-title[data-scroll-reveal],
    .store-stats-mini[data-scroll-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .price-card:hover,
    .sidebar-card:hover,
    .about-card:hover,
    .stat-mini-item:hover,
    .section-title[data-scroll-reveal]:hover {
        transform: none !important;
    }

    .service-card:hover::after {
        opacity: 0;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .section,
    .hero-features li,
    .hero-image,
    .gallery-item,
    .faq-item,
    .service-card,
    .feature-card,
    .price-card,
    .sidebar-card {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }

    .hero-features li {
        opacity: 1 !important;
    }
}
