/*
Theme Name: Jasa Website Murah
Theme URI: https://jasawebsitemurah.id
Author: Jasa Website Murah Team
Author URI: https://jasawebsitemurah.id
Description: Theme WordPress untuk bisnis jasa pembuatan website murah, profesional, dan SEO friendly. Dilengkapi dengan custom post types untuk Portfolio, Testimonial, Services, dan Paket Harga. Fully responsive dengan desain modern.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: jasa-website-murah
Domain Path: /languages
Tags: business, portfolio, responsive, seo-friendly, custom-menu, custom-logo, theme-options, translation-ready

This theme is built for WordPress 5.0+ and PHP 7.4+
*/

/* ========================================
   BASE STYLES
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
}

/* ========================================
   WORDPRESS DEFAULT STYLES
   ======================================== */

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5em;
}

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item {
    max-width: 50%;
}

.gallery-columns-3 .gallery-item {
    max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
    max-width: 25%;
}

.gallery-caption {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.site-header.transparent {
    background: transparent;
    box-shadow: none;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text .brand-name {
    font-weight: 700;
    font-size: 1.125rem;
}

.site-header.scrolled .logo-text .brand-name {
    color: #111827;
}

.main-navigation {
    display: none;
}

@media (min-width: 1024px) {
    .main-navigation {
        display: block;
    }
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.main-navigation a {
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #2563eb;
}

.site-header.transparent .main-navigation a {
    color: rgba(255, 255, 255, 0.9);
}

.site-header.transparent .main-navigation a:hover {
    color: white;
}

.site-header.scrolled .main-navigation a {
    color: #374151;
}

.site-header.scrolled .main-navigation a:hover {
    color: #2563eb;
}

.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: block;
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: block;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background: #eff6ff;
    color: #2563eb;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a, #312e81, #581c87);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
}

.hero-shape-1 {
    top: 5rem;
    left: 2.5rem;
    width: 18rem;
    height: 18rem;
    background: #3b82f6;
    animation: pulse 3s ease-in-out infinite;
}

.hero-shape-2 {
    bottom: 5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: #a855f7;
    animation: pulse 3s ease-in-out infinite 1s;
}

.hero-shape-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50rem;
    height: 50rem;
    background: #6366f1;
    opacity: 0.1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1rem 4rem;
}

.hero-grid-layout {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.hero-badge .pulse {
    width: 0.5rem;
    height: 0.5rem;
    background: white;
    border-radius: 50%;
    position: relative;
}

.hero-badge .pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: white;
    border-radius: 50%;
    opacity: 0.5;
    animation: ping 1.5s ease-out infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title .gradient-text {
    display: block;
    background: linear-gradient(135deg, #60a5fa, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 36rem;
}

.hero-description .highlight {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.25rem;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    color: white;
    font-size: 0.875rem;
}

.hero-feature-item svg {
    width: 1rem;
    height: 1rem;
    color: #4ade80;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #22c55e;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 9999px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Stats */
.hero-stats {
    display: none;
}

@media (min-width: 1024px) {
    .hero-stats {
        display: block;
    }
}

.hero-stats-grid {
    display: grid;
    gap: 1.5rem;
    position: relative;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-stat-card .stat-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-stat-card .stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-card .stat-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: white;
}

.hero-stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

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

/* Mobile Stats */
.mobile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .mobile-stats {
        display: none;
    }
}

.mobile-stat-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.mobile-stat-item .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ========================================
   SECTION STYLES
   ======================================== */

.section {
    padding: 1rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 2rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-section {
    background: white;
}

.services-section .section-badge {
    background: #dbeafe;
    color: #2563eb;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #2563eb;
}

.service-description {
    color: #6b7280;
    line-height: 1.6;
}

/* ========================================
   WHY CHOOSE US SECTION
   ======================================== */

.why-choose-section {
    background: #f9fafb;
}

.why-choose-section .section-badge {
    background: #e0e7ff;
    color: #4f46e5;
}

.why-choose-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.why-choose-content .gradient-text {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-choose-content p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.benefits-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.benefits-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-check {
    width: 1.5rem;
    height: 1.5rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-check {
    background: #22c55e;
}

.benefit-check svg {
    width: 1rem;
    height: 1rem;
    color: #16a34a;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-check svg {
    color: white;
}

.benefit-text {
    color: #374151;
}

.cta-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
    border-radius: 1rem;
    border: 1px solid #dbeafe;
}

.cta-box p {
    color: #374151;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cta-box .highlight {
    color: #2563eb;
    font-weight: 600;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-section {
    background: white;
}

.pricing-section .section-badge {
    background: #dcfce7;
    color: #16a34a;
}

.pricing-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.5s ease;
}

.pricing-card.popular {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.05);
}

.pricing-card:not(.popular) {
    background: white;
    border: 1px solid #e5e7eb;
}

.pricing-card:not(.popular):hover {
    border-color: #93c5fd;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #fbbf24;
    color: #78350f;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card.popular .pricing-name {
    color: white;
}

.pricing-card:not(.popular) .pricing-name {
    color: #111827;
}

.pricing-description {
    font-size: 0.875rem;
}

.pricing-card.popular .pricing-description {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card:not(.popular) .pricing-description {
    color: #6b7280;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
}

.pricing-card.popular .original-price {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card:not(.popular) .original-price {
    color: #9ca3af;
}

.discount-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

.pricing-card.popular .discount-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-card:not(.popular) .discount-badge {
    background: #dcfce7;
    color: #16a34a;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.125rem;
}

.pricing-card.popular .currency {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card:not(.popular) .currency {
    color: #6b7280;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-card.popular .amount {
    color: white;
}

.pricing-card:not(.popular) .amount {
    color: #111827;
}

.pricing-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-card.popular .pricing-cta {
    background: white;
    color: #2563eb;
}

.pricing-card.popular .pricing-cta:hover {
    background: #f3f4f6;
}

.pricing-card:not(.popular) .pricing-cta {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
}

.pricing-card:not(.popular) .pricing-cta:hover {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

/* Pricing Table */
.pricing-table-wrapper {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.pricing-table-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.pricing-table-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
}

.pricing-table thead th {
    background: #f9fafb;
    font-weight: 600;
    color: #111827;
}

.pricing-table tbody tr {
    border-top: 1px solid #f3f4f6;
}

.pricing-table tbody tr:hover {
    background: #f9fafb;
}

.pricing-table td:first-child {
    font-weight: 500;
    color: #374151;
}

.pricing-table td {
    text-align: center;
    color: #6b7280;
}

.pricing-table .check {
    color: #22c55e;
}

.pricing-table .cross {
    color: #d1d5db;
}

.pricing-table .highlight-col {
    background: #eff6ff;
}

.pricing-cta-bottom {
    text-align: center;
    margin-top: 3rem;
}

.pricing-cta-bottom p {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Pricing Comparison Table */
.pricing-comparison-wrapper {
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.comparison-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 2rem;
}

.pricing-comparison-table {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    border: 1px solid #e5e7eb;
}

.pricing-comparison-table table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.pricing-comparison-table thead {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
}

.pricing-comparison-table th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
    font-size: 1rem;
}

.pricing-comparison-table th.feature-col {
    text-align: left;
    color: #111827;
    font-size: 1.125rem;
}

.pricing-comparison-table th.package-col {
    color: #2563eb;
}

.pricing-comparison-table th.package-col.business {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
    font-weight: 700;
}

.pricing-comparison-table tbody tr {
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s ease;
}

.pricing-comparison-table tbody tr:hover {
    background: #f9fafb;
}

.pricing-comparison-table td {
    padding: 1rem;
    text-align: center;
    color: #4b5563;
    font-size: 0.9375rem;
}

.pricing-comparison-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: #374151;
}

.pricing-comparison-table .check {
    color: #10b981;
    font-size: 1.25rem;
    font-weight: 700;
}

.pricing-comparison-table .cross {
    color: #d1d5db;
    font-size: 1.25rem;
}

.comparison-note {
    text-align: center;
    color: #6b7280;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.btn-consult {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 auto;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #93c5fd;
    color: #2563eb;
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    width: fit-content;
}

.btn-consult:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
}

@media (max-width: 768px) {
    .comparison-title {
        font-size: 1.5rem;
    }
    
    .pricing-comparison-table {
        font-size: 0.875rem;
    }
    
    .pricing-comparison-table th,
    .pricing-comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

/* ========================================
   PORTFOLIO SECTION
   ======================================== */

.portfolio-section {
    background: #f9fafb;
}

.portfolio-section .section-badge {
    background: #f3e8ff;
    color: #9333ea;
}

.portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:not(.active) {
    background: white;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.filter-btn:not(.active):hover {
    background: #f3f4f6;
}

.filter-btn.active {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.portfolio-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.portfolio-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.portfolio-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.portfolio-image {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

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

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

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.portfolio-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.category-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.portfolio-view-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .portfolio-view-btn {
    opacity: 1;
}

.portfolio-view-btn span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #111827;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.portfolio-card:hover .portfolio-title {
    color: #2563eb;
}

.portfolio-description {
    color: #6b7280;
    font-size: 0.875rem;
}

.portfolio-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background: white;
}

.testimonials-section .section-badge {
    background: #fef3c7;
    color: #d97706;
}

.testimonial-carousel {
    position: relative;
    max-width: 56rem;
    margin: 0 auto 5rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #eff6ff, #eef2ff);
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
}

.testimonial-quote-icon {
    position: absolute;
    top: 2rem;
    left: 2rem;
}

.testimonial-quote-icon svg {
    width: 3rem;
    height: 3rem;
    color: #bfdbfe;
}

.testimonial-content {
    text-align: center;
    padding-top: 2rem;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
    fill: #fbbf24;
}

.testimonial-text {
    font-size: 1.25rem;
    color: #374151;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .testimonial-text {
        font-size: 1.5rem;
    }
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 700;
    color: #111827;
}

.author-company {
    color: #6b7280;
    font-size: 0.875rem;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -1rem;
    right: -1rem;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

@media (min-width: 1024px) {
    .testimonial-nav {
        left: -4rem;
        right: -4rem;
    }
}

.testimonial-nav-btn {
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: #f3f4f6;
}

.testimonial-nav-btn svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #374151;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    border: none;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: #2563eb;
    width: 2rem;
    border-radius: 9999px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: #6b7280;
    font-size: 0.875rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background: #f9fafb;
}

.faq-section .section-badge {
    background: #cffafe;
    color: #0891b2;
}

.faq-list {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: #6b7280;
    line-height: 1.7;
}

.faq-cta {
    max-width: 56rem;
    margin: 3rem auto 0;
    text-align: center;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border-radius: 1.5rem;
    padding: 2rem;
}

.faq-cta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.faq-cta .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    background: white;
    color: #2563eb;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
}

.faq-cta .btn-white:hover {
    background: #f3f4f6;
}

/* ========================================
   BLOG SECTION
   ======================================== */

.blog-section {
    background: white;
}

.blog-section .section-badge {
    background: #ffe4e6;
    color: #e11d48;
}

.blog-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.blog-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-0.5rem);
}

.blog-image {
    position: relative;
    height: 13rem;
    overflow: hidden;
}

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

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

.blog-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-image-overlay {
    opacity: 1;
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.blog-category span {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: #374151;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-meta svg {
    width: 1rem;
    height: 1rem;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover,
.blog-card:hover .blog-title a {
    color: #2563eb;
}

.blog-excerpt {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #2563eb;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    gap: 0.5rem;
}

.blog-read-more svg {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover svg {
    transform: translateX(0.25rem);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-section {
    background: #f9fafb;
}

.contact-section .section-badge {
    background: #e0e7ff;
    color: #4f46e5;
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 2fr 3fr;
    }
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #f3f4f6;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-info-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.contact-info-value {
    font-weight: 600;
    color: #111827;
}

.contact-whatsapp-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 1rem;
    color: white;
}

.contact-whatsapp-box h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-whatsapp-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group label .required {
    color: #ef4444;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-group .input-with-icon {
    position: relative;
}

.form-group .input-with-icon svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
}

.form-group .input-with-icon .form-control {
    padding-left: 3rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 6rem;
}

.form-submit {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    background: linear-gradient(135deg, #1d4ed8, #4338ca);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* ========================================
   SINGLE POST & SIDEBAR
   ======================================== */

.single-layout {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.single-content {
    flex: 1;
    max-width: 65%;
}

.widget-area {
    width: 35%;
    flex-shrink: 0;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.widget {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e7eb;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e7eb;
}

.sidebar-post-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f3f4f6;
}

.sidebar-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-content {
    flex: 1;
}

.sidebar-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.sidebar-post-title a {
    color: #374151;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-post-title a:hover {
    color: #2563eb;
}

.sidebar-post-meta {
    font-size: 0.75rem;
    color: #9ca3af;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    border-radius: 0.5rem;
    color: #374151;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background: #f3f4f6;
    color: #2563eb;
}

.category-list .count {
    color: #9ca3af;
    font-size: 0.875rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: #f3f4f6;
    color: #4b5563;
    border-radius: 9999px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #2563eb;
    color: white;
}

.widget-cta {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    border: none;
}

.widget-cta-inner {
    text-align: center;
}

.widget-cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.widget-cta-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.widget-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: #2563eb;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-cta-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .single-layout {
        flex-direction: column;
    }
    
    .single-content,
    .widget-area {
        max-width: 100%;
        width: 100%;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
    }
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
    background: #111827;
    color: white;
}

.footer-main {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: 1 / 2;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #4f46e5);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon span {
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-logo-text {
    line-height: 1.2;
}

.footer-logo-text .brand-name {
    font-weight: 700;
    font-size: 1.125rem;
}

.footer-logo-text .brand-tagline {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-description {
    color: #9ca3af;
    max-width: 20rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
}

.footer-contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #3b82f6;
}

.footer-column h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #1f2937;
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    text-align: center;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    background: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #2563eb;
    color: white;
}

.footer-social svg {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-made-with {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-made-with .heart {
    color: #ef4444;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.4;
    }
}

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

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Fade In Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Print Styles */
@media print {
    .site-header,
    .hero-wave,
    .mobile-menu-toggle,
    .testimonial-nav,
    .btn-primary,
    .btn-whatsapp,
    .btn-outline {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}
