:root {
    /* --primary: #12ce5d; */
    --primary: #00a86b;
    --primary-dark: #00675f;
    /* --primary-dark: #0ea84c; */
    --primary-rgb: 18, 206, 93;
    --secondary: #ffd80c;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #111111;
    --border-light: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bs-theme="light"] {
    --primary: #12ce5d;
    --dark-bg: #ffffff;
    --darker-bg: #f7f7f9;
    --card-bg: #ffffff;
    --border-light: rgba(0, 0, 0, 0.1);
}

body {
    font-family: "Inter", sans-serif;
    background: var(--dark-bg);
    color: var(--bs-body-color);
    overflow-x: hidden;
}

/* Theme Toggle */
.theme-toggle-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.theme-toggle-btn i {
    font-size: 20px;
    position: absolute;
    transition: var(--transition);
}

.theme-toggle-btn .fa-sun {
    opacity: 0;
    transform: scale(0);
}

.theme-toggle-btn .fa-moon {
    opacity: 1;
    transform: scale(1);
}

[data-bs-theme="light"] .theme-toggle-btn .fa-sun {
    opacity: 1;
    transform: scale(1);
}

[data-bs-theme="light"] .theme-toggle-btn .fa-moon {
    opacity: 0;
    transform: scale(0);
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

[data-bs-theme="light"] .navbar {
    background: #ffffff;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    height: 40px;
}

.logo-dark {
    display: none;
}

[data-bs-theme="light"] .logo-light {
    display: none;
}

[data-bs-theme="light"] .logo-dark {
    display: block;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--bs-body-color);
}

.brand-text span {
    color: var(--primary);
}

.nav-link {
    font-weight: 500;
    margin: 0 5px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(18, 206, 93, 0.3);
}

.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    box-shadow: 0 0 0 3px rgba(18, 206, 93, 0.3) !important;
    outline: none !important;
}

.btn-primary:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(18, 206, 93, 0.3) !important;
}

.btn-success {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-success:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-success:focus,
.btn-success:active,
.btn-success.active {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    box-shadow: 0 0 0 3px rgba(18, 206, 93, 0.3) !important;
    outline: none !important;
}

.btn-success:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(18, 206, 93, 0.3) !important;
}

button:focus,
button:active,
button:focus-visible {
    outline: none !important;
}

.btn:focus,
.btn:active,
.btn.active:focus,
.btn:active:focus {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary:focus,
.btn-success:focus {
    box-shadow: 0 0 0 3px rgba(18, 206, 93, 0.3) !important;
}

.btn-outline-light {
    border-radius: 50px;
    padding: 10px 28px;
    font-weight: 600;
}

/* Hero Section */
.hero-section .hero-text {
    background: var(--primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent !important;
}

[data-bs-theme="light"] .hero-section .hero-title,
[data-bs-theme="light"] .hero-section .hero-description,
[data-bs-theme="light"] .hero-section .hero-badge span,
[data-bs-theme="light"] .hero-section .stat-label,
[data-bs-theme="light"] .hero-section .badge-dot {
    color: #ffffff !important;
}

.hero-badge {
    background: rgba(0, 0, 0, 0.4) !important;
    color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-description {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-stats {
        background: rgba(0, 0, 0, 0.3);
        margin-top: 20px !important;
    }

    .hero-description {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding: 100px 0;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 206, 93, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(18, 206, 93, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.875rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

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

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

[data-bs-theme="light"] .stat-label {
    color: var(--bs-secondary-color);
}

.hero-animation {
    position: relative;
    height: 400px;
}

.floating-element {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(18, 206, 93, 0.1);
    border: 1px solid rgba(18, 206, 93, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s infinite;
}

.floating-element i {
    font-size: 40px;
    color: var(--primary);
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 20%;
}
.floating-element:nth-child(2) {
    top: 60%;
    left: 10%;
    animation-delay: 0.5s;
}
.floating-element:nth-child(3) {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}
.floating-element:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Services Grid */
.services {
    background: var(--darker-bg);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}

.service-icon i {
    font-size: 40px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(18, 206, 93, 0.1);
    border-radius: 20px;
    transform: rotate(45deg);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--bs-secondary-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 0;
}

.service-features li {
    color: var(--bs-secondary-color);
    font-size: 14px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: "→";
    color: var(--primary);
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

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

.section-tag {
    display: inline-block;
    background: rgba(18, 206, 93, 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--bs-secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Work Section */
.work-filters {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--bs-body-color);
    padding: 8px 24px;
    border-radius: 50px;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.work-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.work-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.work-card:hover .work-image {
    /* transform: scale(1.1); */
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: var(--transition);
    padding: 30px;
}

.work-card:hover .work-overlay {
    opacity: 1;
    backdrop-filter: blur(5px);
}

.work-content {
    transform: translateY(20px);
    transition: var(--transition);
}

.work-card:hover .work-content {
    transform: translateY(0);
}

.work-category {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.work-content h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.work-content p {
    margin-bottom: 15px;
}

/* Pricing Section Styles */
.pricing-section {
    background: var(--darker-bg);
}
.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pricing-featured {
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 1;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--bs-body-color);
}

.pricing-price {
    margin-bottom: 16px;
}

.pricing-price .currency {
    font-size: 20px;
    font-weight: 600;
    vertical-align: top;
    color: var(--primary);
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.pricing-price .period {
    font-size: 16px;
    color: var(--bs-secondary-color);
}

.pricing-description {
    color: var(--bs-secondary-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--bs-body-color);
    font-size: 14px;
}

.feature-item i {
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item i.text-success {
    color: var(--primary) !important;
}

.pricing-footer {
    margin-top: auto;
}

/* Responsive Pricing */
@media (max-width: 768px) {
    .pricing-card {
        padding: 24px;
    }

    .pricing-price .amount {
        font-size: 36px;
    }

    .pricing-title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 20px;
    }

    .feature-item {
        font-size: 13px;
    }
}

/* Process Section */
.process-section {
    background: var(--darker-bg);
}

.process-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.process-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(18, 206, 93, 0.1);
}

.process-icon {
    width: 50px;
    height: 50px;
    background: rgba(18, 206, 93, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.process-icon i {
    font-size: 24px;
    color: var(--primary);
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-card p {
    color: var(--bs-secondary-color);
    margin-bottom: 15px;
}

.process-duration {
    display: inline-block;
    background: rgba(18, 206, 93, 0.1);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
}

/* Tech Section */
.tech-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-bottom: 60px;
}

.tech-track {
    display: flex;
    gap: 20px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.tech-track:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.tech-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    min-width: 120px;
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(18, 206, 93, 0.1);
}

.tech-item i {
    font-size: 48px;
    color: var(--primary);
}

.tech-item span {
    font-size: 14px;
    font-weight: 500;
}

.tech-category {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
}

.tech-category h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.tech-category h4 i {
    color: var(--primary);
    margin-right: 10px;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-badges span {
    background: var(--darker-bg);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    transition: var(--transition);
}

.tech-badges span:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Team Slider Section */
.team-section {
    overflow: visible;
    padding-bottom: 60px;
}

.team-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    margin: 0 20px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.team-slider {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    padding: 10px 0;
}

.team-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 5px;
}

.team-card {
    flex: 0 0 auto;
    width: calc(25% - 22.5px);
    min-width: 0;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: visible;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 20px 20px 0 0;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 20px;
    text-align: center;
    position: relative;
    background: var(--card-bg);
    border-radius: 0 0 20px 20px;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-info p {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary);
}

.dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Team Slider */
@media (max-width: 1200px) {
    .team-card {
        width: calc(33.333% - 20px);
    }
    .prev-btn {
        left: -15px;
    }
    .next-btn {
        right: -15px;
    }
}

@media (max-width: 992px) {
    .team-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .team-slider-container {
        margin: 0 10px;
    }
    .prev-btn,
    .next-btn {
        width: 40px;
        height: 40px;
    }
    .prev-btn {
        left: -10px;
    }
    .next-btn {
        right: -10px;
    }
}

@media (max-width: 576px) {
    .team-card {
        width: 100%;
    }
    .team-slider-container {
        margin: 0 5px;
    }
    .prev-btn,
    .next-btn {
        width: 35px;
        height: 35px;
    }
    .prev-btn {
        left: -5px;
    }
    .next-btn {
        right: -5px;
    }
    .slider-btn i {
        font-size: 14px;
    }
}

/* Contact Section */
.contact {
    background: var(--darker-bg);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-details {
    margin-top: 40px;
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(18, 206, 93, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 24px;
    color: var(--primary);
}

.contact-detail h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-detail p {
    color: var(--bs-secondary-color);
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    padding: 40px;
}

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

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: var(--bs-body-color);
    font-family: inherit;
    font-size: 16px;
    outline: none;
}

.form-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-light);
    transition: var(--transition);
}

.form-border::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.form-group input:focus ~ .form-border::before,
.form-group textarea:focus ~ .form-border::before {
    width: 100%;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 30px;
    z-index: 100;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--card-bg);
    color: var(--bs-body-color);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

/* Footer */
.footer {
    position: relative;
    background: var(--darker-bg);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-light);
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.footer-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(18, 206, 93, 0.1) 0%,
        transparent 70%
    );
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    height: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-description {
    color: var(--bs-secondary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links-group h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links-group ul {
    list-style: none;
    padding-left: 0;
}

.footer-links-group li {
    margin-bottom: 12px;
}

.footer-links-group a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--bs-secondary-color);
}

.footer-contact-list i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    color: var(--bs-secondary-color);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: var(--bs-secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary);
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

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

    .services-grid,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    section {
        padding: 60px 0;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .work-filters {
        flex-wrap: wrap;
    }

    .filter-btn {
        margin: 5px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 1.875rem;
    }

    .service-card {
        padding: 30px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

.work-item {
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}
