:root {
    --primary: #f59e0b;
    /* Gold/Amber for Keys/Locksmith */
    --primary-glow: rgba(245, 158, 11, 0.4);
    --secondary: #10b981;
    /* Emerald/Success/WhatsApp */
    --secondary-glow: rgba(16, 185, 129, 0.4);

    --bg-dark: #0f172a;
    /* Slate 900 */
    --bg-darker: #020617;
    /* Slate 950 */
    --bg-card: rgba(30, 41, 59, 0.5);
    /* Slate 800 with opacity */

    --text-main: #f8fafc;
    /* Slate 50 */
    --text-muted: #cbd5e1;
    /* Slate 300 */

    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-quick: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--primary);
}

.text-gold {
    color: var(--primary);
}

.text-brand {
    color: #38bdf8;
    /* Blue accent for maps/pins */
}

.text-center {
    text-align: center;
}

.w-50 {
    width: 50%;
}

.w-80 {
    width: 80%;
}

.relative {
    position: relative;
}

.m-auto {
    margin: 0 auto;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.text-sm {
    font-size: 0.875rem;
}

.opacity-80 {
    opacity: 0.8;
}

.inline-block {
    display: inline-block;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--secondary);
    color: white;
    box-shadow: 0 4px 15px var(--secondary-glow);
}

.btn-primary:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--secondary-glow);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-darker);
}

.btn-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--primary-glow);
}

.hover-glow:hover {
    filter: brightness(1.1);
}

/* Glassmorphism & 3D Tools */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.glass-card:hover {
    transform: translateY(-5px) rotateX(2deg) rotateY(1deg);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    background: rgba(30, 41, 59, 0.7);
}

.active-card {
    border-color: rgba(245, 158, 11, 0.6);
    background: linear-gradient(to bottom right, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.9));
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.2);
}

.perspective-container {
    perspective: 2000px;
    transform-style: preserve-3d;
}

.depth-item {
    transform: translateZ(20px);
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 15px 0;
    transition: var(--transition);
}

.header.blur-effect {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badge-24h {
    background: rgba(245, 158, 11, 0.15);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    max-width: 100vw;
}

.dark-gradient {
    background: radial-gradient(circle at top right, #1e293b 0%, #020617 60%);
}

.dark-gradient::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(245, 158, 11, 0.15);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-text-area {
    flex: 1;
    will-change: transform, opacity, filter;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.4);
    animation: dotPulse 2s infinite;
}

@keyframes dotPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-subtitle strong {
    color: white;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.trust-stars {
    display: inline-flex;
    white-space: nowrap;
}

.highlight-text {
    color: white;
    font-weight: 600;
}

.hero-image-area {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    width: 100%;
    max-width: 500px;
}

.hero-img {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

/* Image Composition for 2 Images */
.image-composition {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 550px;
}

.wrapper-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    z-index: 1;
}

.wrapper-sub {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 65%;
    z-index: 2;
    border-color: rgba(245, 158, 11, 0.4);
}

.glass-floatbox {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.glass-floatbox i {
    font-size: 24px;
}

.floatbox-text {
    display: flex;
    flex-direction: column;
}

.floatbox-text strong {
    font-size: 0.9rem;
    color: white;
}

.floatbox-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.top-right {
    top: 40px;
    right: -20px;
}

.bottom-left {
    bottom: 40px;
    left: -20px;
}

.image-composition {
    overflow: hidden;
}

.float-anim {
    animation: float 6s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services */
.bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(15, 23, 42, 0.8) 0%, rgba(2, 6, 23, 0) 70%);
    z-index: -1;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.glass-card:hover .service-icon {
    background: var(--primary);
    color: var(--bg-darker);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: white;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Video Proofs */
.dark-bg {
    background-color: #0b1120;
}

.pb-0 {
    padding-bottom: 0;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(15, 23, 42, 0.8);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.prev-btn {
    left: -15px;
}

.next-btn {
    right: -15px;
}

.video-grid {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.video-grid::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 220px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 10;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-card.playing {
    transform: scale(1.05);
    z-index: 20;
    box-shadow: 0 0 50px var(--primary-glow);
}

.video-grid.playing .video-card:not(.playing) {
    filter: blur(4px) grayscale(0.5);
    opacity: 0.6;
}

.video-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    transition: var(--transition-quick);
}

/* Testimonials */
.bg-dots {
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonials-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.testimonials-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Reviews Carousel Styling */
.testimonials-carousel-container {
    position: relative;
    width: 100%;
    margin-top: 50px;
    padding: 20px 0 60px;
    overflow: visible;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: grab;
    will-change: transform;
}

.reviews-slider:active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 320px;
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(4deg) scale(1.02);
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(30, 41, 59, 0.7);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.user-info {
    flex: 1;
}

.user-info strong {
    display: block;
    font-size: 1rem;
    color: white;
}

.time-ago {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.google-logo {
    color: #4285F4;
    font-size: 1.25rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 20px;
}

.stars {
    margin-bottom: 10px;
    display: flex;
    gap: 4px;
}

/* Carousel Navigation */
.carousel-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-quick);
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--primary-glow);
}

.carousel-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary);
    color: var(--bg-darker);
    transform: scale(1.1);
}

.btn-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.highlights-box {
    padding: 20px;
    border-radius: 16px;
}

.highlight-item {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-item:last-child {
    border-bottom: none;
}

.highlight-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.highlight-item strong {
    color: white;
}


/* Footer */
.dark-bg-alt {
    background-color: #020617;
}

.footer {
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.footer-info p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.footer-links i {
    width: 20px;
    color: var(--primary);
}

.hover-link:hover {
    color: white;
}

.footer-address p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: unset;
    }
    
    .hero-title {
        font-size: 3rem;
    }

    .hero-content {
        flex-direction: column;
        padding-top: 50px;
    }

    .hero-text-area {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-image-area {
        width: 100%;
        margin-top: 40px;
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .container-flex {
        flex-direction: column;
    }

    .w-50 {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .testimonial-header {
        gap: 10px;
    }

    .header-contact .btn-outline,
    .badge-24h {
        display: none;
    }

    .header-contact .btn-primary {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-trust {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 5px;
    }

    .image-composition {
        height: 450px;
        overflow: hidden;
    }

    .wrapper-main {
        width: 90%;
        right: 5%;
    }

    .wrapper-sub {
        width: 75%;
        left: 5%;
        bottom: 0;
    }

    .hero-img {
        aspect-ratio: 4/5;
        width: 100%;
        height: auto;
        max-height: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .video-card {
        flex: 0 0 180px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info p {
        margin: 0 auto;
    }

    .glass-floatbox {
        transform: scale(0.8);
    }

    .top-right {
        right: 5px;
    }

    .bottom-left {
        left: 0;
    }

    .section {
        overflow: hidden;
    }

    .carousel-wrapper {
        overflow: hidden;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        padding: 20px;
        min-height: 200px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .btn-large {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .video-card {
        flex: 0 0 85%;
    }
}