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

html, body {
    background-color: #111;
    min-height: 100vh;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    height: 140px;
    z-index: 1000;
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: inline-block;
    text-decoration: none;
}

.nav-brand img {
    height: 120px;
    width: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-brand img:hover {
    transform: scale(1.1);
}

.nav-brand h2 {
    color: #0041C2;
    font-weight: 600;
    margin-left: 10px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0041C2, #00d4ff);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 80%;
}

.nav-links a:hover,
.nav-links a.active {
    color: #00d4ff;
    background: rgba(0, 65, 194, 0.1);
    transform: translateY(-2px);
}

.nav-mobile {
    display: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

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

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 65, 194, 0.1), rgba(0, 65, 194, 0.3));
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 5%;
    animation-delay: -7s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.7;
    }
}

@keyframes floatCalm {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-15px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(-5px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(5px) translateX(-10px) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
        opacity: 0.4;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #0041C2 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 65, 194, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 10px rgba(0, 65, 194, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 20px rgba(0, 65, 194, 0.6));
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #0041C2 0%, #0056E0 50%, #00d4ff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 65, 194, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0056E0 50%, #0041C2 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 65, 194, 0.4);
}

.btn-hero {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 65, 194, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    text-align: center;
    z-index: 3;
    animation: fadeInUp 1s ease-out 1.5s forwards;
    opacity: 0;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.scroll-arrow i {
    color: #00d4ff;
    font-size: 1.2rem;
    animation: arrowPulse 2s infinite;
}

.scroll-text {
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

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

@keyframes arrowPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.how-it-works {
    background: #111;
}

.how-it-works h2,
.why-choose h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

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

.step {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.1), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step:hover::before {
    opacity: 1;
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 65, 194, 0.2);
    border-color: rgba(0, 65, 194, 0.3);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #0041C2, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(0, 65, 194, 0.4);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.step p {
    color: #ccc;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Why Choose Us */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 65, 194, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.1), rgba(0, 212, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 65, 194, 0.3);
    border-color: rgba(0, 65, 194, 0.5);
}

.feature-card i {
    font-size: 3.5rem;
    color: #0041C2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.feature-card:hover i {
    color: #00d4ff;
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.feature-card p {
    color: #ccc;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Stats */
.stats {
    background: #0041C2;
}

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

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Page Styles */
.services-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding-top: 140px;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.services-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #0041C2 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 65, 194, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
}

.services-section {
    background: #0c0c0c;
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card-container {
    perspective: 1000px;
    height: 440px;
    position: relative;
    cursor: pointer;
}

.service-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    transform-style: preserve-3d;
    transform-origin: center center;
}

.service-card-container:hover .service-card {
    transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    padding: 2rem;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border: 1px solid rgba(0, 65, 194, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.service-card-front {
    transform: rotateY(0deg);
    z-index: 2;
}

.service-card-back {
    transform: rotateY(180deg);
    z-index: 1;
}

/* Ember spark hover effect for service cards */
.service-card-container::before,
.service-card-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.9) 0%, rgba(0, 170, 255, 0.7) 50%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.service-card-container::before {
    background: radial-gradient(circle, rgba(0, 65, 194, 0.15) 0%, transparent 70%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.4s ease;
}

.service-card-container:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
    filter: blur(8px);
}

.service-card-container:hover::after {
    box-shadow:
        -60px -80px 0 0 rgba(0, 85, 255, 0.6),
        40px -70px 0 0 rgba(0, 170, 255, 0.5),
        -80px 50px 0 0 rgba(0, 85, 255, 0.7),
        70px 45px 0 0 rgba(0, 170, 255, 0.6),
        -30px -100px 0 0 rgba(0, 85, 255, 0.4),
        90px -30px 0 0 rgba(0, 170, 255, 0.7),
        -100px -40px 0 0 rgba(0, 85, 255, 0.5),
        60px -90px 0 0 rgba(0, 170, 255, 0.4),
        -50px 80px 0 0 rgba(0, 85, 255, 0.6),
        80px 70px 0 0 rgba(0, 170, 255, 0.5);
    animation: serviceEmberSpark 3s infinite ease-out;
    opacity: 1;
}

.service-card-container:hover .service-card-front,
.service-card-container:hover .service-card-back {
    border-color: rgba(0, 65, 194, 0.5);
    box-shadow: 0 15px 30px rgba(0, 65, 194, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0041C2, #0056E0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
}

.service-card-container:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #00d4ff, #0041C2);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.3;
}

.service-card p {
    color: #ccc;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.service-card-back p {
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.5;
}

/* Ensure content visibility regardless of animation state */
.service-card-front,
.service-card-back {
    visibility: visible !important;
    opacity: 1 !important;
    display: flex !important;
}

.service-card h3,
.service-card p,
.service-icon {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

.service-icon {
    display: flex !important;
}

/* Service Card Links */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.learn-more {
    margin-top: auto;
    padding-top: 1rem;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card-container:hover .learn-more {
    opacity: 1;
    transform: translateY(0);
}

/* Service card ember spark animation */
@keyframes serviceEmberSpark {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    10% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    30% {
        transform: translate(-60%, -70%) scale(0.8);
        opacity: 0.8;
    }
    60% {
        transform: translate(-80%, -120%) scale(0.5);
        opacity: 0.5;
    }
    85% {
        transform: translate(-120%, -180%) scale(0.2);
        opacity: 0.2;
    }
    100% {
        transform: translate(-160%, -240%) scale(0);
        opacity: 0;
    }
}

/* PDR Page Styles */
.pdr-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    padding-top: 140px;
}

.pdr-hero .animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pdr-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 0;
}

.pdr-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #0041C2 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 65, 194, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.pdr-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #00d4ff;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #00d4ff;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-prompt:hover {
    color: #fff;
    transform: translateY(-5px);
}

.scroll-prompt i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.pdr-section {
    padding: 5rem 0;
    background: #0c0c0c;
    position: relative;
}

.pdr-section:nth-child(even) {
    background: #111;
}

.pdr-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* What is PDR Section */
.what-is-pdr .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.content-text p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

/* Before/After Slider */
.before-after-slider {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    cursor: grab;
    user-select: none;
}

.slider-container:active {
    cursor: grabbing;
}

.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    z-index: 1;
}

.before-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    z-index: 2;
    clip-path: inset(0 0% 0 0);
    transition: clip-path 0.1s ease;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 0%;
    width: 4px;
    height: 100%;
    background: #00d4ff;
    cursor: ew-resize;
    z-index: 10;
    transform: translateX(-50%);
    transition: left 0.1s ease;
}

.slider-line {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #00d4ff 20%, #00d4ff 80%, transparent 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: #00d4ff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.slider-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

.demo-caption {
    text-align: center;
    margin-top: 1rem;
    color: #00d4ff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Tool Gallery */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tool-card {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 65, 194, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s; }
.tool-card:nth-child(5) { animation-delay: 0.5s; }
.tool-card:nth-child(6) { animation-delay: 0.6s; }

.tool-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 65, 194, 0.5);
    box-shadow: 0 10px 25px rgba(0, 65, 194, 0.2);
}

.tool-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 3px solid #0041C2;
}

.tool-card:hover .tool-image {
    transform: scale(1.2);
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.tool-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tool-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.tool-card p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(0, 65, 194, 0.2);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 65, 194, 0.5);
    box-shadow: 0 15px 30px rgba(0, 65, 194, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0041C2, #0056E0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #00d4ff, #0041C2);
}

.benefit-icon i {
    font-size: 2rem;
    color: #fff;
}

.benefit-card h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Comparison Section */
.comparison-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(0, 65, 194, 0.2);
}

.comparison-slider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.comparison-side h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.pdr-side h3 {
    color: #00d4ff;
}

.traditional-side h3 {
    color: #ff6b6b;
}

.comparison-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.point {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.point .label {
    color: #ccc;
    font-weight: 500;
}

.pdr-side .point .value {
    color: #00d4ff;
    font-weight: 600;
}

.traditional-side .point .value {
    color: #ff6b6b;
    font-weight: 600;
}

.comparison-divider {
    width: 2px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #0041C2, transparent);
    position: relative;
}

.comparison-divider::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0041C2;
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.8rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 65, 194, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 65, 194, 0.5);
    box-shadow: 0 10px 25px rgba(0, 65, 194, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0041C2, #0056E0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: #ccc;
    line-height: 1.6;
}

/* PDR CTA Section */
.pdr-cta {
    background: linear-gradient(135deg, #0041C2 0%, #0056E0 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pdr-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.pdr-cta .cta-content {
    position: relative;
    z-index: 2;
}

.pdr-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.pdr-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.pdr-cta-btn {
    background: #fff;
    color: #0041C2;
    border: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.pdr-cta-btn:hover {
    background: #f0f0f0;
    color: #0041C2;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.pdr-cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 65, 194, 0.2) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
}

.pdr-cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

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

.services-cta {
    background: linear-gradient(135deg, #0041C2 0%, #0056E0 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #111;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    min-height: 260px;
}

.footer-brand {
    text-align: left;
}

.footer-brand h3 {
    color: #0041C2;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.4;
}

.footer-logo {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

/* Ember spark effects - far-reaching like blown embers */
.footer-logo::before,
.footer-logo::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.9) 0%, rgba(0, 170, 255, 0.7) 50%, transparent 100%);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.footer-logo:hover::before {
    box-shadow:
        -80px -120px 0 0 rgba(0, 85, 255, 0.7),
        60px -110px 0 0 rgba(0, 170, 255, 0.6),
        -120px 80px 0 0 rgba(0, 85, 255, 0.8),
        110px 70px 0 0 rgba(0, 170, 255, 0.7),
        -40px -160px 0 0 rgba(0, 85, 255, 0.5),
        140px -50px 0 0 rgba(0, 170, 255, 0.8),
        -160px -70px 0 0 rgba(0, 85, 255, 0.6),
        90px -140px 0 0 rgba(0, 170, 255, 0.5),
        -70px 130px 0 0 rgba(0, 85, 255, 0.7),
        130px 110px 0 0 rgba(0, 170, 255, 0.6),
        -110px -100px 0 0 rgba(0, 85, 255, 0.5),
        170px 30px 0 0 rgba(0, 170, 255, 0.7),
        -140px -130px 0 0 rgba(0, 85, 255, 0.6),
        180px -90px 0 0 rgba(0, 170, 255, 0.5),
        -160px 150px 0 0 rgba(0, 85, 255, 0.7),
        200px 140px 0 0 rgba(0, 170, 255, 0.4),
        -50px -200px 0 0 rgba(0, 85, 255, 0.4),
        220px -20px 0 0 rgba(0, 170, 255, 0.6);
    animation: emberSpark1 5s infinite ease-out, emberGlow 5s infinite ease-out;
}

.footer-logo:hover::after {
    box-shadow:
        -140px -90px 0 0 rgba(0, 85, 255, 0.6),
        90px -130px 0 0 rgba(0, 170, 255, 0.7),
        -110px 110px 0 0 rgba(0, 85, 255, 0.5),
        130px 90px 0 0 rgba(0, 170, 255, 0.8),
        -70px -150px 0 0 rgba(0, 85, 255, 0.7),
        110px -70px 0 0 rgba(0, 170, 255, 0.6),
        -130px 50px 0 0 rgba(0, 85, 255, 0.6),
        150px -110px 0 0 rgba(0, 170, 255, 0.5),
        -90px 160px 0 0 rgba(0, 85, 255, 0.7),
        70px 140px 0 0 rgba(0, 170, 255, 0.6),
        -170px -110px 0 0 rgba(0, 85, 255, 0.5),
        190px -70px 0 0 rgba(0, 170, 255, 0.6),
        -210px 90px 0 0 rgba(0, 85, 255, 0.4),
        170px 160px 0 0 rgba(0, 170, 255, 0.5),
        -30px -180px 0 0 rgba(0, 85, 255, 0.5),
        240px 60px 0 0 rgba(0, 170, 255, 0.4);
    animation: emberSpark2 5.5s infinite ease-out 0.8s, emberGlow 5.5s infinite ease-out 0.8s;
}

.footer-logo img {
    height: 240px;
    width: auto;
    filter: brightness(1.2);
    max-width: 100%;
    object-fit: contain;
}

/* Far-reaching ember animations - like blowing on dying embers */
@keyframes emberSpark1 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    8% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    25% {
        transform: translate(-70%, -90%) scale(0.9);
        opacity: 0.9;
    }
    50% {
        transform: translate(-120%, -180%) scale(0.6);
        opacity: 0.6;
    }
    75% {
        transform: translate(-180%, -280%) scale(0.3);
        opacity: 0.3;
    }
    90% {
        transform: translate(-240%, -380%) scale(0.1);
        opacity: 0.1;
    }
    100% {
        transform: translate(-300%, -480%) scale(0);
        opacity: 0;
    }
}

@keyframes emberSpark2 {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }
    12% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.9;
    }
    30% {
        transform: translate(-30%, -110%) scale(1);
        opacity: 0.8;
    }
    55% {
        transform: translate(20%, -220%) scale(0.7);
        opacity: 0.5;
    }
    80% {
        transform: translate(80%, -340%) scale(0.4);
        opacity: 0.2;
    }
    95% {
        transform: translate(140%, -460%) scale(0.1);
        opacity: 0.05;
    }
    100% {
        transform: translate(200%, -580%) scale(0);
        opacity: 0;
    }
}

@keyframes emberGlow {
    0% {
        filter: blur(1px) brightness(1);
    }
    20% {
        filter: blur(2px) brightness(1.3);
    }
    40% {
        filter: blur(3px) brightness(0.7);
    }
    60% {
        filter: blur(2px) brightness(1.2);
    }
    80% {
        filter: blur(4px) brightness(0.8);
    }
    100% {
        filter: blur(1px) brightness(1);
    }
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: right;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 1rem;
}

.footer-links a:hover {
    color: #0041C2;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #666;
}

/* Enhanced Location Pages */
.location-hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    background-color: #000;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.7) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-bottom: 0;
}

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Lubbock Wind Turbines */
.wind-turbine {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, rgba(0, 65, 194, 0.2), rgba(0, 212, 255, 0.3));
    border-radius: 50%;
    animation: windSpin 15s infinite linear;
}

.wind-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.wind-2 {
    top: 60%;
    right: 20%;
    animation-delay: -5s;
}

.wind-3 {
    top: 80%;
    left: 70%;
    animation-delay: -10s;
}

@keyframes windSpin {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

/* Killeen Military Elements */
.military-badge {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: militaryFloat 12s infinite ease-in-out;
}

.military-star {
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255, 215, 0, 0.8);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: starTwinkle 8s infinite ease-in-out;
}

.badge-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0s;
}

.badge-2 {
    top: 70%;
    right: 15%;
    animation-delay: -6s;
}

.star-1 {
    top: 15%;
    right: 25%;
    animation-delay: -2s;
}

.star-2 {
    top: 50%;
    left: 80%;
    animation-delay: -4s;
}

.star-3 {
    top: 85%;
    left: 20%;
    animation-delay: -6s;
}

@keyframes militaryFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes starTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.3) rotate(72deg);
        opacity: 1;
    }
}

.shop-details {
    padding: 80px 0;
    background: #111;
    margin-top: 0;
}

/* Fix for Killeen page spacing */
.location-hero + .shop-details {
    margin-top: 0;
    padding-top: 80px;
}

/* Ensure no gaps between hero and next section */
.killeen-hero + .shop-details {
    margin-top: 0;
    border-top: none;
}

/* Specific styles for Killeen hero */
.killeen-hero {
    background-color: #000 !important;
}

/* Killeen page specific styles */
.military-image {
    height: 350px;
}

.military-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    max-width: 400px;
}

/* Killeen shop content positioning */
.military-section .shop-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    transform: none !important;
    position: relative;
    z-index: 10;
    padding-top: calc(4rem + 9px);
}

/* CTA Section */
.cta-section {
    background: #111 !important;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Ensure all sections have dark backgrounds */
section {
    background-color: #111;
}

/* Override for specific sections that should be black */
.location-hero, .hero {
    background-color: #000 !important;
}

/* Force all containers and wrappers to have proper backgrounds */
.container {
    background: transparent;
}

/* Specific fix for any remaining gray areas */
.shop-details, .enhanced-section, .military-section {
    background: #111 !important;
}

.section-bg, .military-bg {
    background: #111 !important;
}

/* Specific fix for the problematic section */
section.shop-details.enhanced-section.military-section {
    background: #111 !important;
    background-color: #111 !important;
}

/* Additional override for any enhanced sections */
.enhanced-section {
    background: #111 !important;
    background-color: #111 !important;
}

/* NUCLEAR OPTION - Force everything to be dark */
.shop-details * {
    background: transparent !important;
}

.shop-details {
    background: #111 !important;
    background-color: #111 !important;
    background-image: none !important;
}

.section-bg {
    background: #111 !important;
    background-color: #111 !important;
    background-image: none !important;
}

.military-bg {
    background: #111 !important;
    background-color: #111 !important;
    background-image: none !important;
}

.shop-info {
    background: radial-gradient(ellipse at center, #2a2a4e 0%, #26314e 50%, #1f1f33 100%) !important;
    position: relative;
    overflow: hidden;
}

.container {
    background: transparent !important;
}

.shop-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
}

.shop-content {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    transform: none !important;
    position: relative;
    z-index: 10;
    padding-top: calc(4rem + 4px);
}

.shop-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: unset !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: none !important;
    z-index: 20;
    position: relative;
}

.shop-features {
    display: grid;
    gap: 1.2rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    margin-left: 3rem;
    margin-top: -10rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #0041C2;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 65, 194, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature:hover {
    background: rgba(0, 65, 194, 0.1);
    border-left-color: #00D4FF;
    transform: translateX(8px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 65, 194, 0.3);
}

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

.feature:hover i {
    color: #00D4FF;
    transform: scale(1.2) rotate(5deg);
}

.feature:hover span {
    color: #fff;
}

.feature i {
    color: #0041C2;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.feature span {
    font-size: 1.1rem;
    color: #e0e0e0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.shop-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

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

/* Shop section floating shapes */
.shop-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shop-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 65, 194, 0.3), rgba(0, 212, 255, 0.5));
    box-shadow: 0 0 30px rgba(0, 65, 194, 0.4), 0 0 60px rgba(0, 212, 255, 0.3);
    animation: floatCalm 25s infinite ease-in-out;
}

.shop-shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shop-shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.shop-shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: -10s;
}

.shop-shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: -15s;
}

.shop-shape-5 {
    width: 140px;
    height: 140px;
    top: 10%;
    right: 5%;
    animation-delay: -7s;
}

.shop-shape-6 {
    width: 90px;
    height: 90px;
    top: 60%;
    left: 10%;
    animation-delay: -22s;
}

.shop-shape-7 {
    width: 35px;
    height: 35px;
    top: 25%;
    left: 50%;
    animation-delay: -26s;
}

.shop-shape-8 {
    width: 75px;
    height: 75px;
    bottom: 15%;
    right: 10%;
    animation-delay: -30s;
}

.shop-shape-9 {
    width: 45px;
    height: 45px;
    top: 40%;
    right: 40%;
    animation-delay: -34s;
}

.shop-shape-10 {
    width: 65px;
    height: 65px;
    bottom: 40%;
    left: 30%;
    animation-delay: -38s;
}

.shop-shape-11 {
    width: 55px;
    height: 55px;
    top: 70%;
    right: 60%;
    animation-delay: -42s;
}

.shop-shape-12 {
    width: 80px;
    height: 80px;
    top: 35%;
    left: 75%;
    animation-delay: -46s;
}

.placeholder-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: linear-gradient(135deg, #0041C2 0%, #003399 100%);
    color: #fff;
    text-align: center;
}

.placeholder-image i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.placeholder-image p {
    font-size: 1.2rem;
    font-weight: 500;
}

.what-to-expect {
    padding: 80px 0;
    background: #000;
}

.what-to-expect h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

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

.expectation {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.expectation h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0041C2;
}

.expectation p {
    color: #ccc;
    line-height: 1.6;
}

.expectation-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0041C2, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #fff;
}

/* Enhanced Location Page Elements */
.location-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.location-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #0041C2 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.location-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.btn-location, .btn-military {
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
}

.enhanced-section {
    position: relative;
    overflow: hidden;
}

.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.military-bg {
    background: #111;
}

.military-section {
    background: #111;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(0, 65, 194, 0.1);
    animation: iconFloat 20s infinite linear;
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.icon-3 {
    top: 80%;
    left: 70%;
    animation-delay: -14s;
}

@keyframes iconFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.3;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.1;
    }
}

.section-title-enhanced {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff 0%, #0041C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: left;
    position: relative;
    z-index: 2;
}

.enhanced-feature {
    position: relative;
    z-index: 2;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Only hide for animation when JS is loaded */
.js-loaded .enhanced-feature {
    opacity: 0;
    transform: translateX(-30px);
}

.enhanced-feature.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.enhanced-image {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.enhanced-image.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.2), rgba(0, 212, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.enhanced-image:hover .image-overlay {
    opacity: 1;
}

/* Remove outline on image hover and focus */
.enhanced-image img,
.enhanced-image img:hover,
.enhanced-image img:focus,
.shop-image img,
.shop-image img:hover,
.shop-image img:focus,
img:hover,
img:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Only hide for animation when JS is loaded */
.js-loaded .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}



/* Privacy Page */
.privacy-content {
    padding: 80px 0;
    background: #111;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #0041C2;
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Enhanced FAQ Page */
.faq-hero {
    position: relative;
    min-height: 70vh;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    overflow: hidden;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.question-marks {
    position: absolute;
    width: 100%;
    height: 100%;
}

.q-mark {
    position: absolute;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(0, 65, 194, 0.1);
    animation: questionFloat 15s infinite ease-in-out;
}

.q1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.q2 {
    top: 60%;
    right: 15%;
    animation-delay: -3s;
}

.q3 {
    top: 80%;
    left: 70%;
    animation-delay: -6s;
}

.q4 {
    top: 30%;
    right: 30%;
    animation-delay: -9s;
}

.q5 {
    top: 10%;
    left: 60%;
    animation-delay: -12s;
}

@keyframes questionFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) rotate(15deg);
        opacity: 0.3;
    }
}

.faq-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #0041C2 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

.enhanced-faq {
    position: relative;
    background: #111;
    padding: 80px 0;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.enhanced-faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(0, 65, 194, 0.2);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.enhanced-faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 65, 194, 0.2);
    border-color: rgba(0, 65, 194, 0.4);
}

.enhanced-question {
    width: 100%;
    background: none;
    border: none;
    padding: 2rem;
    text-align: left;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.question-icon-pro {
    font-size: 1.2rem;
    min-width: 40px;
    text-align: center;
    color: #0041C2;
    transition: all 0.3s ease;
}

.enhanced-question:hover .question-icon-pro {
    color: #00d4ff;
    transform: scale(1.1);
}

.question-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.enhanced-faq-item.active .question-arrow {
    transform: rotate(180deg);
}

.enhanced-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(0, 0, 0, 0.2);
}

.enhanced-faq-item.active .enhanced-answer {
    max-height: 200px;
    padding: 0 2rem 2rem 2rem;
}

.enhanced-answer p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
    padding-top: 1rem;
}

/* Enhanced Contact Page */
.contact-hero {
    position: relative;
    min-height: 70vh;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.communication-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.comm-icon {
    position: absolute;
    font-size: 3rem;
    animation: commFloat 12s infinite ease-in-out;
}

.comm-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.comm-2 {
    top: 60%;
    right: 20%;
    animation-delay: -2.4s;
}

.comm-3 {
    top: 80%;
    left: 60%;
    animation-delay: -4.8s;
}

.comm-4 {
    top: 30%;
    right: 40%;
    animation-delay: -7.2s;
}

.comm-5 {
    top: 10%;
    left: 70%;
    animation-delay: -9.6s;
}

@keyframes commFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
}

.connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 65, 194, 0.3), transparent);
    height: 2px;
    animation: lineFlow 8s infinite ease-in-out;
}

.line-1 {
    top: 30%;
    left: 0;
    width: 60%;
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    right: 0;
    width: 70%;
    animation-delay: -2.7s;
}

.line-3 {
    top: 80%;
    left: 20%;
    width: 50%;
    animation-delay: -5.3s;
}

@keyframes lineFlow {
    0%, 100% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
}

.contact-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 0 80px;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #0041C2 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
}

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

.contact-info {
    margin-bottom: 4rem;
}

.contact-methods {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    text-align: left;
}

.contact-method i {
    font-size: 2rem;
    color: #0041C2;
    min-width: 40px;
}

.contact-method h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-cta.show {
    transform: translateY(0);
}

/* Request Form Styles */
.request-section {
    background: #111;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.request-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 65, 194, 0.1) 0%, rgba(0, 212, 255, 0.05) 50%, transparent 100%);
    z-index: 1;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 65, 194, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #fff 0%, #0041C2 50%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #e0e0e0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 65, 194, 0.3);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #111;
    color: #fff;
}

/* File Upload Styles */
.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px dashed rgba(0, 65, 194, 0.4);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 120px;
}

.file-upload-label:hover {
    border-color: #00d4ff;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
    transform: translateY(-2px);
}

.file-upload-label i {
    font-size: 2rem;
    color: #0041C2;
    margin-bottom: 0.5rem;
}

.file-upload-label span {
    color: #e0e0e0;
    font-weight: 500;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(0, 65, 194, 0.2);
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
    accent-color: #0041C2;
}

.checkbox-group label {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 400;
}

/* Form Button */
.form-container .btn {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.1rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #0041C2 0%, #0056E0 50%, #00d4ff 100%);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

.form-container .btn:hover::before {
    left: 100%;
}

.form-container .btn:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #0056E0 50%, #0041C2 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 65, 194, 0.4);
}

/* Confirmation Message */
.confirmation-message {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 65, 194, 0.1) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(0, 65, 194, 0.3);
}

.confirmation-message i {
    font-size: 4rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.confirmation-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.confirmation-message p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Employee Login Styles */
.employee-login-link {
    color: #0041C2 !important;
    font-weight: 600;
}

.employee-login-link:hover {
    color: #003399 !important;
}

.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0041C2 0%, #003399 100%);
    overflow: hidden;
}

.login-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.security-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.security-icon {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.sec-1 { top: 10%; left: 10%; animation-delay: 0s; }
.sec-2 { top: 20%; right: 15%; animation-delay: 1s; }
.sec-3 { bottom: 30%; left: 20%; animation-delay: 2s; }
.sec-4 { bottom: 20%; right: 10%; animation-delay: 3s; }
.sec-5 { top: 50%; left: 50%; animation-delay: 4s; }

.security-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sec-line {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

.sec-line-1 {
    width: 200px;
    height: 2px;
    top: 25%;
    left: 10%;
    transform: rotate(45deg);
}

.sec-line-2 {
    width: 150px;
    height: 2px;
    bottom: 40%;
    right: 20%;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.sec-line-3 {
    width: 100px;
    height: 2px;
    top: 60%;
    left: 60%;
    transform: rotate(60deg);
    animation-delay: 2s;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    max-width: 450px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header h1 {
    color: #0041C2;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.login-header p {
    color: #666;
    font-size: 1.1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    color: #333 !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
}

.login-form input[type="email"]:focus,
.login-form input[type="password"]:focus {
    border-color: #0041C2 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0, 65, 194, 0.2) !important;
}

.login-form input[type="email"]::placeholder,
.login-form input[type="password"]::placeholder {
    color: #999 !important;
}

.login-form label {
    color: #333 !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
}

.password-toggle:hover {
    color: #0041C2;
}

.login-btn {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.login-options {
    text-align: center;
    margin-top: 1rem;
}

.login-options a {
    color: #0041C2;
    text-decoration: none;
    font-weight: 500;
}

.login-options a:hover {
    text-decoration: underline;
}

.login-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.login-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.login-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Dashboard Styles */
.nav-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #333;
    font-weight: 500;
}

.dashboard-section {
    padding: 2rem 0;
    min-height: 100vh;
    background: #f8f9fa;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dashboard-header h1 {
    color: #0041C2;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.dashboard-header p {
    color: #666;
    font-size: 1.1rem;
}

.dashboard-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.tab-btn.active {
    color: #0041C2;
    border-bottom-color: #0041C2;
}

.tab-btn:hover {
    color: #0041C2;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.submissions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.submissions-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.submissions-filters select,
.submissions-filters input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 0.9rem;
}

.submissions-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.submission-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0041C2;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submission-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.submission-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.submission-type {
    background: #0041C2;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.submission-date {
    color: #666;
    font-size: 0.9rem;
}

.submission-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.submission-info p {
    color: #666;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.submission-preview {
    color: #888;
    font-style: italic;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.users-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.users-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.user-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #28a745;
}

.user-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.user-role {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
}

.user-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.no-submissions {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.no-submissions i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-content.large {
    max-width: 800px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    color: #0041C2;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal-close:hover {
    background: #f8f9fa;
}

.modal-body {
    padding: 1.5rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.submission-detail {
    display: grid;
    gap: 1rem;
}

.detail-group {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.detail-group h4 {
    color: #0041C2;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.detail-group p {
    margin: 0;
    color: #333;
}

/* Services Page Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .service-card-container {
        height: 420px;
    }

    .services-title {
        font-size: 3rem;
    }

    .services-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    /* PDR Page Mobile Styles */
    .pdr-title {
        font-size: 2.5rem;
    }

    .pdr-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .what-is-pdr .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-text h2 {
        text-align: center;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .comparison-slider {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .comparison-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, #0041C2, transparent);
    }

    .comparison-divider::before {
        top: 50%;
        left: 50%;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .pdr-cta p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

    .services-title {
        font-size: 2.5rem;
    }

    .services-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .services-hero {
        min-height: 50vh;
        padding-top: 120px;
    }

    .services-hero-content {
        padding: 60px 0;
    }

    .service-card-container {
        height: 410px;
    }

    .service-card-front,
    .service-card-back {
        padding: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

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

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

    .service-card-back p {
        font-size: 0.85rem;
    }

    .services-cta {
        padding: 3rem 0;
    }

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

    .cta-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        padding: 1rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #333;
        width: 80%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .nav-mobile {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-arrow {
        width: 45px;
        height: 45px;
    }

    .scroll-text {
        font-size: 0.8rem;
    }
    
    .mobile-cta {
        display: block;
    }
    
    .steps,
    .features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        min-height: auto;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-logo {
        order: -1;
    }

    .footer-logo img {
        height: 180px;
        max-width: 90%;
    }

    .footer-links {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    /* Login page mobile styles */
    .login-container {
        padding: 2rem;
        margin: 1rem;
    }

    .login-header h1 {
        font-size: 2rem;
    }

    /* Dashboard mobile styles */
    .dashboard-tabs {
        flex-direction: column;
        gap: 0;
    }

    .tab-btn {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e9ecef;
    }

    .submissions-header {
        flex-direction: column;
        align-items: stretch;
    }

    .submissions-filters {
        justify-content: stretch;
        flex-direction: column;
    }

    .submissions-filters select,
    .submissions-filters input {
        width: 100%;
    }

    .submissions-grid {
        grid-template-columns: 1fr;
    }

    .users-grid {
        grid-template-columns: 1fr;
    }

    .users-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .modal-content {
        width: 95%;
        margin: 1rem;
    }

    .modal-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-user {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }

    .shop-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .shop-content h2 {
        font-size: 2rem;
    }

    .expectations {
        grid-template-columns: 1fr;
    }

    /* Enhanced mobile styles */
    .location-title, .faq-title, .contact-title {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .floating-elements, .question-marks, .communication-elements {
        display: none;
    }

    .enhanced-faq-item {
        margin-bottom: 1rem;
    }

    .enhanced-question {
        padding: 1.5rem;
        font-size: 1.1rem;
    }

    .question-icon {
        font-size: 1.2rem;
        min-width: 30px;
    }

    /* Mobile Form Styles */
    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }

    .form-container h2 {
        font-size: 2rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .checkbox-group {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .checkbox-group input[type="checkbox"] {
        align-self: flex-start;
    }

    .file-upload-label {
        padding: 1.5rem;
        min-height: 100px;
    }

    .file-upload-label i {
        font-size: 1.5rem;
    }

    /* Mobile Contact Methods */
    .contact-methods {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .contact-method {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .location-title, .faq-title, .contact-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title-enhanced {
        font-size: 2rem;
    }

    .enhanced-question {
        padding: 1.2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .scroll-indicator {
        bottom: 15px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .scroll-text {
        font-size: 0.75rem;
    }
}