/* ================================================
   DIGIZONE.ID - CLEAN & PROFESSIONAL STYLE
   ================================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar .logo img {
    height: 40px;
    width: auto;
}

.navbar .logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #0026CA !important;
    text-decoration: none;
}

.navbar .logo-highlight {
    color: #FFB800 !important;
}

.navbar .logo:hover .logo-text {
    color: #0052FF !important;
}

.navbar .logo:hover .logo-highlight {
    color: #FFB800 !important;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #0026CA;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0026CA;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #0026CA;
    border-radius: 2px;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-toggle {
        display: flex;
    }
}


/* Hero Section - Clean */
.hero-clean {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0026CA 0%, #0052FF 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.badge-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.hero-title-clean {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle-clean {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-stats-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.btn-primary-clean,
.btn-outline-clean {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0);
}

.btn-outline-clean .btn-icon {
    filter: brightness(0) invert(1);
}

.btn-primary-clean {
    padding: 15px 35px;
    background: #FFB800;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary-clean:hover {
    background: #FFA000;
    transform: translateY(-2px);
}

.btn-outline-clean {
    padding: 15px 35px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-clean:hover {
    background: white;
    color: #0026CA;
}

.btn-outline-clean:hover .btn-icon {
    filter: brightness(0) saturate(100%) invert(11%) sepia(96%) saturate(5592%) hue-rotate(226deg);
}

.hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 14px;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.mockup-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mockup-img {
    width: 100%;
    display: block;
}

/* Tech Section */
.tech-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.tech-title {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.tech-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.tech-icon {
    width: 24px;
    height: 24px;
}

/* Section Header */
.section-header-clean {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 6px 18px;
    background: #E3F2FD;
    color: #0026CA;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title-clean {
    font-size: 40px;
    font-weight: 800;
    color: #222;
    line-height: 1.3;
    margin-bottom: 15px;
}

.section-desc-clean {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Services */
.services-clean {
    padding: 100px 0;
}

.services-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.service-box:hover {
    border-color: #0026CA;
    box-shadow: 0 10px 40px rgba(0, 38, 202, 0.1);
    transform: translateY(-5px);
}

.service-featured {
    background: linear-gradient(135deg, #0026CA 0%, #0052FF 100%);
    color: white;
    border: none;
}

.featured-label {
    display: inline-block;
    padding: 5px 15px;
    background: #FFB800;
    color: #000;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.service-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-featured p {
    color: rgba(255, 255, 255, 0.95);
}

.service-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-list li {
    padding: 8px 0;
    font-size: 14px;
}

.service-link-clean {
    color: #0026CA;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.service-featured .service-link-clean {
    color: #FFB800;
}

/* Process */
.process-clean {
    padding: 100px 0;
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    position: relative;
}

.process-num {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 60px;
    font-weight: 800;
    color: #0026CA;
    opacity: 0.1;
}

.process-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.process-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.process-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.process-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Stats */
.stats-clean {
    padding: 80px 0;
    background: linear-gradient(135deg, #0026CA 0%, #0052FF 100%);
    color: white;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item-clean {
    text-align: center;
}

.stat-icon-clean {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-icon-clean img {
    width: 64px;
    height: 64px;
    filter: brightness(0) invert(1);
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    opacity: 0.95;
}

/* Pricing */
.pricing-clean {
    padding: 100px 0;
}

.pricing-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.price-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s;
    position: relative;
}

.price-box:hover {
    border-color: #0026CA;
    box-shadow: 0 10px 40px rgba(0, 38, 202, 0.1);
    transform: translateY(-5px);
}

.price-popular {
    background: linear-gradient(135deg, #0026CA 0%, #0052FF 100%);
    color: white;
    border: none;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: #FFB800;
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.price-header-clean h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.price-header-clean p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.price-popular .price-header-clean p {
    color: rgba(255, 255, 255, 0.9);
}

.price-value {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    margin-top: 8px;
    margin-right: 5px;
}

.price-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
}

.price-suffix {
    font-size: 20px;
    font-weight: 600;
    margin-top: 8px;
    margin-left: 5px;
}

.price-list {
    list-style: none;
    margin-bottom: 30px;
}

.price-list li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.price-popular .price-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-list li.disabled {
    opacity: 0.4;
}

.btn-price {
    display: block;
    width: 100%;
    padding: 15px;
    background: #0026CA;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-price:hover {
    background: #0052FF;
    transform: translateY(-2px);
}

.price-popular .btn-price {
    background: white;
    color: #0026CA;
}

.price-popular .btn-price:hover {
    background: #FFB800;
    color: #000;
}

.pricing-note-clean {
    text-align: center;
    padding: 20px;
    background: #E3F2FD;
    border-radius: 10px;
    color: #0026CA;
    font-size: 15px;
}

/* Portfolio */
.portfolio-clean {
    padding: 100px 0;
    background: #f8f9fa;
}

.portfolio-filter-clean {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn-clean {
    padding: 10px 25px;
    background: white;
    border: 2px solid #e0e0e0;
    color: #666;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.filter-btn-clean:hover,
.filter-btn-clean.active {
    background: #0026CA;
    color: white;
    border-color: #0026CA;
}

.portfolio-grid-clean {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.portfolio-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #222;
}

.portfolio-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.portfolio-tags-clean {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.portfolio-tags-clean span {
    padding: 5px 12px;
    background: #E3F2FD;
    color: #0026CA;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}

/* Testimonials */
.testimonials-clean {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-box {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-box p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author-clean {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #0026CA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-author-clean h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-author-clean span {
    font-size: 13px;
    color: #666;
}

/* FAQ */
.faq-clean {
    padding: 100px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-box {
    background: white;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-q {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-q:hover {
    background: #f8f9fa;
}

.faq-q h4 {
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: #0026CA;
    transition: transform 0.3s;
}

.faq-box.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-a {
    display: none;
    padding: 0;
}

.faq-box.active .faq-a {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-a p {
    padding: 0 30px;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-a p:first-child {
    padding-top: 20px;
}

.faq-a p:last-child {
    padding-bottom: 25px;
}

.faq-a ul,
.faq-a ol {
    margin: 0 0 15px 0;
    padding: 0 30px 0 55px;
}

.faq-a ul li,
.faq-a ol li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: #555;
}
    color: #666;
}

/* CTA */
.cta-clean {
    padding: 100px 0;
    background: linear-gradient(135deg, #0026CA 0%, #0052FF 100%);
    color: white;
}

.cta-box-clean {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box-clean h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box-clean p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons-clean {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-cta-primary {
    padding: 18px 40px;
    background: #FFB800;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    background: #FFA000;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    padding: 18px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: white;
    color: #0026CA;
}

.cta-features-clean {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 15px;
}

/* Contact */
.contact-clean {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-clean h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.contact-box-clean {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
}

.contact-icon-clean {
    font-size: 32px;
}

.contact-box-clean h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-box-clean p {
    font-size: 15px;
    color: #666;
}

.contact-form-clean {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
}

.form-row-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row-clean input,
.form-row-clean select,
.contact-form-clean textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s;
}

.form-row-clean input:focus,
.form-row-clean select:focus,
.contact-form-clean textarea:focus {
    outline: none;
    border-color: #0026CA;
    background: white;
}

.contact-form-clean textarea {
    margin-bottom: 20px;
}

.btn-submit-clean {
    width: 100%;
    padding: 18px;
    background: #0026CA;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit-clean:hover {
    background: #0052FF;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content-clean {
        grid-template-columns: 1fr;
    }
    
    .hero-title-clean {
        font-size: 36px;
    }
    
    .hero-stats-clean {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .services-grid-clean,
    .process-grid,
    .stats-row,
    .pricing-grid-clean,
    .portfolio-grid-clean,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row-clean {
        grid-template-columns: 1fr;
    }
    
    .section-title-clean {
        font-size: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #0026CA;
    color: white;
    position: relative;
    padding-top: 60px;
}

.footer-wave {
    position: absolute;
    top: -59px;
    left: 0;
    width: 100%;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer-content {
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: white;
}

.logo-highlight {
    color: #FFB800;
}

.footer-logo .logo-text {
    color: white !important;
}

.footer-logo .logo-highlight {
    color: #FFB800 !important;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.9;
}

.footer-social h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-link:hover {
    background: #FFB800;
    color: #000;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.9;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #FFB800;
    padding-left: 5px;
}

.footer-links i {
    margin-right: 8px;
    color: #FFB800;
    width: 16px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

/* Scroll Top */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #0026CA;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 998;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 38, 202, 0.3);
}

.scroll-top:hover {
    background: #0052FF;
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}


/* Additional Icon Styles */
.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: #FFB800;
    color: #000;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.crown-icon {
    width: 16px;
    height: 16px;
}

.info-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 5px;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star-icon {
    width: 18px;
    height: 18px;
}

.contact-icon-clean {
    font-size: 32px;
}

.contact-icon-clean img {
    width: 40px;
    height: 40px;
}

.btn-icon-white {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.btn-cta-primary,
.btn-cta-secondary,
.btn-submit-clean {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Cart Icon in Navbar */
.navbar .nav-cart {
    position: relative;
    padding: 8px 12px !important;
}

.navbar .cart-icon {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain;
}

.navbar .cart-count-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ef5350;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* ================================================
   PORTFOLIO INTERACTIVE & HERO MOCKUP SHOWCASE
   ================================================ */

/* Portfolio Card - Original Style with Click */
.portfolio-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Portfolio Preview Modal */
.portfolio-modal {
    padding: 0 !important;
}

.portfolio-modal .modal-content {
    max-width: 100vw;
    max-height: 100vh;
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    border-radius: 0;
}

.portfolio-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
    height: 60px;
    flex-shrink: 0;
}

.portfolio-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.preview-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-open-new {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #0026CA;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-open-new:hover {
    background: #0052FF;
}

.btn-open-new .btn-icon-small {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.iframe-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 60px);
    background: #f5f5f5;
}

.iframe-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    z-index: 10;
}

.loader-icon {
    width: 64px;
    height: 64px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.iframe-loader p {
    font-size: 16px;
    color: #666;
}

#previewIframe {
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

/* Hero Mockup Showcase */
.mockup-showcase {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1000px;
}

.mockup-main {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.browser-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    background: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28ca42; }

.browser-url {
    flex: 1;
    background: white;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 13px;
    color: #666;
    border: 1px solid #e0e0e0;
}

.browser-content {
    background: #fafafa;
    overflow: hidden;
}

.mockup-screenshot {
    width: 100%;
    display: block;
}

/* Floating Mockups */
.mockup-float {
    position: absolute;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: transform 0.3s;
}

.mockup-float:hover {
    transform: scale(1.05) translateY(-5px) !important;
}

.mockup-float-1 {
    width: 200px;
    top: 50px;
    right: -20px;
    animation: floatAlt 7s ease-in-out infinite;
}

.mockup-float-2 {
    width: 180px;
    bottom: 80px;
    left: -30px;
    animation: floatAlt 8s ease-in-out infinite 1s;
}

.mockup-float-3 {
    width: 160px;
    top: 280px;
    right: 50px;
    animation: floatAlt 6s ease-in-out infinite 2s;
}

@keyframes floatAlt {
    0%, 100% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

.float-screenshot {
    width: 100%;
    display: block;
}

/* Decorative Badges */
.mockup-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: #222;
    animation: pulse 2s ease-in-out infinite;
}

.mockup-badge img {
    width: 24px;
    height: 24px;
}

.mockup-badge-1 {
    top: 20px;
    left: 20px;
}

.mockup-badge-2 {
    bottom: 40px;
    right: 20px;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
    .mockup-showcase {
        height: 400px;
    }
    
    .mockup-float {
        display: none;
    }
    
    .mockup-badge {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .mockup-badge img {
        width: 20px;
        height: 20px;
    }
    
    .portfolio-modal .modal-content {
        width: 100%;
        max-width: 100vw;
    }
    
    .iframe-container {
        height: calc(100vh - 80px);
    }
    
    .portfolio-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-preview,
    .btn-visit {
        width: 100%;
        justify-content: center;
    }
}

/* FAQ List Styling */
.faq-a p:first-child {
    padding-top: 20px;
}

.faq-a ul,
.faq-a ol {
    margin: 15px 0;
    padding-left: 25px;
}

.faq-a ul li,
.faq-a ol li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.faq-a strong {
    color: #0026CA;
    font-weight: 700;
}

.faq-a p {
    margin-bottom: 15px;
}

.faq-a p:last-child {
    margin-bottom: 0;
}

/* Contact Success Notification */
.contact-success-notification {
    position: fixed;
    top: 100px;
    right: -500px;
    max-width: 450px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10000;
    transition: right 0.4s ease;
    border-left: 5px solid #4CAF50;
}

.contact-success-notification.show {
    right: 30px;
}

.success-icon-notification {
    flex-shrink: 0;
}

.success-icon-notification img {
    width: 60px;
    height: 60px;
}

.success-content-notification h3 {
    font-size: 18px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 8px;
}

.success-content-notification p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.close-notification {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s;
}

.close-notification:hover {
    color: #333;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .contact-success-notification {
        max-width: 90%;
        right: -100%;
    }
    
    .contact-success-notification.show {
        right: 5%;
    }
}

/* ================================================
   RESPONSIVE MOBILE IMPROVEMENTS
   ================================================ */

/* Mobile First - Base Responsive (< 768px) */
@media (max-width: 768px) {
    
    /* Container */
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero-clean {
        padding: 100px 0 60px;
    }
    
    .hero-content-clean {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text-clean {
        max-width: 100%;
        margin-bottom: 40px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .badge-icon {
        width: 14px;
        height: 14px;
    }
    
    .hero-title-clean {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 20px;
    }
    
    .hero-subtitle-clean {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .hero-stats-clean {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .stat-box {
        width: 100%;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-primary-clean,
    .btn-outline-clean {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-features span {
        font-size: 13px;
    }
    
    .feature-icon {
        width: 16px;
        height: 16px;
    }
    
    /* Hero Mockup */
    .mockup-showcase {
        height: 350px;
    }
    
    .mockup-main {
        max-width: 100%;
    }
    
    .browser-header {
        padding: 8px 12px;
    }
    
    .browser-dots span {
        width: 8px;
        height: 8px;
    }
    
    .browser-url {
        font-size: 11px;
        padding: 4px 10px;
    }
    
    .mockup-float {
        display: none !important;
    }
    
    .mockup-badge {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .mockup-badge img {
        width: 18px;
        height: 18px;
    }
    
    /* Tech Section */
    .tech-section {
        padding: 40px 0;
    }
    
    .tech-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .tech-badge {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .tech-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Section Headers */
    .section-header-clean {
        margin-bottom: 40px;
    }
    
    .section-label {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 12px;
    }
    
    .section-title-clean {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .section-desc-clean {
        font-size: 15px;
        max-width: 100%;
    }
    
    /* Services */
    .services-clean {
        padding: 60px 0;
    }
    
    .services-grid-clean {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-box {
        padding: 30px 25px;
    }
    
    .service-icon img {
        width: 50px;
        height: 50px;
    }
    
    .service-box h3 {
        font-size: 20px;
        margin: 20px 0 12px;
    }
    
    .service-box p {
        font-size: 14px;
    }
    
    .service-list li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    /* Process */
    .process-clean {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .process-item {
        padding: 25px 20px;
    }
    
    .process-num {
        font-size: 14px;
        padding: 6px 14px;
    }
    
    .process-icon img {
        width: 50px;
        height: 50px;
        margin: 20px 0;
    }
    
    .process-item h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .process-item p {
        font-size: 14px;
    }
    
    /* Stats */
    .stats-clean {
        padding: 50px 0;
    }
    
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .stat-item-clean {
        padding: 25px 15px;
    }
    
    .stat-icon-clean img {
        width: 40px;
        height: 40px;
    }
    
    .stat-value {
        font-size: 32px;
        margin: 15px 0 8px;
    }
    
    .stat-text {
        font-size: 13px;
    }
    
    /* Pricing */
    .pricing-clean {
        padding: 60px 0;
    }
    
    .pricing-grid-clean {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .price-box {
        padding: 30px 25px;
    }
    
    .price-header-clean h3 {
        font-size: 24px;
    }
    
    .price-header-clean p {
        font-size: 13px;
    }
    
    .price-value {
        margin: 25px 0;
    }
    
    .price-currency {
        font-size: 18px;
    }
    
    .price-number {
        font-size: 40px;
    }
    
    .price-suffix {
        font-size: 16px;
    }
    
    .price-list {
        margin-bottom: 25px;
    }
    
    .price-list li {
        font-size: 14px;
        padding: 10px 0;
    }
    
    .popular-tag,
    .featured-label {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .crown-icon {
        width: 14px;
        height: 14px;
    }
    
    .pricing-note-clean {
        font-size: 13px;
        padding: 15px 20px;
        margin-top: 30px;
    }
    
    .info-icon {
        width: 18px;
        height: 18px;
    }
    
    /* Portfolio */
    .portfolio-clean {
        padding: 60px 0;
    }
    
    .portfolio-filter-clean {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn-clean {
        padding: 10px 16px;
        font-size: 13px;
        flex: 1 1 calc(50% - 5px);
        min-width: calc(50% - 5px);
    }
    
    .portfolio-grid-clean {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .portfolio-card {
        border-radius: 12px;
    }
    
    .portfolio-info {
        padding: 20px;
    }
    
    .portfolio-info h4 {
        font-size: 18px;
    }
    
    .portfolio-info p {
        font-size: 13px;
    }
    
    .portfolio-tags-clean {
        gap: 6px;
    }
    
    .portfolio-tags-clean span {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    /* Testimonials */
    .testimonials-clean {
        padding: 60px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonial-box {
        padding: 25px 20px;
    }
    
    .stars {
        margin-bottom: 15px;
    }
    
    .star-icon {
        width: 16px;
        height: 16px;
    }
    
    .testimonial-box p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .testimonial-author-clean h4 {
        font-size: 15px;
    }
    
    .testimonial-author-clean span {
        font-size: 12px;
    }
    
    /* FAQ */
    .faq-clean {
        padding: 60px 0;
    }
    
    .faq-list {
        gap: 15px;
    }
    
    .faq-box {
        border-radius: 10px;
    }
    
    .faq-q {
        padding: 20px 20px;
    }
    
    .faq-q h4 {
        font-size: 15px;
        line-height: 1.5;
        padding-right: 10px;
    }
    
    .faq-toggle {
        font-size: 22px;
        min-width: 25px;
    }
    
    .faq-a p {
        padding: 0 20px;
        font-size: 14px;
        line-height: 1.7;
    }
    
    .faq-a p:first-child {
        padding-top: 15px;
    }
    
    .faq-a p:last-child {
        padding-bottom: 20px;
    }
    
    .faq-a ul,
    .faq-a ol {
        padding: 0 20px 0 45px;
        margin: 10px 0;
    }
    
    .faq-a ul li,
    .faq-a ol li {
        font-size: 13px;
        margin-bottom: 8px;
        line-height: 1.6;
    }
    
    /* CTA */
    .cta-clean {
        padding: 60px 0;
    }
    
    .cta-box-clean {
        padding: 40px 25px;
        border-radius: 15px;
    }
    
    .cta-box-clean h2 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .cta-box-clean p {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .cta-buttons-clean {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        justify-content: center;
    }
    
    .cta-features-clean {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-features-clean span {
        font-size: 13px;
    }
    
    /* Contact */
    .contact-clean {
        padding: 60px 0;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info-clean {
        width: 100%;
    }
    
    .contact-info-clean h3 {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .contact-box-clean {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .contact-icon-clean img {
        width: 35px;
        height: 35px;
    }
    
    .contact-box-clean h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }
    
    .contact-box-clean p {
        font-size: 14px;
    }
    
    .contact-form-clean {
        width: 100%;
        padding: 30px 25px;
    }
    
    .form-row-clean {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row-clean input,
    .form-row-clean select,
    .contact-form-clean textarea {
        width: 100%;
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .contact-form-clean textarea {
        min-height: 130px;
    }
    
    .btn-submit-clean {
        width: 100%;
        padding: 14px 24px;
        font-size: 15px;
        justify-content: center;
    }
    
    .btn-icon-white {
        width: 18px;
        height: 18px;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .container {
        padding: 0 30px;
    }
    
    .hero-title-clean {
        font-size: 42px;
    }
    
    .hero-subtitle-clean {
        font-size: 18px;
    }
    
    .services-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-featured {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .price-popular {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .portfolio-grid-clean {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    
    .container {
        padding: 0 15px;
    }
    
    .hero-title-clean {
        font-size: 28px;
    }
    
    .hero-subtitle-clean {
        font-size: 15px;
    }
    
    .section-title-clean {
        font-size: 24px;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .filter-btn-clean {
        flex: 1 1 100%;
        min-width: 100%;
    }
    
    .price-value {
        margin: 20px 0;
    }
    
    .price-number {
        font-size: 36px;
    }
    
    .cta-box-clean h2 {
        font-size: 22px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .tech-badge {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .mockup-showcase {
        height: 280px;
    }
    
    .mockup-badge {
        font-size: 9px;
        padding: 5px 8px;
    }
}

/* Landscape Mobile */
@media (max-width: 896px) and (orientation: landscape) {
    
    .hero-clean {
        padding: 80px 0 50px;
    }
    
    .hero-content-clean {
        flex-direction: row;
    }
    
    .hero-text-clean {
        max-width: 50%;
    }
    
    .mockup-showcase {
        height: 400px;
    }
}


/* ================================================
   FOOTER RESPONSIVE
   ================================================ */

/* Mobile Footer (< 768px) */
@media (max-width: 768px) {
    
    /* Footer Wave */
    .footer-wave {
        height: 60px;
    }
    
    .footer-wave svg {
        height: 60px;
    }
    
    /* Footer Content */
    .footer-content {
        padding: 40px 0 30px;
    }
    
    /* Footer Grid - Stack Vertically */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    /* Footer Column */
    .footer-col {
        padding: 0;
    }
    
    /* Footer Logo */
    .footer-logo {
        margin-bottom: 15px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    /* Footer Description */
    .footer-desc {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
        padding: 0 20px;
    }
    
    /* Footer Social */
    .footer-social h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    /* Footer Headings */
    .footer-col h3 {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
    
    /* Footer Links */
    .footer-links {
        padding: 0;
    }
    
    .footer-links li {
        font-size: 14px;
        padding: 8px 0;
        justify-content: center;
    }
    
    .footer-links li i {
        font-size: 14px;
        margin-right: 8px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    /* Footer Bottom */
    .footer-bottom {
        margin-top: 35px;
        padding-top: 25px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
        padding: 0 15px;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    /* Scroll to Top */
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    
    .footer-content {
        padding: 30px 0 25px;
    }
    
    .footer-grid {
        gap: 30px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .footer-desc {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .footer-social h4 {
        font-size: 14px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .footer-col h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-links li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .footer-links li i {
        font-size: 13px;
        margin-right: 6px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 11px;
        padding: 0 10px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
    
    .scroll-top {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* Tablet Footer (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-col:first-child .footer-social {
        justify-content: center;
    }
    
    .footer-col:first-child .social-links {
        justify-content: center;
    }
    
    .footer-desc {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}