/*
Theme Name: Apploka Professional
Author: Antigravity AI
Description: A very premium, modern, and clean WordPress theme for Apploka.
Version: 1.0.0
*/

:root {
    --primary: #2563EB;
    --primary-hover: #1d4ed8;
    --secondary: #7C3AED;
    --background: #F8FAFC;
    --text-main: #111827;
    --text-muted: #6B7280;
    --white: #ffffff;
    --container-width: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    font-weight: 800;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar Profesional */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #E5E7EB;
    height: 80px;
}

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

.site-branding {
    display: flex;
    flex-direction: column;
}

.site-title-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    line-height: 1.2;
}

.site-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.logo img {
    height: 45px;
    width: auto;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
}

.nav-cta-btn {
    background: var(--primary);
    color: white !important;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
}

/* Footer Profesional (Dark) */
.site-footer {
    background: #111827;
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-col p {
    opacity: 0.8;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9375rem;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
    text-align: center;
    font-size: 0.875rem;
    color: #9CA3AF;
}

@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
    .header-inner { flex-direction: column; height: auto; padding: 1rem 0; gap: 1rem; }
    .main-nav ul { display: none; } /* Hide menu on mobile simple theme */
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

.btn-whatsapp {
    background: #22c55e !important;
    color: white !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 6px -1px rgba(34, 197, 94, 0.2);
}

.btn-whatsapp:hover {
    background: #16a34a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3) !important;
}

/* Hero Section */
/* Hero Section - Final Professional */
.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.03) 0%, rgba(255, 255, 255, 1) 90%);
    padding: 8rem 0 3rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left !important;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    margin-left: 0 !important;
    line-height: 1.6;
}

.hero-mockup img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
    border-radius: 20px;
}

@media (max-width: 992px) {
    .hero-layout { grid-template-columns: 1fr; text-align: center; }
    .hero-content { text-align: center !important; }
    .hero p { margin-left: auto !important; margin-right: auto !important; }
    .hero-mockup { display: none; }
}

/* Section Common */
.section-padding { padding: 4.5rem 0; }
.section-head { margin-bottom: 2.5rem; }
.section-head h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; }

/* Keunggulan Grid */
.excellence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.excellence-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.excellence-card:hover { transform: translateY(-5px); }
.excellence-card h4 { margin: 1rem 0 0.5rem; }

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

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-secondary:hover {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.75rem; }
    .hero p { font-size: 1.125rem; }
    .hero-ctas { flex-direction: column; }
}

/* About Section */
.about {
    padding: 8rem 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-title-tag {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.about h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about { padding: 4rem 0; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about h2 { font-size: 2.25rem; }
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* Portfolio Section */
.portfolio {
    padding: 8rem 0;
    background: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #f1f5f9;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.portfolio-overlay span {
    font-size: 0.875rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* Contact CTA Section */
.contact-cta {
    padding: 10rem 0;
    background: var(--bg-gradient);
    text-align: center;
}

.cta-box {
    background: var(--primary);
    color: white;
    padding: 6rem 4rem;
    border-radius: 40px;
    box-shadow: 0 40px 60px -15px rgba(37, 99, 235, 0.3);
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-box p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: #f1f5f9;
}

@media (max-width: 768px) {
    .cta-box { padding: 4rem 2rem; }
    .cta-box h2 { font-size: 2.25rem; }
}

/* Inner Page Header */
.page-header {
    background: #f8fafc;
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Page Section padding */
.page-section {
    padding: 5rem 0;
    max-width: 1100px;
    margin: 0 auto;
}

/* Visi & Misi Styles */
.visi-misi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 0;
}

.visi-box {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.misi-list {
    list-style: none;
}

.misi-list li {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0,0,0,0.03);
    font-size: 0.9375rem;
}

.misi-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* Values Grid - Detailed */
.values-grid-detailed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
}

.value-card h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pendekatan Kerja */
.pendekatan-list {
    margin-top: 2rem;
    display: grid;
    gap: 1.5rem;
}

.pendekatan-step {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.step-circle {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-text {
    font-size: 1.125rem;
    font-weight: 600;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem;
    background: #f8fafc;
    border-radius: 20px;
}

.value-item h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0px;
}

@media (max-width: 768px) {
    .visi-misi-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
}

/* Service Detail Layout */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.detail-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.detail-card:hover::before {
    opacity: 1;
}

.detail-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.detail-card ul li {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-card ul li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
}

/* Process Flow */
.process-section {
    background: #0f172a;
    color: white;
    padding: 8rem 0;
    border-radius: 40px;
    margin: 6rem 1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 800;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.875rem;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .process-grid { grid-template-columns: 1fr; gap: 3rem; }
    .service-detail-grid { grid-template-columns: 1fr; }
}

/* Service Card Specifics */
.detail-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.feature-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 1.5px solid var(--primary);
    border-radius: 50%;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-card h4 {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; }
}
/* Portfolio Page Grid - Detailed */
.portfolio-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.portfolio-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.portfolio-img-container {
    padding: 24px 24px 0;
}

.portfolio-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f1f5f9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.portfolio-card-content {
    padding: 24px;
    flex-grow: 1;
}

.portfolio-card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.project-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-features-list {
    margin-bottom: 1.5rem;
}

.project-features-list h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.project-features-list ul {
    list-style: none;
    font-size: 0.8125rem;
    color: var(--text-muted);
    padding: 0;
}

.project-features-list li {
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-features-list li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tech-tag {
    background: #f1f5f9;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-main);
}

.portfolio-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.btn-sm {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

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

@media (max-width: 640px) {
    .portfolio-page-grid { grid-template-columns: 1fr; }
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

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

.info-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.05);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.info-text p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Styled Form Placeholders */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128c7e;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.floating-wa svg {
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    .floating-wa svg {
        width: 25px;
        height: 25px;
    }
}

/* Post Carousel Styles */
.post-carousel-section {
    padding: 8rem 0;
    background: var(--white);
}

.swiper {
    width: 100%;
    padding: 2rem 0 4rem !important;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

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

.post-card-img {
    aspect-ratio: 16/9;
    overflow: hidden;
}

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

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

.post-card-content {
    padding: 1.5rem;
}

.post-card-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-card-content h3 a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.2s;
}

.post-card-content h3 a:hover {
    color: var(--primary);
}

.post-card-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Swiper Navigation Customization */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary) !important;
    background: white;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 800;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* 📱 ULTIMATE RESPONSIVE OVERRIDES (MOBILE & TABLET) */

/* Laptop & Tablet Large (max 1200px) */
@media (max-width: 1200px) {
    .container { padding: 0 40px; }
    .hero-content h1 { font-size: 3rem; }
}

/* Tablet (max 992px) */
@media (max-width: 992px) {
    .section-padding { padding: 3.5rem 0; }
    
    /* Hero */
    .hero { min-height: auto; padding: 6rem 0; text-align: center; }
    .hero-layout { grid-template-columns: 1fr; gap: 3rem; }
    .hero-content { text-align: center !important; }
    .hero-content h1 { font-size: 2.75rem; }
    .hero p { margin: 0 auto 2.5rem !important; }
    .hero-mockup { display: none; }

    /* Dual Column (About & Blog) */
    .dual-layout { flex-direction: column; gap: 3.5rem !important; }
    .dual-col-left { max-width: 100% !important; text-align: center; }
    .dual-col-right { width: 100%; }
    
    /* Grids */
    .excellence-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .service-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .portfolio-page-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .visi-misi-grid { grid-template-columns: 1fr; gap: 2rem; }
    .process-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* Mobile (max 640px) */
@media (max-width: 640px) {
    .container { padding: 0 24px; }
    .section-padding { padding: 3rem 0; }
    
    /* Headers */
    .hero-content h1 { font-size: 2.25rem; letter-spacing: -1px; }
    .section-head h2 { font-size: 2rem; }
    .hero p { font-size: 1.125rem; }
    
    /* Nav */
    .main-nav ul { display: none; }
    .header-inner { justify-content: space-between; height: 70px; }
    .logo img { height: 35px; }

    /* Grids to 1 Column */
    .excellence-grid, 
    .service-detail-grid, 
    .portfolio-page-grid, 
    .process-grid,
    .values-grid-detailed,
    .pricing-grid { 
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }

    .process-step { border: 1px solid rgba(0,0,0,0.05); }

    /* About Blog Column */
    .dual-col-left h2 { font-size: 2rem !important; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr !important; text-align: center; gap: 2.5rem; }
    .footer-col { display: flex; flex-direction: column; align-items: center; }
}
