:root {
    --primary-color: #00ff9d;
    /* Neon Green */
    --primary-hover: #00cc7a;
    --bg-dark: #0a1128;
    /* Deep Midnight Blue */
    --bg-darker: #050914;
    --bg-card: rgba(255, 255, 255, 0.05);
    --text-light: #f4f4f9;
    --text-muted: #a0a0c0;
    --font-main: 'Outfit', sans-serif;
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.no-scroll {
    overflow: hidden !important;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: #fff;
    font-weight: 700;
}

.highlight {
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 0 25px rgba(0, 255, 157, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(5px);
    border: var(--glass-border);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-orange-glass {
    background: rgba(255, 120, 0, 0.15);
    color: #ff9d00;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 120, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 120, 0, 0.1);
}

.btn-orange-glass:hover {
    background: rgba(255, 120, 0, 0.25);
    border-color: rgba(255, 120, 0, 0.5);
    box-shadow: 0 0 20px rgba(255, 120, 0, 0.2);
    color: #ffb84d;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    background: rgba(10, 17, 40, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-light);
    font-weight: 500;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    background: radial-gradient(circle at top right, #1a2a50 0%, var(--bg-dark) 60%);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-badges-hero {
    display: flex;
    gap: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    flex-wrap: wrap;
    margin-top: 20px;
}

.trust-badges-hero span {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-icon {
    font-style: normal;
}

.hero-image-container {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 1;
}

#hero-img {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Glass Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

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

.section-dark {
    background-color: var(--bg-darker);
}

.section-light {
    background-color: var(--bg-dark);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.service-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: 0.3s;
}

.service-item:hover {
    border-color: var(--primary-color);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Content Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 20px;
}

.text-section h2,
.text-section h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.text-section p,
.text-section ul {
    margin-bottom: 20px;
    color: var(--text-muted);
}

.text-section ul {
    list-style: disc;
    padding-left: 20px;
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    margin: 10px;
}

.testimonial-card .rating {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary-color);
}

/* Swiper Override */
.swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Footer */
.footer-dark {
    background: #02040a;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image-container {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 40px;
    }

    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .grid-3,
    .grid-4,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
    }

    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background: rgba(10, 17, 40, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 999;
    }

    .nav-links li {
        margin: 20px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s ease;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .nav-active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered delay for nav links */
    .nav-active li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-active li:nth-child(2) {
        transition-delay: 0.2s;
    }

    .nav-active li:nth-child(3) {
        transition-delay: 0.3s;
    }

    .nav-active li:nth-child(4) {
        transition-delay: 0.4s;
    }

    .burger {
        display: block;
        cursor: pointer;
        z-index: 1000;
        padding: 10px;
    }

    .burger div {
        width: 25px;
        height: 2px;
        background-color: var(--text-light);
        margin: 6px;
        transition: all 0.3s ease;
    }
}

.nav-active-blur {
    overflow: hidden;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Floating WhatsApp Button - Premium Glass Redesign */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.2;
    z-index: -1;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    70% {
        transform: scale(1.4);
        opacity: 0;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: #25d366;
    box-shadow: 0 12px 40px 0 rgba(37, 211, 102, 0.3);
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: #25d366;
    /* Green icon on glass */
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.5));
}

/* Status Indicator */
.whatsapp-status {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 12px;
    height: 12px;
    background: #25d366;
    border: 2px solid #1a1a1a;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}