/* Rebex - Production Styles v1.0 */
/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1F2937;
    --secondary-dark: #111827;
    --accent-gold: #D4AF37;
    --accent-teal: #0D9CA6;
    --white: #FFFFFF;
    --light-gray: #F9FAFB;
    --off-white: #F3F4F6;
    --text-gray: #6B7280;
    --text-dark: #1F2937;
    --border-gray: #E5E7EB;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* Header */
#header {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 8px;
}

.header-wrapper {
    width: 100%;
    max-width: 1200px;
}

.header-container {
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    transition: all 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

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

#nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

#nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

#nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

#nav a:hover {
    color: var(--accent-gold);
}

#nav a:hover::after {
    width: 100%;
}

#nav a.active {
    color: var(--accent-gold);
}

#nav a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.mobile-toggle svg {
    width: 24px;
    height: 24px;
}

.mobile-toggle:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    background: var(--white);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero h1 {
    font-size: 64px;
    line-height: 1;
    margin: 0;
}

.hero-text-dark {
    color: var(--text-dark);
    letter-spacing: -1px;
}

.hero-text-bold {
    font-weight: 700;
}

.hero-text-gold {
    color: var(--accent-gold);
    font-weight: 700;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 530px;
}

.hero-cta {
    display: flex;
    align-items: center;
}

.btn-hero {
    background: linear-gradient(135deg, var(--accent-gold), #C19B2E);
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

.btn-hero-text {
    position: relative;
    z-index: 1;
}

.btn-hero-icon {
    display: none;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    overflow: hidden;
}

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

.btn {
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #C19B2E);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Section */
.services {
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-gray);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.service-card-hover {
    border-color: var(--accent-gold);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
}

.service-card li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--accent-teal);
    font-size: 16px;
    font-weight: bold;
}

/* About Section */
.about {
    background: var(--white);
}

.about-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(13, 156, 166, 0.3);
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 10px 30px rgba(13, 156, 166, 0.4);
}

.feature-icon i {
    font-size: 36px;
    color: var(--white);
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Work Section */
.work {
    background: var(--light-gray);
    padding: 100px 0;
}

.workSwiper {
    width: 100%;
    padding: 50px 0;
    overflow: visible;
}

.workSwiper .swiper-slide {
    width: 400px;
    display: flex;
    justify-content: center;
}

@media (max-width: 1200px) {
    .workSwiper .swiper-slide {
        width: 350px;
    }
}

.work-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border-gray);
    transition: all 0.4s ease;
    cursor: grab;
    position: relative;
    height: 100%;
}

.swiper-slide-active .work-card {
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.4);
    border-color: var(--accent-gold);
}

.work-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(13, 156, 166, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.work-card:hover::after {
    opacity: 1;
}

.work-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.work-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.work-category {
    background: var(--accent-gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.work-content {
    padding: 30px;
}

.work-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.work-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.work-result {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-teal);
    font-weight: 600;
}

.work-result i {
    font-size: 18px;
}

/* Process Section */
.process {
    background: var(--white);
}
.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px;
}

.step-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.step-icon {
    width: 90px;
    height: 90px;
    background: var(--white);
    border: 4px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.5);
    border-color: var(--accent-teal);
}

.process-step:hover .step-icon i {
    color: var(--white);
}

.step-icon i {
    font-size: 32px;
    color: var(--accent-gold);
    transition: color 0.4s ease;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-gray);
    line-height: 1.6;
}

.process-connector {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    position: relative;
    top: -60px;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-info-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-align: left;
}

.divider-left {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
    margin: 0 0 20px 0;
    border-radius: 2px;
}

.contact-info-header p {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    border-color: var(--accent-gold);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-teal));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
}

.contact-icon i {
    font-size: 22px;
    color: var(--white);
}

.contact-text h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-text a,
.contact-text p {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--accent-gold);
}

.contact-cta {
    background: linear-gradient(135deg, #1F2937, #111827);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 16px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
    font-size: 20px;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-gray);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--light-gray);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-gray);
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 13px;
    color: var(--accent-gold);
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(5px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-success.active {
    display: block;
    animation: fadeInScale 0.5s ease;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-success i {
    font-size: 64px;
    color: var(--accent-teal);
    margin-bottom: 20px;
    display: block;
}

.form-success h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-success p {
    color: var(--text-gray);
    font-size: 16px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-teal), var(--accent-gold), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.footer::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 50%;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    position: relative;
    z-index: 1;
}

.footer-logo {
    height: 55px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
    transform: scale(1.05);
}

.footer-tagline {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    font-family: 'Poppins', sans-serif;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
}

.footer-contact,
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact h4,
.footer-links h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    display: inline-block;
}

.footer-contact h4::after,
.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
}

.footer-contact a,
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    position: relative;
    padding-left: 0;
}

.footer-contact a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    bottom: -2px;
    transition: width 0.3s ease;
}

.footer-contact a:hover::before,
.footer-links a:hover::before {
    width: 100%;
}

.footer-contact a i {
    color: var(--accent-gold);
    font-size: 16px;
    transition: all 0.3s ease;
    width: 20px;
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.footer-contact a:hover i {
    transform: scale(1.2) rotate(10deg);
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-teal);
    bottom: -2px;
    transition: width 0.3s ease;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
    will-change: transform;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.3);
    animation: ripple 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    #header {
        top: 8px;
        padding: 0 8px;
    }

    .header-wrapper {
        max-width: 100%;
    }

    .header-container {
        height: 70px;
        padding: 0 20px;
        width: 100%;
    }

    .logo img {
        height: 40px;
    }

    #nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: calc(100% - 16px);
        margin: 0 8px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(212, 175, 55, 0.3);
        border-radius: 20px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        padding: 20px;
        flex-direction: column;
        gap: 0;
    }

    #nav.active {
        left: 0;
    }

    #nav a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        width: 100%;
        text-align: center;
    }

    #nav a:last-child {
        border-bottom: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
    }

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

    .hero-content {
        order: 1;
        text-align: center;
    }

    .hero-image {
        order: 2;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .btn-hero {
        font-size: 20px;
        padding: 18px 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }

    .process-connector {
        width: 3px;
        height: 60px;
        top: 0;
    }

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

    .contact-info {
        position: relative;
        top: 0;
    }

    .contact-info-header h2 {
        font-size: 32px;
        text-align: center;
    }

    .divider-left {
        margin: 0 auto 20px;
    }

    .contact-info-header p {
        text-align: center;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .footer-logo {
        margin: 0 auto 20px;
        display: block;
    }

    .footer-contact h4::after,
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact a,
    .footer-links a {
        justify-content: center;
        padding-left: 0 !important;
    }

    .footer-contact a:hover,
    .footer-links a:hover {
        padding-left: 0 !important;
    }

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

@media (max-width: 640px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 15px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .btn-hero {
        font-size: 16px;
        padding: 14px 25px;
        width: 100%;
        text-align: center;
    }

    .hero-image img {
        width: 100%;
        max-width: 100%;
    }

    .container {
        padding: 0 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

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

    .service-card li {
        font-size: 14px;
        padding: 6px 0;
        padding-left: 25px;
    }

    .service-card li::before {
        font-size: 12px;
        top: 6px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .workSwiper .swiper-slide {
        width: 90vw;
        max-width: 320px;
    }

    .work-card {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .work-content {
        padding: 25px 20px;
    }

    .work-content h3 {
        font-size: 20px;
    }

    .work-content p {
        font-size: 14px;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature {
        padding: 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
    }

    .feature-icon i {
        font-size: 32px;
    }

    .feature h4 {
        font-size: 18px;
    }

    .feature p {
        font-size: 15px;
    }

    .workSwiper {
        padding: 30px 0;
        overflow: visible;
    }

    .workSwiper .swiper-slide {
        width: 85vw;
        max-width: 300px;
    }

    .work {
        padding: 80px 0 120px;
        overflow: visible;
    }
}

