/* SBL Coaching Services - Enhanced CSS with Animations & Micro-interactions */

/* CSS Variables */
:root {
    --primary-black: #000000;
    --accent-red: #FF3B30;
    --white: #FFFFFF;
    --grey: #B0B0B0;
    --light-grey: #F8F8F8;
    --dark-grey: #333333;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --animation-duration: 0.6s;
    --micro-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced Focus Management */
*:focus {
    outline: none;
}

.nav-link:focus-visible,
.btn:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--accent-red);
    outline-offset: 3px;
    border-radius: 4px;
}

.nav-link:focus:not(:focus-visible),
.btn:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
    outline: none;
    box-shadow: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    overflow-x: hidden;
}

/* Enhanced Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-red), #ff6b5a);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

/* Section Navigation Indicator */
.section-indicator {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: all 0.5s ease;
}

.section-indicator.visible {
    display: block;
    opacity: 1;
    animation: slideInRight 0.5s ease-out;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    margin: 0.75rem 0;
    cursor: pointer;
    transition: all 0.3s var(--micro-bounce);
    position: relative;
    border: 2px solid transparent;
}

.indicator-dot.active {
    background: var(--accent-red);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.6);
}

.indicator-dot:hover {
    background: rgba(255, 59, 48, 0.8);
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.7);
}

.indicator-dot::after {
    content: attr(data-section);
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.indicator-dot:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(-5px);
}

/* Enhanced Typography with Animation */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.large-text {
    font-size: 1.25rem;
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Enhanced Section Titles with Staggered Animation */
.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-black);
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--animation-duration) ease;
}

.section-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title.white-text {
    color: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--grey);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--animation-duration) ease 0.2s;
}

.section-subtitle.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-subtitle.white-text {
    color: var(--white);
}

/* Enhanced Button Styles with Advanced Micro-interactions */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s var(--micro-bounce);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

/* Shimmer Effect */
.btn::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.6s ease;
}

.btn:hover::before {
    left: 100%;
}

/* Ripple Effect */
.btn::after {
    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::after {
    width: 300px;
    height: 300px;
}

/* Enhanced Primary Button */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b5a 100%);
    color: var(--white);
    box-shadow: 0 1px 4px rgba(255, 59, 48, 0.2);
}

.btn-primary:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 2px 6px rgba(255, 59, 48, 0.3);
    background: linear-gradient(135deg, #e6342a 0%, #ff5a4a 100%);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
    transition: transform 0.1s ease;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-black);
    border-color: var(--white);
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary-black);
    border: 2px solid var(--primary-black);
}

.btn-outline:hover {
    background: var(--primary-black);
    color: var(--white);
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-white {
    background: var(--white);
    color: var(--primary-black);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.btn-white:hover {
    background: var(--light-grey);
    transform: translateY(-1px) scale(1.01);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.full-width {
    width: 100%;
}

/* Enhanced Navigation with Smooth Animations */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--accent-red);
    transform: translateY(0);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    color: var(--white);
    transition: var(--transition);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: all 0.4s var(--micro-bounce);
}

.nav-logo:hover img {
    transform: scale(1.1) rotate(2deg);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    outline: none;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), #ff6b5a);
    transition: all 0.4s var(--micro-bounce);
    transform: translateX(-50%);
}

.nav-link:hover {
    color: var(--accent-red);
    text-shadow: 0 0 8px rgba(255, 59, 48, 0.5);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b5a 100%);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s var(--micro-bounce);
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.25);
    outline: none;
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.35);
    background: linear-gradient(135deg, #e6342a 0%, #ff5a4a 100%);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: all 0.4s var(--micro-bounce);
}

/* Enhanced Hero Section with Advanced Animations */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-grey) 100%),
                url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover;
    background-blend-mode: overlay;
    z-index: 1;
    animation: parallaxFloat 20s ease-in-out infinite alternate;
}

@keyframes parallaxFloat {
    0% { transform: scale(1) translateY(0); }
    100% { transform: scale(1.05) translateY(-10px); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: heroEntrance 1.5s ease-out;
}

@keyframes heroEntrance {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-headline {
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: var(--white);
    animation: heroTitleSlide 1.5s ease-out;
}

@keyframes heroTitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    animation: slideInUp 1.5s ease-out 0.5s both;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    animation: buttonsFloat 1.5s ease-out 1s both;
}

@keyframes buttonsFloat {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons .btn {
    width: 250px;
    height: 60px;
    padding: 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    border: 2px solid;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-buttons .btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.3);
}

.hero-buttons .btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
    border-color: var(--accent-red);
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.15);
}

.hero-buttons .btn-primary:hover {
    background-color: #e6342a;
    border-color: #e6342a;
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.18);
}

.hero-buttons .btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-black);
    border-color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.12);
}

/* Enhanced Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.5rem;
    z-index: 3;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounceFloat 3s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
    color: var(--accent-red);
}

.scroll-indicator::before {
    content: 'Scroll Down';
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.scroll-indicator i {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--micro-bounce);
    backdrop-filter: blur(10px);
}

.scroll-indicator:hover i {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: scale(1.2);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.4);
}

@keyframes bounceFloat {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Placeholder Images */
.placeholder-image {
    background-color: var(--light-grey);
    border: 2px dashed var(--grey);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--grey);
    font-size: 1rem;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    min-height: 200px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.placeholder-image:hover {
    background-color: rgba(255, 59, 48, 0.05);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.placeholder-image.large {
    min-height: 400px;
}

.placeholder-image i {
    font-size: 2rem;
    transition: all 0.3s var(--micro-bounce);
}

.placeholder-image:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Enhanced About Preview Section with Staggered Animations */
.about-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.05) 0%, transparent 70%);
    animation: floatBackground 8s ease-in-out infinite alternate;
}

@keyframes floatBackground {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-preview-image {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.6s var(--micro-bounce);
    opacity: 0;
    transform: translateX(-50px);
}

.about-preview-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-preview-image:hover {
    transform: scale(1.02) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.about-preview-text {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease 0.3s;
}

.about-preview-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-preview-text h2 {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--accent-red) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 59, 48, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--accent-red);
    transition: all 0.4s var(--micro-bounce);
    opacity: 0;
    transform: translateY(20px);
}

.credential-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.credential-item:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 59, 48, 0.1);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.15);
}

.credential-item i {
    color: var(--accent-red);
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
    transition: all 0.3s var(--micro-bounce);
}

.credential-item:hover i {
    transform: scale(1.2) rotate(10deg);
}

/* Enhanced Services Preview with Card Animations */
.services-preview {
    padding: 5rem 0;
    background-color: var(--light-grey);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.5s var(--micro-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.4s var(--micro-bounce);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.25);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.4);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: var(--accent-red);
    transform: translateY(-2px);
}

.service-card p {
    color: var(--grey);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover p {
    color: var(--dark-grey);
}

.service-link {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s var(--micro-bounce);
    position: relative;
    display: inline-block;
}

.service-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-black);
    transform: translateX(5px);
}

.service-link:hover::after {
    transform: translateX(5px);
}

/* Enhanced Testimonials Preview */
.testimonials-preview {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-grey) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
    animation: backgroundFloat 30s linear infinite;
}

@keyframes backgroundFloat {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.testimonial-slide {
    display: none;
    text-align: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.testimonial-content:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--accent-red);
    transition: all 0.3s var(--micro-bounce);
}

.testimonial-content:hover .testimonial-image {
    transform: scale(1.05);
    border-color: #ff6b5a;
}

.testimonial-text {
    text-align: left;
}

.testimonial-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
}

.testimonial-text blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--accent-red);
    position: absolute;
    top: -20px;
    left: -30px;
    opacity: 0.3;
}

.testimonial-text cite {
    color: var(--grey);
    font-size: 1rem;
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.results {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.result-item {
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b5a 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s var(--micro-bounce);
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.3);
}

.result-item:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.4);
}

/* Enhanced Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    z-index: 2;
    position: relative;
}

.slider-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.4s var(--micro-bounce);
    position: relative;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.slider-btn.active {
    background-color: var(--accent-red);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 59, 48, 0.5);
}

.slider-btn.active::before {
    border-color: rgba(255, 255, 255, 0.5);
}

.slider-btn:hover:not(.active) {
    background-color: rgba(255, 59, 48, 0.7);
    transform: scale(1.2);
}

/* Enhanced CTA Banner with Advanced Effects */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b5a 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>') repeat;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: titlePulse 2s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Enhanced About Section */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-hero-image {
    width: 100%;
    height: 500px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.about-hero-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-hero-content {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease 0.3s;
}

.about-hero-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.story-section {
    margin-bottom: 5rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.story-section.animate {
    opacity: 1;
    transform: translateY(0);
}

.story-section h3 {
    margin-bottom: 2rem;
    position: relative;
}

.story-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), #ff6b5a);
    transform: translateX(-50%);
}

.story-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.story-section p.animate {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-section h3 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.why-choose-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-red), #ff6b5a);
    transform: translateX(-50%);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pillar {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.4s var(--micro-bounce);
    opacity: 0;
    transform: translateY(30px);
    background: rgba(255, 59, 48, 0.02);
    border: 1px solid rgba(255, 59, 48, 0.1);
}

.pillar.animate {
    opacity: 1;
    transform: translateY(0);
}

.pillar:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 59, 48, 0.05);
    box-shadow: 0 15px 35px rgba(255, 59, 48, 0.15);
}

.pillar i {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 1rem;
    transition: all 0.4s var(--micro-bounce);
}

.pillar:hover i {
    transform: scale(1.2) rotate(10deg);
}

.pillar h4 {
    margin-bottom: 1rem;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.pillar:hover h4 {
    color: var(--accent-red);
}

/* Enhanced Services Section with Pillars */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-grey) 0%, #f0f0f0 100%);
}

.services-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.service-pillar {
    background-color: var(--white) !important;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
    transition: all 0.4s var(--micro-bounce);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    opacity: 1 !important;
    transform: translateY(0) !important;
    display: flex !important;
    flex-direction: column;
    min-height: 550px;
}

.service-pillar.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.service-pillar:hover {
    transform: translateY(-4px) scale(1.01) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    border-color: var(--accent-red) !important;
}

.service-pillar.featured {
    border: 2px solid var(--accent-red) !important;
    box-shadow: 0 8px 30px rgba(255, 59, 48, 0.2) !important;
    transform: scale(1.05) !important;
};
}

.service-pillar.featured.animate {
    opacity: 1 !important;
    transform: scale(1.05) translateY(0) !important;
}

.service-pillar.featured:hover {
    box-shadow: 0 20px 50px rgba(255, 59, 48, 0.2) !important;
    transform: translateY(-8px) scale(1.07) !important;
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-red), #ff6b5a);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.35);
}

.service-pillar-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.service-pillar.featured .service-pillar-header {
    padding-top: 3rem;
}

.service-pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b5a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white) !important;
    font-size: 2rem;
    transition: all 0.3s var(--micro-bounce);
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.25);
}

.service-pillar:hover .service-pillar-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 6px 20px rgba(255, 59, 48, 0.4);
}

.service-pillar-header h3 {
    margin-bottom: 1rem;
    color: var(--primary-black) !important;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    line-height: 1.3;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.service-pillar:hover .service-pillar-header h3 {
    color: var(--accent-red) !important;
}

.service-pillar .price-tag {
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b5a 100%) !important;
    color: var(--white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 59, 48, 0.25);
    transition: all 0.3s var(--micro-bounce);
    border: none !important;
}

.service-pillar:hover .price-tag {
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(255, 59, 48, 0.35);
}

.service-pillar-features {
    padding: 0 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-pillar-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-pillar-features .feature-item:last-child {
    border-bottom: none;
}

.service-pillar:hover .service-pillar-features .feature-item {
    transform: translateX(5px);
}

.service-pillar-features .feature-item i {
    color: var(--accent-red) !important;
    font-size: 1rem;
    width: 16px;
    text-align: center;
    transition: all 0.3s var(--micro-bounce);
    margin-top: 2px;
    flex-shrink: 0;
}

.service-pillar:hover .service-pillar-features .feature-item i {
    transform: scale(1.2);
    color: #ff6b5a !important;
}

.service-pillar-features .feature-item span {
    font-size: 0.95rem;
    color: var(--dark-grey) !important;
    line-height: 1.4;
    flex: 1;
}

.service-pillar-description {
    padding: 1.5rem 2rem;
    flex-shrink: 0;
}

.service-pillar-description p {
    color: var(--grey) !important;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    margin: 0;
}

.service-pillar-cta {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.02), rgba(255, 107, 90, 0.02));
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: auto;
}

.service-pillar:hover .service-pillar-cta {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.05), rgba(255, 107, 90, 0.05));
}

.service-pillar-cta .cta-text {
    font-weight: 600;
    color: var(--accent-red) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.service-pillar:hover .service-pillar-cta .cta-text {
    color: #ff6b5a !important;
}

.service-pillar-cta i {
    color: var(--accent-red) !important;
    font-size: 1.2rem;
    transition: all 0.3s var(--micro-bounce);
}

.service-pillar:hover .service-pillar-cta i {
    transform: translateX(5px) scale(1.1);
    color: #ff6b5a !important;
}

/* Ensure consistent heights across all pillars */
@media (min-width: 769px) {
    .services-pillars {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-pillar {
        min-height: 600px;
    }
}

/* Mobile Responsive for Service Pillars */
@media (max-width: 768px) {
    .services-pillars {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-pillar {
        min-height: auto;
    }
    
    .service-pillar.featured {
        transform: none;
    }
    
    .service-pillar.featured.animate {
        transform: translateY(0);
    }
    
    .service-pillar.featured:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .service-pillar-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .service-pillar.featured .service-pillar-header {
        padding-top: 2.5rem;
    }
    
    .service-pillar-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-pillar-features {
        padding: 0 1.5rem;
    }
    
    .service-pillar-description {
        padding: 1rem 1.5rem;
    }
    
    .service-pillar-cta {
        padding: 1.5rem 1.5rem 2rem;
    }
    
    .service-pillar-header h3 {
        font-size: 1.2rem;
        min-height: auto;
    }
}

/* Enhanced Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 2rem;
    border-left: 4px solid var(--accent-red);
    transition: all 0.5s var(--micro-bounce);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.02), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-left-color: #ff6b5a;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--accent-red);
    transition: all 0.3s var(--micro-bounce);
}

.testimonial-card:hover .client-image {
    transform: scale(1.1);
    border-color: #ff6b5a;
}

.client-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-info h4 {
    color: var(--accent-red);
}

.client-info span {
    color: var(--grey);
    font-size: 0.9rem;
}

.testimonial-body blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
}

.testimonial-body blockquote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-red);
    position: absolute;
    top: -15px;
    left: -20px;
    opacity: 0.3;
}

.results-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
    min-width: 80px;
    transition: all 0.3s var(--micro-bounce);
}

.metric:hover {
    transform: scale(1.05);
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
    transition: all 0.3s ease;
}

.metric:hover .metric-value {
    color: #ff6b5a;
    transform: scale(1.1);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--grey);
    text-transform: uppercase;
}

/* Enhanced Contact Section */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-grey) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.02"><circle cx="20" cy="20" r="2"/></g></svg>') repeat;
    animation: backgroundMove 25s linear infinite;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Form Styles */
.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    color: var(--primary-black);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.contact-form.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-black);
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: var(--accent-red);
    transform: translateY(-2px);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--grey);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.4s var(--micro-bounce);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-red);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 59, 48, 0.15);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--accent-red);
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.9rem;
    color: var(--grey);
    text-align: center;
    margin-top: 1rem;
}

/* Enhanced Contact Info */
.contact-info {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.3s;
}

.contact-info.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: var(--white) !important;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--grey) !important;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: block !important;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s var(--micro-bounce);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none !important;
    color: var(--white) !important;
    background: transparent;
    display: flex !important;
}

.contact-method,
.contact-method:link,
.contact-method:visited,
.contact-method:hover,
.contact-method:active,
.contact-method:focus {
    color: var(--white) !important;
    text-decoration: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    transform: translateX(10px);
    border-color: var(--accent-red) !important;
}

.contact-method i {
    font-size: 1.5rem;
    color: var(--accent-red) !important;
    margin-top: 0.25rem;
    transition: all 0.3s var(--micro-bounce);
    flex-shrink: 0;
}

.contact-method:hover i {
    transform: scale(1.2) rotate(10deg);
}

.contact-method > div {
    color: var(--white) !important;
}

.contact-method h4 {
    margin: 0 0 0.5rem 0 !important;
    font-size: 1.1rem !important;
    color: var(--white) !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.contact-method .contact-link {
    color: var(--white) !important;
    font-weight: 500 !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

.contact-method:hover .contact-link {
    color: var(--accent-red) !important;
    text-decoration: none !important;
}

.contact-method span:last-child {
    color: var(--grey) !important;
    font-size: 0.9rem !important;
    display: block !important;
    text-decoration: none !important;
}

.contact-method * {
    color: inherit !important;
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Enhanced FAQ Preview */
.faq-preview h3 {
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: default;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-color: var(--accent-red);
}

.faq-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.faq-item:hover h4 {
    color: var(--accent-red);
}

.faq-item p {
    color: var(--grey);
    margin: 0;
    font-size: 0.9rem;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-black) 0%, #1a1a1a 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), #ff6b5a, var(--accent-red));
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 59, 48, 0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 50px;
    width: auto;
    transition: all 0.4s var(--micro-bounce);
    filter: brightness(1.1);
}

.footer-logo:hover img {
    transform: scale(1.05) rotate(2deg);
    filter: brightness(1.3);
}

.footer-brand p {
    margin-bottom: 2rem;
    color: var(--grey);
    line-height: 1.6;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--dark-grey) 0%, #2a2a2a 100%);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.5s var(--micro-bounce);
    font-size: 1.3rem;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--accent-red), #ff6b5a);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 35px rgba(255, 59, 48, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-red), #ff6b5a);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--grey);
    text-decoration: none;
    transition: all 0.3s var(--micro-bounce);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
}

.footer-column ul li a:hover {
    color: var(--accent-red);
    padding-left: 8px;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-grey);
    color: var(--grey);
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

/* Enhanced Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b5a 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--micro-bounce);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 59, 48, 0.25);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: backToTopFloat 3s ease-in-out infinite;
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 59, 48, 0.4);
    background: linear-gradient(135deg, #e6342a 0%, #ff5a4a 100%);
}

@keyframes backToTopFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

/* Enhanced Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    animation: modalSlideIn 0.4s var(--micro-bounce);
}

@keyframes modalSlideIn {
    0% {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-grey) 100%);
    color: var(--white);
    border-radius: 20px 20px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close {
    color: var(--white);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s var(--micro-bounce);
    line-height: 1;
    border: none;
    background: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: var(--accent-red);
    transform: scale(1.2) rotate(90deg);
    background: rgba(255, 59, 48, 0.1);
}

.modal-body {
    padding: 2rem;
    color: var(--primary-black);
}

.modal-body h4 {
    color: var(--primary-black);
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.1rem;
}

.modal-body p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Enhanced Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-grey) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.loading-screen.active {
    opacity: 1;
    visibility: visible;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--grey);
    border-top: 4px solid var(--accent-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto 0;
}

/* Enhanced Message Container */
.message-container {
    position: fixed;
    top: 100px;
    right: 2rem;
    z-index: 1500;
    max-width: 400px;
}

.form-message {
    margin-bottom: 1rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: slideInRight 0.5s var(--micro-bounce);
    backdrop-filter: blur(10px);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Enhanced Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--animation-duration) ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--animation-duration) ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--animation-duration) ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--animation-duration) var(--micro-bounce);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered Animation Delays */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--grey);
    border-radius: 50%;
    border-top-color: var(--accent-red);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-grey);
}

::-webkit-scrollbar-thumb {
    background: var(--grey);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-red);
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .section-indicator {
        display: none !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 280px;
        height: 60px;
        margin: 0.5rem 0;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-preview-image {
        order: -1;
        height: 300px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: all 0.5s var(--micro-bounce);
        backdrop-filter: blur(15px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .testimonial-text {
        text-align: center;
    }

    .results {
        justify-content: center;
    }

    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-hero-image {
        order: -1;
        height: 300px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        min-width: 200px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .message-container {
        right: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .scroll-indicator,
    .back-to-top,
    .cta-banner,
    .contact-section,
    .progress-bar,
    .section-indicator {
        display: none;
    }

    .hero {
        height: auto;
        padding: 2rem 0;
    }

    .hero-background {
        display: none;
    }

    .hero-content {
        color: var(--primary-black);
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4 {
        page-break-after: avoid;
    }

    .service-card,
    .testimonial-card {
        page-break-inside: avoid;
    }
}