/*
Theme Name: Scope Media
Theme URI: https://scopemediaproduction.com
Author: Scope Media Production
Author URI: https://scopemediaproduction.com
Description: قالب احترافي لشركة سكوب للإنتاج الإعلامي - خبراء في صناعة المحتوى المرئي
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: scope-media
Tags: rtl-language, arabic, one-page, photography, videography, dark, custom-colors, responsive-layout
*/

/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #070d14;
  --dark2: #0d1822;
  --dark3: #111f2e;
  --teal: #00c8a0;
  --teal-light: #00e6b8;
  --teal-dim: rgba(0,200,160,0.12);
  --teal-glow: rgba(0,200,160,0.25);
  --white: #f0f6ff;
  --gray: #8a9bb5;
  --border: rgba(0,200,160,0.15);
  --card-bg: rgba(255,255,255,0.03);
  --font: 'Cairo', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--dark);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

::selection { background: var(--teal); color: var(--dark); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--teal); color: var(--dark);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%); transition: transform 0.5s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 30px var(--teal-glow); color: var(--dark); }
.btn-primary.full-width { width: 100%; justify-content: center; border-radius: 12px; padding: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 1px solid var(--border);
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.section-tag {
  display: inline-block; background: var(--teal-dim);
  color: var(--teal); padding: 6px 18px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 16px; border: 1px solid var(--border);
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.section-header p { color: var(--gray); max-width: 520px; margin: 0 auto; font-size: 1.05rem; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: rgba(7,13,20,0.85); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); transition: all 0.3s;
}
#navbar.scrolled { background: rgba(7,13,20,0.97); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px; height: 72px;
}
.logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.logo-scope { font-size: 1.4rem; color: var(--white); letter-spacing: 2px; font-weight: 900; }
.logo-media { font-size: 1.4rem; color: var(--teal); letter-spacing: 2px; margin-top: -4px; font-weight: 900; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0 auto; }
.nav-link { text-decoration: none; color: var(--gray); font-weight: 600; font-size: 0.9rem; padding: 8px 14px; border-radius: 8px; transition: all 0.2s; }
.nav-link:hover, .nav-link.active, .current-menu-item .nav-link { color: var(--teal); background: var(--teal-dim); }
.nav-cta { text-decoration: none; background: var(--teal); color: var(--dark); padding: 9px 22px; border-radius: 50px; font-weight: 700; font-size: 0.9rem; transition: all 0.3s; }
.nav-cta:hover { background: var(--teal-light); transform: translateY(-1px); color: var(--dark); }

.nav-socials { display: flex; gap: 8px; }
.nav-socials a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); background: var(--card-bg); display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; transition: all 0.2s; }
.nav-socials a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nav-socials a:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 120px 40px 60px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(0,200,160,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,200,160,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; animation: float 8s ease-in-out infinite; }
.orb1 { width: 500px; height: 500px; background: var(--teal); top: -100px; left: -100px; }
.orb2 { width: 400px; height: 400px; background: #0066cc; bottom: -80px; right: 200px; animation-delay: -4s; }
.hero-content { position: relative; z-index: 2; max-width: 640px; animation: fadeUp 0.8s ease both; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--teal-dim); border: 1px solid var(--border); color: var(--teal); padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.hero-title { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 900; line-height: 1.1; margin-bottom: 24px; display: flex; flex-direction: column; }
.hero-title .line { display: block; animation: slideIn 0.8s ease both; }
.hero-title .line:nth-child(2) { animation-delay: 0.1s; }
.hero-title .line:nth-child(3) { animation-delay: 0.2s; }
.hero-title .accent { color: var(--teal); }
.hero-sub { color: var(--gray); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; animation: fadeUp 0.8s 0.3s ease both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeUp 0.8s 0.4s ease both; }
.hero-stats { display: flex; align-items: center; gap: 24px; animation: fadeUp 0.8s 0.5s ease both; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 900; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--gray); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-visual { position: absolute; left: 60px; top: 50%; transform: translateY(-50%); z-index: 1; width: 380px; height: 380px; display: flex; align-items: center; justify-content: center; animation: spin-slow 20s linear infinite; }
.lens-ring { position: absolute; border-radius: 50%; border: 1px solid; }
.r1 { inset: 0; border-color: rgba(0,200,160,0.2); }
.r2 { inset: 30px; border-color: rgba(0,200,160,0.3); animation: spin-slow 15s linear infinite reverse; }
.r3 { inset: 60px; border-color: rgba(0,200,160,0.15); }
.lens-center { width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.camera-icon { width: 120px; height: 120px; animation: pulse-icon 3s ease-in-out infinite; }
.scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--gray); font-size: 0.75rem; letter-spacing: 2px; animation: bounce 2s ease-in-out infinite; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--teal), transparent); }

/* ===== SERVICES ===== */
.services { background: var(--dark2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px; padding: 36px 28px; position: relative; overflow: hidden; transition: all 0.4s; }
.service-card::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--teal), transparent); opacity: 0; transition: opacity 0.3s; }
.service-card:hover { border-color: rgba(0,200,160,0.4); transform: translateY(-6px); background: rgba(0,200,160,0.04); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { background: linear-gradient(135deg, rgba(0,200,160,0.1), rgba(0,200,160,0.03)); border-color: rgba(0,200,160,0.4); }
.service-card.featured::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; background: var(--teal-dim); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--teal); transition: all 0.3s; }
.service-icon svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.service-card:hover .service-icon, .service-card.featured .service-icon { background: var(--teal); color: var(--dark); }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-num { font-size: 3.5rem; color: rgba(0,200,160,0.06); position: absolute; top: 16px; left: 24px; line-height: 1; font-weight: 900; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-link { color: var(--teal); font-weight: 600; font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-link:hover { gap: 10px; color: var(--teal); }

/* ===== WORKS ===== */
.works { background: var(--dark3); }
.works-filter { display: flex; gap: 12px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn { padding: 8px 22px; border-radius: 50px; border: 1px solid var(--border); background: transparent; color: var(--gray); font-family: var(--font); font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--teal); color: var(--dark); border-color: var(--teal); }
.works-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.work-card { border-radius: 16px; overflow: hidden; background: var(--dark2); }
.work-card.large { grid-column: span 2; }
.work-img { height: 220px; position: relative; overflow: hidden; transition: transform 0.4s; }
.work-card.large .work-img { height: 260px; }
.work-card:hover .work-img { transform: scale(1.02); }
.work-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.work-play svg { width: 56px; height: 56px; background: rgba(0,200,160,0.15); border: 2px solid rgba(0,200,160,0.5); border-radius: 50%; padding: 14px; color: var(--teal); fill: var(--teal); transition: all 0.3s; }
.work-card:hover .work-play svg { background: var(--teal); fill: var(--dark); border-color: var(--teal); transform: scale(1.1); }
.work-cat-tag { position: absolute; top: 14px; right: 14px; background: var(--teal); color: var(--dark); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.work-info { padding: 18px 20px; }
.work-info h4 { font-weight: 700; margin-bottom: 4px; }
.work-info p { color: var(--gray); font-size: 0.85rem; }
.works-cta { text-align: center; margin-top: 48px; }

/* ===== ABOUT ===== */
.about { background: var(--dark2); }
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { display: flex; justify-content: center; }
.about-frame { position: relative; width: 340px; height: 340px; }
.about-lens { width: 100%; height: 100%; border-radius: 50%; background: radial-gradient(circle, rgba(0,200,160,0.08) 0%, rgba(0,200,160,0.02) 60%, transparent 100%); border: 1px solid rgba(0,200,160,0.2); display: flex; align-items: center; justify-content: center; animation: pulse-glow 4s ease-in-out infinite; }
.lens-inner { width: 80%; height: 80%; }
.big-lens { width: 100%; height: 100%; }
.about-badge-float { position: absolute; background: var(--dark3); border: 1px solid var(--border); color: var(--teal); padding: 8px 18px; border-radius: 12px; font-size: 0.85rem; font-weight: 700; white-space: nowrap; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
.badge1 { top: 20px; left: -20px; animation: float 5s ease-in-out infinite; }
.badge2 { bottom: 30px; right: -10px; animation: float 5s ease-in-out infinite 2.5s; }
.about-content h2 { font-size: 2.5rem; font-weight: 900; margin-bottom: 20px; }
.about-lead { font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; }
.about-content > p { color: var(--gray); margin-bottom: 36px; }
.about-pillars { display: flex; flex-direction: column; gap: 20px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.pillar-icon { font-size: 1.5rem; line-height: 1; }
.pillar h4 { font-weight: 700; margin-bottom: 4px; color: var(--teal); }
.pillar p { color: var(--gray); font-size: 0.9rem; }

/* ===== BLOG ===== */
.blog { background: var(--dark); }
.blog-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: 20px; }
.blog-card { border-radius: 20px; overflow: hidden; background: var(--dark2); border: 1px solid var(--border); transition: all 0.3s; }
.blog-card:hover { border-color: rgba(0,200,160,0.3); transform: translateY(-4px); }
.blog-img { height: 200px; position: relative; }
.blog-cat { position: absolute; top: 14px; right: 14px; background: var(--teal); color: var(--dark); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.blog-body { padding: 24px; }
.blog-date { color: var(--teal); font-size: 0.8rem; font-weight: 600; display: block; margin-bottom: 10px; }
.blog-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { color: var(--gray); font-size: 0.88rem; margin-bottom: 16px; }
.blog-link { color: var(--teal); font-weight: 600; font-size: 0.9rem; text-decoration: none; }

/* ===== CONTACT ===== */
.contact { background: var(--dark2); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; }
.contact-info h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 16px; }
.contact-info > p { color: var(--gray); margin-bottom: 40px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-method { display: flex; align-items: center; gap: 16px; text-decoration: none; color: var(--white); background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; transition: all 0.3s; }
.contact-method:not(.no-link):hover { border-color: var(--teal); background: var(--teal-dim); color: var(--white); }
.cm-icon { width: 44px; height: 44px; min-width: 44px; background: var(--teal-dim); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--teal); }
.cm-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-method span { display: block; color: var(--gray); font-size: 0.8rem; }
.contact-method strong { display: block; font-weight: 700; font-size: 0.95rem; }
.contact-socials { display: flex; gap: 10px; }
.cs-btn { padding: 9px 20px; border-radius: 50px; border: 1px solid var(--border); background: transparent; color: var(--gray); font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: all 0.2s; }
.cs-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-dim); }
.contact-form-wrap { background: var(--dark3); border: 1px solid var(--border); border-radius: 24px; padding: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea { background: var(--dark2); border: 1px solid var(--border); border-radius: 12px; padding: 12px 16px; color: var(--white); font-family: var(--font); font-size: 0.95rem; outline: none; transition: border-color 0.2s; width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
input::placeholder, textarea::placeholder { color: rgba(138,155,181,0.5); }
.wpcf7-submit { display: inline-flex; align-items: center; justify-content: center; width: 100%; background: var(--teal); color: var(--dark); padding: 16px 32px; border-radius: 12px; font-family: var(--font); font-weight: 700; font-size: 1rem; border: none; cursor: pointer; transition: all 0.3s; }
.wpcf7-submit:hover { background: var(--teal-light); }
.wpcf7-response-output { border-radius: 12px; padding: 12px 16px; text-align: center; font-weight: 600; }
.wpcf7-mail-sent-ok { background: var(--teal-dim); border-color: var(--teal) !important; color: var(--teal) !important; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid var(--border); }
.footer-top { padding: 60px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; margin-top: 16px; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); background: var(--card-bg); display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; transition: all 0.2s; }
.footer-socials a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-socials a:hover { border-color: var(--teal); color: var(--teal); }
.footer-links-group h5 { font-weight: 700; margin-bottom: 20px; }
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group li a { color: var(--gray); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links-group li a:hover { color: var(--teal); }
.footer-links-group li:not(:has(a)) { color: var(--gray); font-size: 0.88rem; }
.footer-bottom { border-top: 1px solid var(--border); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: var(--gray); font-size: 0.85rem; margin: 0; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 28px; left: 28px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: white; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); text-decoration: none; transition: all 0.3s; animation: pulse-wa 3s ease-in-out infinite; }
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); color: white; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes spin-slow { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }
@keyframes pulse-icon { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 0 rgba(0,200,160,0); } 50% { box-shadow: 0 0 60px rgba(0,200,160,0.15); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes pulse-wa { 0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); } 50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-visual { width: 280px; height: 280px; left: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: repeat(2, 1fr); }
  .work-card.large { grid-column: span 2; }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero { padding: 100px 20px 60px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .scroll-hint { display: none; }
  .nav-links { display: none; position: fixed; top: 72px; right: 0; left: 0; background: rgba(7,13,20,0.98); backdrop-filter: blur(16px); flex-direction: column; padding: 20px; border-bottom: 1px solid var(--border); gap: 4px; }
  .nav-links.open { display: flex; animation: fadeUp 0.3s ease; }
  .nav-socials { display: none; }
  .burger { display: flex; margin-right: auto; }
  .services-grid { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr; }
  .work-card.large { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .contact-form-wrap { padding: 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.4rem; }
  .section-header h2 { font-size: 1.8rem; }
}
