/*
Theme Name: WebDev Agency
Theme URI: https://webdevagency.demo.sbarron.com
Author: Shane Barron
Author URI: https://sbarron.com
Description: A bold, modern web development agency theme with portfolio showcase, GSAP animations, and Alpine.js interactivity.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: webdevagency
*/

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --coral: #f43f5e;
  --coral-dark: #e11d48;
  --gray-50: #fafafa;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-300: #d4d4d8;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); line-height: 1.6; overflow-x: hidden; }

.gsap-reveal { visibility: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--black); }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); letter-spacing: -0.01em; }
p { font-size: 1.0625rem; line-height: 1.75; color: var(--gray-600); }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }

.wda-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.wda-section { padding: 6rem 0; }
.wda-section--dark { background: var(--black); color: var(--white); }
.wda-section--dark h2, .wda-section--dark h3, .wda-section--dark h4 { color: var(--white); }
.wda-section--dark p { color: var(--gray-400); }
.wda-section--gray { background: var(--gray-50); }

/* Header */
.wda-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.4s ease; padding: 1.25rem 0; }
.wda-header.scrolled { background: rgba(10,10,10,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(255,255,255,0.05); padding: 0.75rem 0; }
.wda-header__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.wda-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--white); letter-spacing: -0.03em; display: flex; align-items: center; gap: 0.25rem; }
.wda-logo span { color: var(--coral); }
.wda-nav { display: flex; align-items: center; gap: 2rem; }
.wda-nav a { color: var(--gray-300); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; transition: color 0.3s ease; position: relative; }
.wda-nav a:hover, .wda-nav a.active { color: var(--white); }
.wda-nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--coral); transition: width 0.3s ease; }
.wda-nav a:hover::after, .wda-nav a.active::after { width: 100%; }
.wda-nav__cta { background: var(--coral) !important; color: var(--white) !important; padding: 0.625rem 1.5rem; border-radius: 4px; font-weight: 600 !important; text-transform: uppercase !important; font-size: 0.8125rem !important; letter-spacing: 0.05em !important; transition: background 0.3s ease, transform 0.2s ease !important; }
.wda-nav__cta::after { display: none !important; }
.wda-nav__cta:hover { background: var(--coral-dark) !important; transform: translateY(-1px); }

.wda-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; background: none; border: none; padding: 4px; }
.wda-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: transform 0.3s ease, opacity 0.3s ease; }
.wda-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.wda-hamburger.active span:nth-child(2) { opacity: 0; }
.wda-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .wda-hamburger { display: flex; }
  .wda-nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--black); flex-direction: column; justify-content: center; gap: 2rem; transition: right 0.4s ease; padding: 2rem; }
  .wda-nav.open { right: 0; }
  .wda-nav a { font-size: 1.125rem; }
}

/* Hero */
.wda-hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--black); overflow: hidden; }
.wda-hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(244,63,94,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(244,63,94,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.wda-hero__content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; padding-top: 8rem; }
.wda-hero__label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); margin-bottom: 1.5rem; }
.wda-hero__label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--coral); }
.wda-hero h1 { color: var(--white); margin-bottom: 1.5rem; max-width: 900px; }
.wda-hero h1 em { font-style: normal; color: var(--coral); }
.wda-hero__sub { font-size: 1.25rem; color: var(--gray-400); max-width: 600px; margin-bottom: 2.5rem; line-height: 1.7; }
.wda-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.wda-hero__stats { position: absolute; bottom: 4rem; left: 0; right: 0; z-index: 2; }
.wda-hero__stats-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; gap: 4rem; }
.wda-hero__stat { border-left: 2px solid var(--coral); padding-left: 1rem; }
.wda-hero__stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--white); }
.wda-hero__stat-label { font-size: 0.8125rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; }

/* Buttons */
.wda-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 2rem; font-family: var(--font-body); font-size: 0.875rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s ease; border-radius: 4px; }
.wda-btn--primary { background: var(--coral); color: var(--white); }
.wda-btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(244,63,94,0.3); }
.wda-btn--outline { background: transparent; color: var(--white); border: 1px solid var(--gray-700); }
.wda-btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.wda-btn--dark { background: var(--black); color: var(--white); }
.wda-btn--dark:hover { background: var(--gray-900); transform: translateY(-2px); }

/* Section Header */
.wda-section-header { text-align: center; margin-bottom: 4rem; }
.wda-section-header__label { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }
.wda-section-header__label::before, .wda-section-header__label::after { content: ''; display: block; width: 20px; height: 2px; background: var(--coral); }
.wda-section-header p { max-width: 600px; margin: 1rem auto 0; }

/* Services */
.wda-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .wda-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wda-services-grid { grid-template-columns: 1fr; } }
.wda-service-card { background: var(--white); border: 1px solid var(--gray-200); padding: 2.5rem 2rem; border-radius: 8px; transition: all 0.4s ease; position: relative; overflow: hidden; }
.wda-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--coral); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.wda-service-card:hover { border-color: var(--gray-300); transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.wda-service-card:hover::before { transform: scaleX(1); }
.wda-service-card__icon { width: 48px; height: 48px; background: var(--gray-50); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.5rem; transition: background 0.3s ease; }
.wda-service-card:hover .wda-service-card__icon { background: rgba(244,63,94,0.1); }
.wda-service-card h3 { margin-bottom: 0.75rem; }
.wda-service-card p { font-size: 0.9375rem; }
.wda-section--dark .wda-service-card { background: var(--gray-900); border-color: var(--gray-800); }
.wda-section--dark .wda-service-card:hover { border-color: var(--gray-700); }
.wda-section--dark .wda-service-card__icon { background: var(--gray-800); }
.wda-section--dark .wda-service-card h3 { color: var(--white); }

/* Portfolio Grid */
.wda-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) { .wda-portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wda-portfolio-grid { grid-template-columns: 1fr; } }
.wda-portfolio-card { position: relative; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; cursor: pointer; background: var(--gray-900); }
.wda-portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.6s ease; }
.wda-portfolio-card__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.92) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; opacity: 0; transition: opacity 0.4s ease; }
.wda-portfolio-card:hover img { transform: scale(1.08); filter: brightness(0.7); }
.wda-portfolio-card:hover .wda-portfolio-card__overlay { opacity: 1; }
.wda-portfolio-card__category { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.5rem; }
.wda-portfolio-card__title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.wda-portfolio-card__client { font-size: 0.875rem; color: var(--gray-400); }
.wda-portfolio-card__arrow { position: absolute; top: 1.25rem; right: 1.25rem; width: 40px; height: 40px; background: var(--coral); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transform: translate(10px, -10px); opacity: 0; transition: all 0.4s ease; }
.wda-portfolio-card:hover .wda-portfolio-card__arrow { transform: translate(0, 0); opacity: 1; }

/* About Row */
.wda-about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .wda-about-row { grid-template-columns: 1fr; gap: 2rem; } }
.wda-about-image { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; background: var(--gray-200); }
.wda-about-image img { width: 100%; height: 100%; object-fit: cover; }
.wda-about-image__badge { position: absolute; bottom: 1.5rem; left: 1.5rem; background: var(--coral); color: var(--white); padding: 0.75rem 1.25rem; border-radius: 6px; font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; }
.wda-about-text h2 { margin-bottom: 1.5rem; }
.wda-about-text p { margin-bottom: 1.5rem; }
.wda-about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.wda-about-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; font-weight: 500; color: var(--gray-800); }
.wda-about-feature svg { width: 18px; height: 18px; color: var(--coral); flex-shrink: 0; }

/* Testimonials */
.wda-testimonials { position: relative; overflow: hidden; }
.wda-testimonial-track { display: flex; transition: transform 0.5s ease; }
.wda-testimonial { flex: 0 0 100%; text-align: center; padding: 0 2rem; }
.wda-testimonial__stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 1.5rem; color: #fbbf24; font-size: 1.25rem; }
.wda-testimonial__text { font-size: 1.375rem; line-height: 1.7; color: var(--gray-300); max-width: 700px; margin: 0 auto 2rem; font-style: italic; }
.wda-testimonial__author { font-family: var(--font-heading); font-weight: 700; color: var(--white); font-size: 1rem; }
.wda-testimonial__role { font-size: 0.875rem; color: var(--gray-500); }
.wda-testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.wda-testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-700); cursor: pointer; transition: all 0.3s ease; border: none; padding: 0; }
.wda-testimonial-dot.active { background: var(--coral); transform: scale(1.2); }

/* CTA Banner */
.wda-cta-banner { position: relative; padding: 6rem 0; text-align: center; background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%); overflow: hidden; }
.wda-cta-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%); }
.wda-cta-banner h2 { color: var(--white); margin-bottom: 1rem; position: relative; }
.wda-cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin-bottom: 2rem; position: relative; }
.wda-cta-banner .wda-btn { position: relative; }
.wda-cta-banner .wda-btn--outline { border-color: rgba(255,255,255,0.4); color: var(--white); }
.wda-cta-banner .wda-btn--outline:hover { background: var(--white); color: var(--coral); border-color: var(--white); }

/* Footer */
.wda-footer { background: var(--black); padding: 4rem 0 2rem; border-top: 1px solid var(--gray-800); }
.wda-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 768px) { .wda-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .wda-footer-grid { grid-template-columns: 1fr; } }
.wda-footer__brand .wda-logo { margin-bottom: 1rem; }
.wda-footer__brand p { color: var(--gray-500); font-size: 0.9375rem; max-width: 300px; }
.wda-footer h4 { color: var(--white); font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; }
.wda-footer ul { list-style: none; }
.wda-footer ul li { margin-bottom: 0.625rem; }
.wda-footer ul a { color: var(--gray-500); font-size: 0.9375rem; transition: color 0.3s ease; }
.wda-footer ul a:hover { color: var(--coral); }
.wda-footer__bottom { border-top: 1px solid var(--gray-800); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.wda-footer__bottom p { font-size: 0.8125rem; color: var(--gray-600); }
.wda-footer__social { display: flex; gap: 1rem; }
.wda-footer__social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--gray-800); display: flex; align-items: center; justify-content: center; color: var(--gray-500); font-size: 0.875rem; transition: all 0.3s ease; }
.wda-footer__social a:hover { border-color: var(--coral); color: var(--coral); background: rgba(244,63,94,0.1); }

/* Blog */
.wda-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media (max-width: 1024px) { .wda-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wda-blog-grid { grid-template-columns: 1fr; } }
.wda-blog-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 8px; overflow: hidden; transition: all 0.4s ease; }
.wda-blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.wda-blog-card__image { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-200); }
.wda-blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.wda-blog-card:hover .wda-blog-card__image img { transform: scale(1.05); }
.wda-blog-card__body { padding: 1.5rem; }
.wda-blog-card__meta { font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.wda-blog-card__meta span { color: var(--coral); }
.wda-blog-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; transition: color 0.3s ease; }
.wda-blog-card:hover h3 { color: var(--coral); }
.wda-blog-card p { font-size: 0.9375rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* Blog Layout */
.wda-blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
@media (max-width: 1024px) { .wda-blog-layout { grid-template-columns: 1fr; } }
.wda-sidebar { display: flex; flex-direction: column; gap: 2rem; }
.wda-sidebar-widget { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; padding: 1.5rem; }
.wda-sidebar-widget h4 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 2px solid var(--coral); }
.wda-sidebar-widget ul { list-style: none; }
.wda-sidebar-widget ul li { padding: 0.5rem 0; border-bottom: 1px solid var(--gray-200); }
.wda-sidebar-widget ul li:last-child { border-bottom: none; }
.wda-sidebar-widget ul a { color: var(--gray-700); font-size: 0.9375rem; transition: color 0.3s ease; }
.wda-sidebar-widget ul a:hover { color: var(--coral); }

/* Page Hero */
.wda-page-hero { padding: 10rem 0 4rem; background: var(--black); position: relative; overflow: hidden; }
.wda-page-hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(244,63,94,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(244,63,94,0.03) 1px, transparent 1px); background-size: 60px 60px; }
.wda-page-hero h1 { color: var(--white); margin-bottom: 1rem; position: relative; }
.wda-page-hero p { color: var(--gray-400); font-size: 1.125rem; max-width: 600px; position: relative; }
.wda-page-hero .wda-breadcrumb { position: relative; display: flex; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.875rem; color: var(--gray-500); }
.wda-page-hero .wda-breadcrumb a { color: var(--gray-500); transition: color 0.3s ease; }
.wda-page-hero .wda-breadcrumb a:hover { color: var(--coral); }

/* Team Grid */
.wda-team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media (max-width: 1024px) { .wda-team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .wda-team-grid { grid-template-columns: 1fr; } }
.wda-team-card { text-align: center; }
.wda-team-card__photo { width: 160px; height: 160px; border-radius: 50%; margin: 0 auto 1.25rem; overflow: hidden; background: var(--gray-200); border: 3px solid var(--gray-100); transition: border-color 0.3s ease; }
.wda-team-card:hover .wda-team-card__photo { border-color: var(--coral); }
.wda-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.wda-team-card h3 { font-size: 1.125rem; margin-bottom: 0.25rem; }
.wda-team-card p { font-size: 0.875rem; color: var(--coral); font-weight: 500; }

/* Process */
.wda-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
@media (max-width: 768px) { .wda-process-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.wda-process-step { text-align: center; position: relative; }
.wda-process-step__num { width: 64px; height: 64px; border-radius: 50%; background: var(--coral); color: var(--white); font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; position: relative; z-index: 1; }
.wda-process-step h3 { margin-bottom: 0.5rem; }
.wda-process-step p { font-size: 0.9375rem; }

/* Contact */
.wda-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
@media (max-width: 768px) { .wda-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.wda-form-group { margin-bottom: 1.5rem; }
.wda-form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.5rem; }
.wda-form-group input, .wda-form-group textarea, .wda-form-group select { width: 100%; padding: 0.875rem 1rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 6px; font-family: var(--font-body); font-size: 0.9375rem; color: var(--gray-800); transition: border-color 0.3s ease, box-shadow 0.3s ease; outline: none; }
.wda-form-group input:focus, .wda-form-group textarea:focus, .wda-form-group select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(244,63,94,0.1); }
.wda-form-group textarea { height: 150px; resize: vertical; }
.wda-contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.wda-contact-info-item__icon { width: 48px; height: 48px; background: rgba(244,63,94,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--coral); flex-shrink: 0; }
.wda-contact-info-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.wda-contact-info-item p { font-size: 0.9375rem; }

/* Single Post */
.wda-single-content { max-width: 800px; margin: 0 auto; }
.wda-single-content h2, .wda-single-content h3 { margin: 2rem 0 1rem; }
.wda-single-content p { margin-bottom: 1.25rem; }
.wda-single-content img { border-radius: 8px; margin: 2rem 0; }
.wda-single-content blockquote { border-left: 4px solid var(--coral); padding: 1rem 1.5rem; background: var(--gray-50); margin: 2rem 0; border-radius: 0 8px 8px 0; }
.wda-single-content blockquote p { font-style: italic; color: var(--gray-700); }

/* Single Portfolio */
.wda-portfolio-single__meta { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding: 2rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 8px; margin-bottom: 3rem; }
@media (max-width: 768px) { .wda-portfolio-single__meta { grid-template-columns: repeat(2, 1fr); } }
.wda-portfolio-single__meta-item label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 0.25rem; }
.wda-portfolio-single__meta-item span { font-weight: 600; color: var(--gray-800); }

/* Pagination */
.wda-pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.wda-pagination a, .wda-pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--gray-200); border-radius: 6px; font-size: 0.875rem; font-weight: 500; color: var(--gray-600); transition: all 0.3s ease; }
.wda-pagination a:hover { border-color: var(--coral); color: var(--coral); }
.wda-pagination .current { background: var(--coral); border-color: var(--coral); color: var(--white); }

/* WP Admin bar */
body.admin-bar .wda-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .wda-header { top: 46px; } }
