/**
 * GRAFIX360 Theme Styles
 * Includes Tailwind-inspired utility classes for WordPress compatibility
 */

/* ===== CSS Custom Properties ===== */
:root {
    --coral: #1a6eff;
    --coral-dark: #0052e0;
    --coral-light: #4d94ff;
    --dark-navy: #020617;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --bg-alt: #f1f5f9;
    --border-light: #e2e8f0;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ===== Typography ===== */
.font-montserrat { font-family: 'Montserrat', sans-serif; }
.font-opensans { font-family: 'Open Sans', sans-serif; }
.text-white { color: #fff; }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-white\/80 { color: rgba(255,255,255,0.8); }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.text-white\/50 { color: rgba(255,255,255,0.5); }
.text-white\/40 { color: rgba(255,255,255,0.4); }
.text-white\/30 { color: rgba(255,255,255,0.3); }
.text-white\/20 { color: rgba(255,255,255,0.2); }
.text-white\/10 { color: rgba(255,255,255,0.1); }
.text-blue-400 { color: #4d94ff; }
.text-text-primary { color: var(--text-primary); }
.text-text-secondary { color: var(--text-secondary); }
.text-coral { color: var(--coral) !important; }
.text-green-600 { color: #059669; }
.text-red-500 { color: #ef4444; }

.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-\[10px\] { font-size: 10px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[38px\] { font-size: 38px; }
.text-\[40px\] { font-size: 40px; }
.text-\[48px\] { font-size: 48px; }
.text-\[56px\] { font-size: 56px; }
.text-\[72px\] { font-size: 72px; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: 1.25; }
.leading-\[0\.8\] { line-height: 0.8; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.7\] { line-height: 1.7; }
.tracking-\[-0\.02em\] { letter-spacing: -0.02em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.tracking-wider { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ===== Layout ===== */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { inset: 0; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ===== Sizing ===== */
.w-full { width: 100%; }
.w-\[12px\] { width: 12px; }
.w-\[28px\] { width: 28px; }
.w-\[32px\] { width: 32px; }
.w-\[200px\] { width: 200px; }
.w-\[220px\] { width: 220px; }
.w-\[260px\] { width: 260px; }
.w-\[280px\] { width: 280px; }
.w-\[600px\] { width: 600px; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-28 { width: 7rem; }
.w-32 { width: 8rem; }
.w-40 { width: 10rem; }
.max-w-\[550px\] { max-width: 550px; }
.max-w-\[600px\] { max-width: 600px; }
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[900px\] { max-width: 900px; }
.max-w-\[1000px\] { max-width: 1000px; }
.max-w-\[1100px\] { max-width: 1100px; }
.max-w-\[1200px\] { max-width: 1200px; }
.max-w-3xl { max-width: 48rem; }
.max-w-none { max-width: none; }
.max-w-lg { max-width: 32rem; }
.max-w-2xl { max-width: 42rem; }
.min-h-\[280px\] { min-height: 280px; }
.min-h-\[320px\] { min-height: 320px; }
.min-h-\[380px\] { min-height: 380px; }
.min-h-\[450px\] { min-height: 450px; }
.min-h-\[550px\] { min-height: 550px; }
.min-h-\[60vh\] { min-height: 60vh; }
.min-h-screen { min-height: 100vh; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-\[300px\] { height: 300px; }
.h-\[350px\] { height: 350px; }
.h-\[380px\] { height: 380px; }
.h-\[450px\] { height: 450px; }
.h-\[550px\] { height: 550px; }
.h-1 { height: 0.25rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-\[70px\] { height: 70px; }
.aspect-\[9\/16\] { aspect-ratio: 9/16; }
.aspect-square { aspect-ratio: 1 / 1; }

/* ===== Spacing ===== */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-20 { margin-left: 5rem; }

.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.pt-4 { padding-top: 1rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-\[52px\] { padding-left: 52px; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-y-10 > :not([hidden]) ~ :not([hidden]) { margin-top: 2.5rem; }

/* ===== Backgrounds ===== */
.bg-white { background-color: #fff; }
.bg-dark-navy { background-color: var(--dark-navy); }
.bg-bg-alt { background-color: var(--bg-alt); }
.bg-\[\#0f172a\] { background-color: #0f172a; }
.bg-\[\#1e3a5f\] { background-color: #1e3a5f; }
.bg-\[\#1a6eff\] { background-color: var(--coral); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }

/* ===== Borders ===== */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-\[\#e2e8f0\] { border-color: var(--border-light); }
.border-border-light { border-color: var(--border-light); }
.border-white\/40 { border-color: rgba(255,255,255,0.4); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[32px\] { border-radius: 32px; }
.rounded-\[24px\] { border-radius: 24px; }

/* ===== Shadow & Effects ===== */
.shadow-sm { box-shadow: 0 1px 3px rgba(0,0,0,0.08); }
.shadow-md { box-shadow: 0 4px 6px rgba(0,0,0,0.08); }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.shadow-\[0_4px_20px_rgba\(0\,0\,0\,0\.06\)\] { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.shadow-\[0_10px_30px_rgba\(26\,110\,255\,0\.3\)\] { box-shadow: 0 10px 30px rgba(26,110,255,0.3); }
.shadow-\[0_10px_40px_rgba\(0\,0\,0\,0\.08\)\] { box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.shadow-\[0_20px_60px_rgba\(26\,110\,255\,0\.15\)\] { box-shadow: 0 20px 60px rgba(26,110,255,0.15); }
.shadow-\[0_20px_60px_rgba\(0\,0\,0\,0\.12\)\] { box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.shadow-button-hover { box-shadow: 0 10px 30px rgba(26,110,255,0.3); }
.opacity-10 { opacity: 0.1; }
.backdrop-blur-xl { backdrop-filter: blur(20px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* ===== Transforms ===== */
.-translate-y-0\.5 { transform: translateY(-2px); }
.-translate-y-1 { transform: translateY(-4px); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-x-1\/2 { transform: translateX(50%); }
.translate-y-\[-10px\] { transform: translateY(-10px); }
.scale-0\.9 { transform: scale(0.9); }
.scale-0\.8 { transform: scale(0.8); }
.scale-0\.95 { transform: scale(0.95); }

/* ===== Transitions ===== */
.transition-all { transition: all 0.3s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-shadow { transition: box-shadow 0.3s ease; }
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }
.duration-\[0\.6s\] { transition-duration: 0.6s; }

/* ===== Cursor ===== */
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }

/* ===== Overflow ===== */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ===== Scroll Snap ===== */
.snap-x { scroll-snap-type: x mandatory; }
.snap-start { scroll-snap-align: start; }
.snap-mandatory { scroll-snap-type: x mandatory; }

/* ===== Z-Index ===== */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[999\] { z-index: 999; }
.z-\[1000\] { z-index: 1000; }

/* ===== Resize ===== */
.resize-none { resize: none; }

/* ===== Prose ===== */
.prose { max-width: 65ch; }
.prose.max-w-none { max-width: none; }

/* ===== Gradient Text ===== */
.gradient-text {
    background: linear-gradient(135deg, #1a6eff, #0052e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Blue Gradient ===== */
.blue-gradient {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
}

/* ===== Print Styles ===== */
@media print {
    .site-nav, .mobile-menu-toggle, .slide-indicators, #hero-particles, .floating-shape {
        display: none !important;
    }
}

/* ===== Admin Bar Compensation ===== */
body.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .site-nav { top: 46px; }
}

/* ===== Scrollbar Hide ===== */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

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

/* ===== Navigation ===== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
}
.site-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.site-nav.scrolled .nav-link { color: var(--text-secondary); }
.site-nav.scrolled .nav-link:hover { color: var(--coral); }
.nav-link { transition: color 0.2s ease; }

/* Dropdown */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    width: min(640px, calc(100vw - 2rem));
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: none;
}
.nav-dropdown::-webkit-scrollbar { display: none; }
.nav-dropdown.active,
.group:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-bokeh-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 20% 30%, rgba(26,110,255,0.25), transparent),
        radial-gradient(ellipse 400px 300px at 70% 60%, rgba(77,148,255,0.15), transparent),
        radial-gradient(ellipse 300px 300px at 50% 80%, rgba(26,110,255,0.1), transparent);
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Slide indicators */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.slide-indicator.active {
    background: var(--coral);
    border-color: var(--coral);
}

/* ===== Service Cards ===== */
.service-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-color: var(--coral);
    transform: translateY(-4px);
}

/* ===== Team Cards ===== */
.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}
.team-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.team-card:hover img { transform: scale(1.05); }
.team-card .team-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,110,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.team-card:hover .team-overlay { opacity: 1; }

/* ===== Portfolio Cards ===== */
.portfolio-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}
.portfolio-card .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,110,255,0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

/* ===== Testimonials ===== */
.testimonial-card {
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 1.5rem;
}

/* ===== Contact Form ===== */
.form-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.875rem;
    transition: border-color 0.2s ease;
    background: white;
    color: var(--text-primary);
}
.form-input:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(26,110,255,0.1);
}
.form-input::placeholder { color: #94a3b8; }

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    overflow-y: auto;
    transition: all 0.5s ease;
}
.mobile-menu.hidden { display: none; }

/* ===== Key Features Section ===== */
.kf-fade-in {
    transform: translateY(20px);
    transition: transform 0.6s ease;
}
.kf-slide-left {
    transform: translateX(-20px);
    transition: transform 0.6s ease;
}
.kf-slide-right {
    transform: translateX(20px);
    transition: transform 0.6s ease;
}
.kf-phone-scale {
    transform: scale(0.95);
    transition: transform 0.8s ease 0.2s;
}
.kf-visible .kf-fade-in,
.kf-visible .kf-slide-left,
.kf-visible .kf-slide-right,
.kf-visible .kf-phone-scale {
    transform: translate(0) scale(1);
}

/* ===== Service Page Hero ===== */
.service-hero {
    position: relative;
    height: 550px;
    overflow: hidden;
}
.service-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(2,6,23,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* ===== Section Reveal - Always visible, GSAP adds animation ===== */
.section-reveal {
    opacity: 1;
    transform: translateY(0);
}
/* When GSAP is active, it handles the animation via JS */
.gsap-active .section-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive: sm (640px+) ===== */
@media (min-width: 640px) {
    .sm\:block { display: block; }
    .sm\:flex { display: flex; }
    .sm\:grid { display: grid; }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:flex-row { flex-direction: row; }
    .sm\:gap-3 { gap: 0.75rem; }
    .sm\:gap-4 { gap: 1rem; }
    .sm\:gap-6 { gap: 1.5rem; }
    .sm\:gap-8 { gap: 2rem; }
    .sm\:gap-12 { gap: 3rem; }
    .sm\:p-4 { padding: 1rem; }
    .sm\:p-5 { padding: 1.25rem; }
    .sm\:p-6 { padding: 1.5rem; }
    .sm\:p-8 { padding: 2rem; }
    .sm\:p-10 { padding: 2.5rem; }
    .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .sm\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .sm\:mb-2 { margin-bottom: 0.5rem; }
    .sm\:mb-3 { margin-bottom: 0.75rem; }
    .sm\:mb-4 { margin-bottom: 1rem; }
    .sm\:mb-6 { margin-bottom: 1.5rem; }
    .sm\:mb-8 { margin-bottom: 2rem; }
    .sm\:mb-10 { margin-bottom: 2.5rem; }
    .sm\:mb-12 { margin-bottom: 3rem; }
    .sm\:mb-20 { margin-bottom: 5rem; }
    .sm\:mt-12 { margin-top: 3rem; }
    .sm\:mt-16 { margin-top: 4rem; }
    .sm\:mt-10 { margin-top: 2.5rem; }
    .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
    .sm\:text-sm { font-size: 0.875rem; }
    .sm\:text-base { font-size: 1rem; }
    .sm\:text-lg { font-size: 1.125rem; }
    .sm\:text-xl { font-size: 1.25rem; }
    .sm\:text-2xl { font-size: 1.5rem; }
    .sm\:text-3xl { font-size: 1.875rem; }
    .sm\:text-5xl { font-size: 3rem; }
    .sm\:text-\[15px\] { font-size: 15px; }
    .sm\:text-\[38px\] { font-size: 38px; }
    .sm\:w-12 { width: 3rem; }
    .sm\:w-14 { width: 3.5rem; }
    .sm\:w-16 { width: 4rem; }
    .sm\:w-32 { width: 8rem; }
    .sm\:h-12 { height: 3rem; }
    .sm\:h-14 { height: 3.5rem; }
    .sm\:h-16 { height: 4rem; }
    .sm\:rounded-xl { border-radius: 0.75rem; }
    .sm\:rounded-2xl { border-radius: 1rem; }
    .sm\:pt-16 { padding-top: 4rem; }
    .sm\:pl-\[52px\] { padding-left: 52px; }
    .sm\:px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
}

/* ===== Responsive: md (768px+) ===== */
@media (min-width: 768px) {
    .md\:block { display: block; }
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:w-\[35\%\] { width: 35%; }
    .md\:w-\[45\%\] { width: 45%; }
    .md\:w-\[55\%\] { width: 55%; }
    .md\:w-\[280px\] { width: 280px; }
    .md\:w-\[640px\] { width: 640px; }
    .md\:h-\[350px\] { height: 350px; }
    .md\:h-\[450px\] { height: 450px; }
    .md\:h-\[550px\] { height: 550px; }
    .md\:max-w-\[280px\] { max-width: 280px; }
    .md\:gap-4 { gap: 1rem; }
    .md\:gap-6 { gap: 1.5rem; }
    .md\:gap-8 { gap: 2rem; }
    .md\:gap-12 { gap: 3rem; }
    .md\:gap-16 { gap: 4rem; }
    .md\:gap-x-8 { column-gap: 2rem; }
    .md\:gap-y-5 { row-gap: 1.25rem; }
    .md\:gap-0 { gap: 0; }
    .md\:p-6 { padding: 1.5rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:p-10 { padding: 2.5rem; }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
    .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
    .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
    .md\:mb-2 { margin-bottom: 0.5rem; }
    .md\:mb-4 { margin-bottom: 1rem; }
    .md\:mb-6 { margin-bottom: 1.5rem; }
    .md\:mb-8 { margin-bottom: 2rem; }
    .md\:mb-10 { margin-bottom: 2.5rem; }
    .md\:mb-12 { margin-bottom: 3rem; }
    .md\:mb-14 { margin-bottom: 3.5rem; }
    .md\:mb-20 { margin-bottom: 5rem; }
    .md\:mt-6 { margin-top: 1.5rem; }
    .md\:mt-10 { margin-top: 2.5rem; }
    .md\:text-center { text-align: center; }
    .md\:text-right { text-align: right; }
    .md\:text-sm { font-size: 0.875rem; }
    .md\:text-base { font-size: 1rem; }
    .md\:text-lg { font-size: 1.125rem; }
    .md\:text-xl { font-size: 1.25rem; }
    .md\:text-2xl { font-size: 1.5rem; }
    .md\:text-3xl { font-size: 1.875rem; }
    .md\:text-4xl { font-size: 2.25rem; }
    .md\:text-\[32px\] { font-size: 32px; }
    .md\:text-\[40px\] { font-size: 40px; }
    .md\:text-\[52px\] { font-size: 52px; }
    .md\:text-\[72px\] { font-size: 72px; }
    .md\:pt-8 { padding-top: 2rem; }
    .md\:pb-8 { padding-bottom: 2rem; }
}

/* ===== Responsive: lg (1024px+) ===== */
@media (min-width: 1024px) {
    .lg\:flex { display: flex; }
    .lg\:hidden { display: none; }
    .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .lg\:flex-row { flex-direction: row; }
    .lg\:gap-16 { gap: 4rem; }
    .lg\:text-\[56px\] { font-size: 56px; }
    .lg\:text-\[72px\] { font-size: 72px; }
}

/* ===== Extended Team Section ===== */
#extended-team img {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
    object-fit: cover;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}
#extended-team .rounded-full {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
}

/* ===== Portfolio Cards ===== */
.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== Admin Styles ===== */
#menu-posts-grafx_service .wp-menu-image:before { color: #1a6eff; }
#menu-posts-grafx_team .wp-menu-image:before { color: #1a6eff; }
#menu-posts-grafx_portfolio .wp-menu-image:before { color: #1a6eff; }
#menu-posts-grafx_testimonial .wp-menu-image:before { color: #1a6eff; }
#menu-posts-grafx_hero_slide .wp-menu-image:before { color: #1a6eff; }
#toplevel_page_grafix360-settings .wp-menu-image:before { color: #1a6eff; }
