/* =============================================
   SAKTIFY DESIGN SYSTEM
   Company Profile Website Styles
   ============================================= */

/* =============================================
   1. ROOT VARIABLES & COLORS
   ============================================= */
:root {
    /* Primary Colors */
    --primary-dark: #0b4962;
    --primary-teal: #31a2a8;
    --accent-orange: #ff8c42;
    --accent-red: #e74c3c;
    --whatsapp-green: #25D366;
    --gradient: linear-gradient(135deg, #31a2a8 0%, #0b4962 100%);
    --gradient-light: linear-gradient(135deg, #4db8be 0%, #1a5f72 100%);
    
    /* Neutrals */
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-muted: #6B7280;
    --light-bg: #F8F9FC;
    --light-gray: #E8EBF2;
    --card-bg: #FFFFFF;
    
    /* Semantic */
    --success: #28a745;
    --warning: #FFA500;
    --danger: #dc3545;
    --info: #0b4962;
    
    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(49, 162, 168, 0.15);
}

/* =============================================
   2. GLOBAL STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-bg);
    overflow-x: hidden;
}

/* =============================================
   3. TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =============================================
   4. BUTTONS
   ============================================= */
.btn-cta {
    background: var(--gradient);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(49, 162, 168, 0.4);
    color: white;
}

.btn-outline-custom {
    background: transparent;
    border: 2px solid var(--primary-teal);
    padding: 12px 32px;
    border-radius: 50px;
    color: var(--primary-teal);
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-outline-custom:hover {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

/* =============================================
   5. NAVBAR
   ============================================= */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    background: white !important;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 24px;
    font-weight: 800;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-teal);
    background: rgba(49, 162, 168, 0.08);
}

/* =============================================
   6. HERO SECTION
   ============================================= */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(49, 162, 168, 0.05) 0%, rgba(94, 108, 231, 0.05) 100%);
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(49, 162, 168, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(94, 108, 231, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
}

.hero-badge {
    background: rgba(49, 162, 168, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--primary-teal);
    border: 1px solid rgba(49, 162, 168, 0.2);
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.trust-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.trust-text span {
    font-size: 13px;
    color: var(--text-muted);
}

/* =============================================
   7. HERO IMAGE & MOCKUP
   ============================================= */
.hero-image-wrapper {
    position: relative;
    padding: 40px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

.floating-card i {
    font-size: 20px;
    color: var(--primary-teal);
}

.floating-card.card-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 50%;
    right: -20px;
    animation-delay: 1s;
}

.floating-card.card-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 2s;
}

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

/* Browser Mockup */
.hero-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.mockup-browser {
    background: white;
}

.browser-bar {
    background: var(--light-gray);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.browser-url {
    flex: 1;
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.browser-content {
    padding: 32px;
    min-height: 400px;
}

.content-header {
    height: 60px;
    background: var(--gradient);
    border-radius: 12px;
    margin-bottom: 24px;
}

.content-line {
    height: 12px;
    background: var(--light-gray);
    border-radius: 6px;
    margin-bottom: 12px;
}

.content-line.short {
    width: 60%;
}

/* =============================================
   8. SECTIONS
   ============================================= */
.section-badge {
    background: rgba(49, 162, 168, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    color: var(--primary-teal);
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

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

/* =============================================
   9. FEATURE CARDS
   ============================================= */
.feature-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
}

/* =============================================
   10. PROCESS CARDS
   ============================================= */
.process-card {
    background: white;
    padding: 32px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.process-number {
    width: 48px;
    height: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-icon {
    width: 64px;
    height: 64px;
    background: rgba(49, 162, 168, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 32px;
    margin: 0 auto 16px;
}

.process-arrow {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    color: var(--primary-teal);
    font-size: 24px;
    z-index: 1;
}

/* =============================================
   11. PORTFOLIO CARDS
   ============================================= */
.portfolio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 4, 37, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 24px;
}

.portfolio-category {
    background: rgba(49, 162, 168, 0.1);
    color: var(--primary-teal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

/* =============================================
   11b. TEMPLATE CARDS (Inspirasi Template)
   ============================================= */
.template-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.template-card-link:hover {
    color: inherit;
}

.template-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.template-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.template-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

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

.template-card:hover .template-image img {
    transform: scale(1.08);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 73, 98, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-badge-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gradient);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.template-badge-label.best-seller {
    background: linear-gradient(135deg, #ff8c42 0%, #e74c3c 100%);
}

.template-info {
    padding: 24px;
}

.template-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.template-tag {
    background: var(--light-bg);
    color: var(--text-muted);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid var(--light-gray);
}

.template-step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(49, 162, 168, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-teal);
    font-size: 24px;
}

/* =============================================
   12. PRICING CARDS
   ============================================= */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border: 3px solid var(--primary-teal);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-price {
    text-align: center;
    margin: 24px 0;
}

.pricing-price .currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
}

.pricing-price .amount {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.pricing-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    font-size: 20px;
}

/* =============================================
   13. TESTIMONIAL CARDS
   ============================================= */
.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

/* =============================================
   14. CTA SECTION
   ============================================= */
.cta-card {
    background: var(--gradient);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-hover);
}

/* =============================================
   15. FOOTER
   ============================================= */
.footer {
    background: var(--primary-dark) !important;
}

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

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

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

.footer-links a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-teal);
    font-size: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient);
    transform: translateY(-3px);
}

/* =============================================
   16. RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .hero-image-wrapper {
        margin-top: 40px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 16px;
    }
    
    .process-arrow {
        display: none;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn-cta, .btn-outline-custom {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .feature-card,
    .process-card,
    .testimonial-card {
        padding: 24px;
    }
    
    .feature-icon,
    .process-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .floating-card {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .floating-card i {
        font-size: 16px;
    }
    
    .cta-card {
        padding: 40px 24px;
    }
    
    .pricing-price .amount {
        font-size: 36px;
    }
}

/* =============================================
   17. UTILITIES
   ============================================= */
.bg-light {
    background-color: var(--light-bg) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* =============================================
   18. COLOR UTILITIES
   ============================================= */
.text-primary {
    color: var(--primary-teal) !important;
}

.text-teal {
    color: var(--primary-teal) !important;
}

.text-purple {
    color: var(--primary-teal) !important;
}

.text-dark-blue {
    color: var(--primary-dark) !important;
}

.text-orange {
    color: var(--accent-orange) !important;
}

.bg-primary {
    background: var(--gradient) !important;
}

.bg-teal {
    background-color: var(--primary-teal) !important;
}

.border-primary {
    border-color: var(--primary-teal) !important;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green) !important;
    border-color: var(--whatsapp-green) !important;
}

.btn-whatsapp:hover {
    background-color: #1ea952 !important;
    border-color: #1ea952 !important;
}

/* =============================================
   19. WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.4);
    color: #FFF;
}

.whatsapp-float i {
    line-height: 60px;
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }

    .whatsapp-float i {
        line-height: 50px;
    }
}

/* =============================================
   20. HERO REDESIGN - Full Background Image
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 73, 98, 0.92) 0%, rgba(49, 162, 168, 0.85) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .hero-title,
.hero-section .hero-subtitle,
.hero-section .hero-badge {
    color: white;
}

.hero-section .hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
}

.hero-section .hero-badge {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    color: white;
}

.hero-section .gradient-text {
    background: linear-gradient(135deg, #4db8be 0%, #a0e4e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: white;
    display: block;
}

.hero-stat .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

/* =============================================
   21. COMPACT FEATURE CARDS WITH IMAGES
   ============================================= */
.feature-img-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-img-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-img-card .card-img {
    height: 180px;
    overflow: hidden;
}

.feature-img-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-img-card:hover .card-img img {
    transform: scale(1.05);
}

.feature-img-card .card-body {
    padding: 24px;
}

/* =============================================
   22. PROCESS TIMELINE
   ============================================= */
.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    position: relative;
}

.timeline-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.timeline-content h5 {
    margin-bottom: 4px;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 14px;
}

/* =============================================
   23. PRICING TOGGLE (Lihat Detail)
   ============================================= */
.pricing-hidden {
    display: none;
}

.pricing-hidden.show {
    display: block;
}

.pricing-toggle-btn {
    background: none;
    border: none;
    color: var(--primary-teal);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    width: 100%;
    justify-content: center;
}

.pricing-toggle-btn:hover {
    color: var(--primary-dark);
}

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

.pricing-toggle-btn.active i {
    transform: rotate(180deg);
}

/* =============================================
   24. ADD-ON CARDS WITH IMAGES
   ============================================= */
.addon-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.addon-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.addon-card .addon-img {
    height: 140px;
    overflow: hidden;
}

.addon-card .addon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.addon-card .addon-body {
    padding: 20px;
    text-align: center;
}

/* =============================================
   25. FOOTER FIXES
   ============================================= */
.footer h6,
.footer h5 {
    color: white !important;
}

.footer .footer-logo {
    filter: brightness(10);
}

/* =============================================
   26. ENHANCED RESPONSIVE - MOBILE
   ============================================= */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 26px !important;
    }

    .hero-subtitle {
        font-size: 15px !important;
    }

    .hero-stats {
        gap: 20px;
        justify-content: center;
    }

    .hero-stat .stat-number {
        font-size: 22px;
    }

    .section-title {
        font-size: 22px !important;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

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

    .cta-card {
        padding: 32px 20px;
    }

    .cta-card h2 {
        font-size: 22px;
    }

    .navbar-nav {
        padding: 16px 0;
    }

    .navbar-nav .nav-item {
        margin-bottom: 4px;
    }

    .navbar-nav .nav-link {
        padding: 10px 16px;
    }

    .btn-cta, .btn-outline-custom {
        padding: 10px 20px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    .feature-img-card .card-img {
        height: 160px;
    }

    .feature-img-card .card-body {
        padding: 20px;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-info {
        padding: 16px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .contact-info-card {
        padding: 24px;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .page-header {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }

    .page-header h1 {
        font-size: 24px !important;
    }

    .footer {
        padding-top: 40px !important;
    }

    .footer .row > div {
        margin-bottom: 24px;
    }

    .accordion-button {
        font-size: 14px;
        padding: 14px 16px;
    }

    .accordion-body {
        font-size: 14px;
        padding: 12px 16px;
    }

    .whatsapp-float {
        width: 48px;
        height: 48px;
        bottom: 16px;
        right: 16px;
        font-size: 26px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .hero-title {
        font-size: 32px !important;
    }

    .hero-stats {
        gap: 28px;
    }

    .section-title {
        font-size: 26px !important;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

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

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

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
}
