/*
 Theme Name: Bow Wood Co.
 Theme URI: https://bowwoodco.com
 Author: Bow Wood Co.
 Author URI: https://bowwoodco.com
 Description: Custom WordPress theme for Bow Wood Co. — Calgary's premier CNC cutting and custom millwork shop. Gold & navy design with full animations, responsive layout, and SEO-optimized structure.
 Version: 1.0.0
 License: GNU General Public License v2 or later
 License URI: LICENSE
 Text Domain: bowwoodco
 Tags: custom-background, custom-logo, custom-menu, featured-images, responsive-layout, translation-ready
*/

/* ============================================================
   BOW WOOD CO. — Complete Theme Stylesheet
   Theme: Gold (#c4913b) + Navy (#1a1a2e)
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --gold: #c4913b;
    --gold-dark: #a87d30;
    --gold-light: #d4a94e;
    --gold-pale: rgba(196,145,59,0.1);
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --navy-mid: #0f3460;
    --off-white: #faf9f6;
    --warm-gray: #f5f0ea;
    --text-dark: #1a1a2e;
    --text-medium: #444;
    --text-light: #666;
    --text-muted: #888;
    --white: #fff;
    --radius: 16px;
    --radius-sm: 8px;
    --radius-full: 50px;
    --shadow-sm: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-md: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-lg: 0 30px 80px rgba(0,0,0,0.15);
    --shadow-gold: 0 8px 30px rgba(196,145,59,0.35);
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-dark); line-height: 1.6; background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: #fff; }

/* WordPress Admin Bar Fix */
body.admin-bar .navbar { top: 32px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-family: var(--font-display); font-weight: 700; color: var(--text-dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { line-height: 1.7; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 8px; }

/* ===== LAYOUT ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }
.section-padding { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 4px; color: var(--gold);
    margin-bottom: 16px; position: relative; padding-left: 32px;
}
.section-label::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 24px; height: 2px; background: var(--gold);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.1rem; color: var(--text-light); max-width: 600px; margin: 0 auto; }
.entry-content p, .entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content ul, .entry-content ol {
    max-width: 800px; margin-left: auto; margin-right: auto;
}
.entry-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.entry-content ol { list-style: decimal; padding-left: 24px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 8px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: var(--radius-full); font-weight: 600;
    font-size: 0.95rem; transition: all 0.4s var(--transition);
    border: none; cursor: pointer; position: relative; overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff; box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(196,145,59,0.5); color: #fff; }
.btn-secondary { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-secondary:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--off-white); transform: translateY(-3px); }
a.btn { text-decoration: none; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s var(--transition);
}
.navbar.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 1px 30px rgba(0,0,0,0.06); }
.navbar-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 24px; height: 76px; max-width: 1240px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; color: var(--text-dark); }
.logo span:last-child { color: var(--gold); }
.logo img { max-height: 36px; width: auto; }
#primary-menu { display: flex; align-items: center; gap: 36px; }
#primary-menu > li > a {
    font-size: 0.88rem; font-weight: 500; color: var(--text-medium);
    position: relative; padding: 6px 0; transition: color 0.3s;
}
#primary-menu > li > a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: var(--gold);
    transition: width 0.4s var(--transition);
}
#primary-menu > li > a:hover { color: var(--gold); }
#primary-menu > li > a:hover::after { width: 100%; }
.header-contact { display: flex; align-items: center; gap: 20px; }
.header-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--gold);
    background: var(--gold-pale); padding: 8px 16px; border-radius: var(--radius-full);
}
.header-phone svg { width: 16px; height: 16px; }
.header-cta { display: flex; align-items: center; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.mobile-toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 3px; transition: 0.3s; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== MOBILE NAV ===== */
.mobile-overlay { display:none;position:fixed;inset:0;z-index:998;background:rgba(0,0,0,0.6);backdrop-filter:blur(4px);opacity:0;transition:opacity 0.3s; }
.mobile-overlay.active { display:block;opacity:1; }
.mobile-nav {
    display:none;position:fixed;top:0;right:0;width:300px;height:100vh;
    background:linear-gradient(180deg,#fff 0%,var(--off-white) 100%);
    z-index:999;padding:80px 0 24px;
    box-shadow:-4px 0 30px rgba(0,0,0,0.1);
    transform:translateX(100%);transition:transform 0.4s var(--transition);overflow-y:auto;
}
.mobile-nav.active { transform:translateX(0); }
.mobile-nav li a { display:block;padding:16px 28px;font-size:1rem;font-weight:500;color:var(--text-dark);border-bottom:1px solid #eee; }
.mobile-nav li a:hover { color:var(--gold);background:rgba(196,145,59,0.05);padding-left:36px; }
.mobile-nav .btn { width:calc(100% - 56px);margin:16px 28px;justify-content:center; }
.mobile-close { position:absolute;top:20px;right:20px;background:none;border:none;font-size:1.8rem;color:var(--text-dark);cursor:pointer;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center; }

/* ===== HERO ===== */
.hero-section {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 45%, var(--navy-mid) 100%);
    overflow: hidden;
}
.hero-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(196,145,59,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(196,145,59,0.04) 0%, transparent 50%);
}
.hero-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; position: relative; z-index: 1; padding-bottom: 60px;
}
.hero-content { padding: 60px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: var(--radius-full);
    background: rgba(196,145,59,0.12); color: var(--gold);
    font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 3px; margin-bottom: 28px;
    border: 1px solid rgba(196,145,59,0.2);
}
.hero-badge::before {
    content: ''; width: 6px; height: 6px;
    background: var(--gold); border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:0.5; transform:scale(1.5); }
}
.hero-content h1 {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 28px;
}
.hero-content h1 .gold-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 40px; max-width: 500px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-social-proof {
    display: flex; align-items: center; gap: 16px;
    margin-top: 48px; padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-avatars { display: flex; }
.hero-avatar {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--gold); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.75rem;
    margin-left: -10px; border: 2px solid var(--navy);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-proof-text { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.hero-proof-text strong { color: rgba(255,255,255,0.9); }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-image-frame {
    position: relative; border-radius: 20px; overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    transform: perspective(800px) rotateY(-3deg);
    transition: transform 0.6s var(--transition);
}
.hero-image-frame:hover { transform: perspective(800px) rotateY(0deg); }
.hero-image-placeholder {
    width: 100%; max-width: 500px; height: 420px;
    background: linear-gradient(135deg, rgba(196,145,59,0.15), rgba(15,52,96,0.4));
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: rgba(255,255,255,0.4);
}
.hero-badge-float {
    position: absolute; bottom: -16px; right: -16px;
    background: var(--gold); color: #fff;
    padding: 14px 22px; border-radius: 14px;
    font-weight: 700; font-size: 0.85rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    display: flex; align-items: center; gap: 10px;
    animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.particle {
    position: absolute; border-radius: 50%;
    background: rgba(196,145,59,0.15);
    animation: float linear infinite;
}
@keyframes float {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--off-white); border-top: 1px solid #eee; border-bottom: 1px solid #eee;
    padding: 28px 0; position: relative;
}
.trust-bar::before {
    content: ''; position: absolute; top: 0; left: 50%;
    transform: translateX(-50%); width: 60px; height: 3px;
    background: var(--gold); border-radius: 2px;
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; font-weight: 500; color: var(--text-medium); }
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ===== MARQUEE ===== */
.marquee-section { background: var(--gold); padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 30s linear infinite; }
.marquee-track span {
    flex-shrink: 0; font-size: 0.82rem; font-weight: 600;
    color: #fff; letter-spacing: 3px; text-transform: uppercase;
    padding: 0 48px; display: inline-flex; align-items: center; gap: 10px;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; perspective: 1000px; }
.service-card {
    background: var(--off-white); border-radius: var(--radius);
    padding: 40px 28px; transition: all 0.5s var(--transition);
    border: 1px solid #f0ece6; position: relative; overflow: hidden; cursor: default;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transition: transform 0.5s var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); background: #fff; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px; height: 60px; border-radius: 14px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: #fff; margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(196,145,59,0.3);
    transition: transform 0.4s var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }
.service-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.service-card h3 a { color: inherit; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 0.85rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.service-link:hover { gap: 12px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 100px 0; text-align: center; color: #fff; position: relative; overflow: hidden;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 20px; position: relative; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn-white:hover { transform: translateY(-3px); }

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0; position: relative; overflow: hidden;
}
.stats::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196,145,59,0.06) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(196,145,59,0.04) 0%, transparent 40%);
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px; text-align: center; position: relative; z-index: 1;
}
.stat-item h3 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-item p {
    font-size: 0.85rem; color: rgba(255,255,255,0.5);
    text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--off-white); border-radius: var(--radius);
    padding: 40px 32px; border: 1px solid #f0ece6;
    position: relative; transition: all 0.4s var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.testimonial-card::before {
    content: '"'; font-family: var(--font-display);
    font-size: 5rem; color: var(--gold);
    position: absolute; top: 16px; left: 28px; opacity: 0.15; line-height: 1;
}
.stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-card p { font-size: 0.95rem; color: var(--text-medium); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem; flex-shrink: 0;
}
.testimonial-author h4 { font-size: 0.95rem; color: var(--text-dark); }
.testimonial-author span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== REVIEWS ===== */
.reviews-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.review-quote {
    font-family: var(--font-display); font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700; color: var(--text-dark); line-height: 1.6;
    font-style: italic; position: relative; padding-left: 32px;
}
.review-quote::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 4px; height: calc(100% - 16px);
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    border-radius: 2px;
}
.review-source { font-size: 0.9rem; color: var(--gold); font-weight: 600; margin-top: 16px; }
.review-stars { color: var(--gold); margin-top: 6px; letter-spacing: 3px; font-size: 0.9rem; }
.review-cta { text-align: center; }
.review-cta h3 { font-size: 1.4rem; margin-bottom: 14px; }
.review-cta p { color: var(--text-light); margin-bottom: 28px; line-height: 1.7; }
.review-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.review-badge {
    background: var(--off-white); border: 1px solid #eee;
    border-radius: var(--radius-sm); padding: 16px 20px;
    text-align: center; min-width: 110px; transition: all 0.3s var(--transition);
}
.review-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.review-badge svg { width: 30px; height: 30px; color: var(--gold); margin-bottom: 6px; }
.review-badge span { font-size: 0.78rem; font-weight: 600; color: var(--text-medium); display: block; }

/* ===== FAQ ===== */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.faq-info { padding-top: 20px; }
.faq-info h3 { font-size: 1.6rem; margin-bottom: 12px; }
.faq-info p { color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.faq-icon-lg { width: 80px; height: 80px; border-radius: 20px; background: var(--gold-pale); display: flex; align-items: center; justify-content: center; font-size: 2.2rem; margin-bottom: 20px; }
.faq-list { max-width: 600px; }
.faq-item {
    border: 1px solid #eee; border-radius: var(--radius-sm);
    margin-bottom: 10px; overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s; background: #fff;
}
.faq-item:hover { border-color: rgba(196,145,59,0.3); }
.faq-item.active { border-color: var(--gold); box-shadow: 0 2px 12px rgba(196,145,59,0.1); }
.faq-trigger {
    width: 100%; background: #fff; border: none;
    padding: 22px 24px; text-align: left;
    font-size: 0.95rem; font-weight: 600; color: var(--text-dark);
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; transition: background 0.3s; font-family: var(--font-body);
}
.faq-trigger:hover { background: var(--warm-gray); }
.faq-trigger svg { width: 20px; height: 20px; color: var(--gold); transition: transform 0.3s; flex-shrink: 0; }
.faq-trigger.active svg { transform: rotate(180deg); }
.faq-trigger.active + .faq-answer { max-height: 300px; padding: 0 24px 22px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; padding: 0 24px; }
.faq-answer p { font-size: 0.92rem; color: var(--text-light); line-height: 1.75; }

/* ===== PAGE HERO ===== */
.page-hero {
    min-height: 50vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(196,145,59,0.08) 0%, transparent 50%);
}
.page-hero-content { position: relative; z-index: 1; text-align: center; color: #fff; padding: 100px 24px; }
.page-hero-content h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }

/* ===== PORTFOLIO ===== */
.portfolio-filter { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
    padding: 10px 24px; border-radius: var(--radius-full);
    background: var(--off-white); border: 1px solid #e0e0e0;
    font-size: 0.9rem; font-weight: 500; color: var(--text-medium);
    cursor: pointer; transition: all 0.3s; font-family: var(--font-body);
}
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item {
    border-radius: var(--radius); overflow: hidden; position: relative;
    background: var(--off-white); border: 1px solid #f0ece6;
    transition: all 0.4s var(--transition);
}
.portfolio-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-image {
    width: 100%; height: 240px;
    background: linear-gradient(135deg, rgba(196,145,59,0.1), rgba(15,52,96,0.3));
    display: flex; align-items: center; justify-content: center;
    font-size: 3rem; position: relative; overflow: hidden;
}
.portfolio-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.9), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 24px;
    opacity: 0; transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: #fff; font-size: 1.1rem; margin-bottom: 4px; }
.portfolio-overlay span { color: var(--gold); font-size: 0.85rem; }
.portfolio-info { padding: 20px; }
.portfolio-info h3 { font-size: 1rem; margin-bottom: 4px; font-family: var(--font-body); }
.portfolio-info p { font-size: 0.85rem; color: var(--text-light); }

/* ===== ABOUT PAGE ===== */
.about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h3 { font-size: 1.4rem; margin-bottom: 16px; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-image-placeholder {
    width: 100%; height: 400px;
    background: linear-gradient(135deg, rgba(196,145,59,0.15), rgba(15,52,96,0.3));
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: rgba(255,255,255,0.4); border-radius: var(--radius);
}
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; }
.value-card {
    background: var(--off-white); padding: 32px; border-radius: var(--radius-sm);
    border: 1px solid #f0ece6; transition: all 0.3s;
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-card h4 { font-family: var(--font-body); font-size: 1rem; margin-bottom: 8px; color: var(--gold-dark); }

/* ===== SERVICE DETAIL ===== */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.service-detail-content h3 { font-size: 1.6rem; margin-bottom: 16px; }
.service-detail-content p { color: var(--text-light); margin-bottom: 16px; }
.service-detail-content ul { list-style: none; margin: 16px 0; }
.service-detail-content ul li { padding: 8px 0; color: var(--text-light); display: flex; align-items: center; gap: 10px; }
.service-detail-content ul li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.service-detail-placeholder {
    width: 100%; height: 400px;
    background: linear-gradient(135deg, rgba(196,145,59,0.15), rgba(15,52,96,0.3));
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; color: rgba(255,255,255,0.4); border-radius: var(--radius);
}
.service-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 32px; }
.feature-item { padding: 24px; background: var(--off-white); border-radius: var(--radius-sm); border: 1px solid #f0ece6; }
.feature-item h4 { font-family: var(--font-body); font-size: 0.95rem; margin-bottom: 6px; }
.feature-item p { font-size: 0.85rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 32px; }
.contact-detail {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 16px; padding: 16px;
    background: rgba(255,255,255,0.04); border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06); transition: background 0.3s;
}
.contact-detail:hover { background: rgba(255,255,255,0.08); }
.contact-detail-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(196,145,59,0.2), rgba(196,145,59,0.05));
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 22px; height: 22px; color: var(--gold); }
.contact-detail-text strong { display: block; font-size: 0.8rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.contact-detail-text span, .contact-detail-text a { font-size: 0.95rem; color: rgba(255,255,255,0.8); }
.contact-detail-text a:hover { color: var(--gold); }
.wp-contact-form { background: rgba(255,255,255,0.04); border-radius: var(--radius); padding: 40px; border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); }
.wp-contact-form input[type="text"],
.wp-contact-form input[type="email"],
.wp-contact-form input[type="tel"],
.wp-contact-form textarea,
.wp-contact-form select {
    width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm);
    color: #fff; font-size: 0.95rem; font-family: inherit; transition: all 0.3s;
}
.wp-contact-form input::placeholder, .wp-contact-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.wp-contact-form input:focus, .wp-contact-form textarea:focus, .wp-contact-form select:focus {
    outline: none; border-color: var(--gold);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(196,145,59,0.1);
}
.wp-contact-form textarea { resize: vertical; min-height: 110px; }
.wp-contact-form select option { background: var(--navy); color: #fff; }
.wp-contact-form .wpcf7-submit { width: 100%; justify-content: center; }
.form-note { font-size: 0.8rem; color: rgba(255,255,255,0.35); margin-top: 12px; text-align: center; }

/* ===== GOOGLE MAP ===== */
.map-container { width: 100%; height: 350px; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); margin-top: 32px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer { background: #0d0d1a; color: rgba(255,255,255,0.5); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
.footer-brand .logo { font-size: 1.5rem; margin-bottom: 16px; display: inline-flex; color: #fff; }
.footer-brand .logo span:last-child { color: var(--gold); }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; max-width: 280px; color: rgba(255,255,255,0.4); }
.footer h4 {
    font-size: 0.85rem; font-weight: 700; color: #fff;
    margin-bottom: 20px; text-transform: uppercase; letter-spacing: 2px;
    position: relative; padding-bottom: 12px;
}
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    font-size: 0.9rem; color: rgba(255,255,255,0.4);
    transition: all 0.3s; display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold); transform: translateX(4px); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; color: #fff;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #fff !important; transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0; display: flex;
    justify-content: space-between; align-items: center;
    font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--gold); }

/* ===== SCROLL TO TOP ===== */
.floating-cta {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff; width: 64px; height: 64px; border-radius: 50%;
    display: none; align-items: center; justify-content: center;
    box-shadow: 0 8px 30px rgba(196,145,59,0.5);
    transition: all 0.4s var(--transition); border: none; font-size: 1.4rem;
}
.floating-cta:hover { transform: scale(1.15); box-shadow: 0 12px 40px rgba(196,145,59,0.6); }
.scroll-top {
    position: fixed; bottom: 30px; left: 30px; z-index: 999;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--navy); color: #fff; border: none;
    display: none; align-items: center; justify-content: center;
    font-size: 1.1rem; box-shadow: var(--shadow-sm);
    transition: all 0.3s; cursor: pointer;
}
.scroll-top:hover { background: var(--gold); }

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===== WOOCOMMERCE COMPATIBILITY ===== */
.woocommerce .site-content { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.woocommerce-notices-wrapper { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ===== ARCHIVE GRID ===== */
.archive-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.archive-card {
    background: var(--off-white); border-radius: var(--radius);
    border: 1px solid #f0ece6; overflow: hidden;
    transition: all 0.4s var(--transition);
}
.archive-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(196,145,59,0.2); }
.archive-image { overflow: hidden; }
.archive-image img { transition: transform 0.4s; width: 100%; height: auto; display: block; }
.archive-card:hover .archive-image img { transform: scale(1.03); }
.archive-content { padding: 24px; }
.archive-meta { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 10px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.archive-content h2 { font-size: 1.15rem; margin-bottom: 10px; }
.archive-content h2 a { color: inherit; }
.archive-content h2 a:hover { color: var(--gold); }
.archive-comments { font-size: 0.82rem; color: var(--text-muted); margin-left: auto; }
.archive-pagination { grid-column: 1 / -1; text-align: center; margin-top: 40px; }
.archive-pagination .nav-links { display: flex; justify-content: center; gap: 16px; }
.archive-pagination .page-numbers {
    padding: 10px 20px; border-radius: var(--radius-full);
    background: var(--off-white); border: 1px solid #e0e0e0;
    font-size: 0.9rem; color: var(--text-medium); transition: all 0.3s;
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero-content h1 { margin-left: auto; margin-right: auto; }
    .hero-content p { margin: 0 auto 32px; }
    .hero-ctas { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .hero-visual { order: -1; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .reviews-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .hero-image-placeholder { max-width: 400px; height: 320px; }
    .about-content-grid { grid-template-columns: 1fr; gap: 40px; }
    .service-detail-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    #primary-menu { display: none; }
    .header-contact { display: none; }
    .mobile-toggle { display: flex; }
    .hero-section { min-height: auto; padding: 100px 0 80px; }
    .section-padding { padding: 64px 0; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .archive-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-values { grid-template-columns: 1fr; }
    .service-features { grid-template-columns: 1fr; }
    .navbar-inner { height: 64px; }
}