/*
Theme Name: OfficialSales Pro
Theme URI: https://officialsales.com.sg
Author: OfficialSales Team
Author URI: https://officialsales.com.sg
Description: A premium dark-mode real estate listings theme with AI assistant, filterable property grid, and responsive design. Built for new launch property directories.
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: officialsales
Tags: real-estate, dark-mode, responsive, property-listings, ai-assistant
*/

/* ============================================
   OFFICIALSALES PRO — WORDPRESS THEME
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a24;
  --bg-card-hover: #222230;
  --border: #2a2a3a;
  --border-light: #3a3a4a;
  --text: #f0f0f5;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a7a;
  --accent: #6366f1;
  --accent-light: #818cf8;
  --accent-glow: rgba(99, 102, 241, 0.15);
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --gradient-1: #6366f1;
  --gradient-2: #8b5cf6;
  --gradient-3: #ec4899;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.5);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] {
  --bg: #fafafa;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f5f7;
  --border: #e5e5e5;
  --border-light: #d0d0d0;
  --text: #111111;
  --text-secondary: #555555;
  --text-muted: #888888;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  overflow-x: hidden; transition: background 0.3s, color 0.3s;
}
::selection { background: var(--accent); color: white; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }

/* Animations */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes typing { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

.animate { opacity: 0; }
.animate.fade-up { animation: fadeUp 0.7s ease forwards; }
.animate.fade-in { animation: fadeIn 0.7s ease forwards; }
.animate.slide-left { animation: slideInLeft 0.7s ease forwards; }
.animate.slide-right { animation: slideInRight 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; } .delay-2 { animation-delay: 0.2s; } .delay-3 { animation-delay: 0.3s; }

/* WordPress Alignments */
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.5rem; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,10,15,0.8); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: var(--transition);
}
[data-theme="light"] .site-header { background: rgba(250,250,250,0.85); }
.site-header.scrolled { box-shadow: var(--shadow-lg); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; justify-content: space-between; align-items: center; height: 72px;
}
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; letter-spacing: -0.5px; }
.logo-icon { width: 36px; height: 36px; background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.main-nav { display: flex; align-items: center; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.main-nav a { color: var(--text-secondary); text-decoration: none; font-weight: 500; font-size: 0.9rem; transition: var(--transition); position: relative; }
.main-nav a:hover { color: var(--text); }
.main-nav a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2)); transition: width 0.3s; border-radius: 2px; }
.main-nav a:hover::after { width: 100%; }
.main-nav .current-menu-item a, .main-nav .current_page_item a { color: var(--accent-light); }
.main-nav .current-menu-item a::after, .main-nav .current_page_item a::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 1rem; }
.btn { padding: 0.6rem 1.4rem; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: var(--transition); border: none; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-card); color: var(--text); border-color: var(--border-light); }
.btn-primary { background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2)); color: white; box-shadow: 0 4px 20px var(--accent-glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.btn-large { padding: 1rem 2rem; font-size: 1rem; }
.btn-danger { background: var(--danger); color: white; }
.theme-toggle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; transition: var(--transition); }
.theme-toggle:hover { background: var(--bg-card-hover); color: var(--text); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 1.5rem; cursor: pointer; }
.mobile-menu { position: fixed; top: 72px; left: 0; right: 0; bottom: 0; background: var(--bg-elevated); z-index: 999; padding: 2rem; display: none; flex-direction: column; gap: 1.5rem; animation: fadeIn 0.3s ease; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; font-size: 1.2rem; font-weight: 600; padding: 1rem; border-radius: var(--radius-sm); transition: var(--transition); }
.mobile-menu a:hover { background: var(--bg-card); }

/* Container */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 2rem; }

/* Section Headers */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section-header .eyebrow { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-light); margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.section-header p { color: var(--text-secondary); font-size: 1.1rem; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 2rem 4rem; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99,102,241,0.15), transparent), radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139,92,246,0.1), transparent); pointer-events: none; }
.hero-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 100px; font-size: 0.85rem; color: var(--accent-light); font-weight: 600; margin-bottom: 1.5rem; }
.hero-badge .dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.hero h1 .gradient-text { background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3)); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientShift 5s ease infinite; }
.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 520px; margin-bottom: 2rem; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.stat-item h3 { font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; }
.stat-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; margin-top: 0.3rem; }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.floating-card { position: absolute; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; box-shadow: var(--shadow); animation: float 4s ease-in-out infinite; }
.floating-card.card-1 { top: 10%; right: -20px; animation-delay: 0s; }
.floating-card.card-2 { bottom: 15%; left: -30px; animation-delay: 2s; }
.floating-card .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.floating-card .value { font-size: 1.1rem; font-weight: 700; color: var(--text); }

/* Features */
.features { background: var(--bg-elevated); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3)); transform: scaleX(0); transition: transform 0.4s; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-light); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--accent-glow), transparent); border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6; }

/* Listings */
.listings-filter { display: flex; gap: 0.75rem; margin-bottom: 2rem; flex-wrap: wrap; justify-content: center; }
.filter-chip { padding: 0.5rem 1.2rem; border-radius: 100px; border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: var(--transition); }
.filter-chip:hover, .filter-chip.active { background: var(--accent); color: white; border-color: var(--accent); }
.listings-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
.listing-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); cursor: pointer; text-decoration: none; color: inherit; display: block; }
.listing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--border-light); }
.listing-image { height: 200px; background: linear-gradient(135deg, #1e1e2e, #2a2a3e); position: relative; overflow: hidden; }
.listing-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.listing-card:hover .listing-image img { transform: scale(1.05); }
.listing-badge { position: absolute; top: 1rem; left: 1rem; padding: 0.35rem 0.8rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-selling { background: var(--success); color: white; }
.badge-preview { background: var(--warning); color: #1a1a1a; }
.badge-sold { background: var(--danger); color: white; }
.listing-content { padding: 1.5rem; }
.listing-meta { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.listing-meta span { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; }
.listing-content h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.listing-content .location { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; }
.listing-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid var(--border); }
.listing-price { font-weight: 700; color: var(--accent-light); }
.listing-link { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: color 0.3s; }
.listing-link:hover { color: var(--accent-light); }

/* AI Assistant Page */
.ai-page { padding-top: 100px; min-height: 100vh; display: flex; flex-direction: column; }
.ai-container { max-width: 900px; margin: 0 auto; width: 100%; flex: 1; display: flex; flex-direction: column; padding: 2rem; }
.ai-header { text-align: center; margin-bottom: 2rem; }
.ai-header h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.ai-header p { color: var(--text-secondary); }
.ai-chat-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 500px; }
.ai-messages { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.ai-message { display: flex; gap: 1rem; max-width: 85%; animation: fadeUp 0.3s ease; }
.ai-message.user { align-self: flex-end; flex-direction: row-reverse; }
.ai-message.bot { align-self: flex-start; }
.ai-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ai-message.user .ai-avatar { background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2)); }
.ai-message.bot .ai-avatar { background: var(--bg-elevated); border: 1px solid var(--border); }
.ai-bubble { padding: 1rem 1.25rem; border-radius: 18px; font-size: 0.95rem; line-height: 1.6; }
.ai-message.user .ai-bubble { background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2)); color: white; border-bottom-right-radius: 4px; }
.ai-message.bot .ai-bubble { background: var(--bg-elevated); border: 1px solid var(--border); border-bottom-left-radius: 4px; }
.ai-typing { display: flex; gap: 0.3rem; padding: 1rem 1.25rem; }
.ai-typing span { width: 8px; height: 8px; background: var(--text-muted); border-radius: 50%; animation: typing 1.4s infinite; }
.ai-typing span:nth-child(2) { animation-delay: 0.2s; }
.ai-typing span:nth-child(3) { animation-delay: 0.4s; }
.ai-input-area { padding: 1rem 1.5rem; border-top: 1px solid var(--border); display: flex; gap: 0.75rem; background: var(--bg-elevated); }
.ai-input-area input { flex: 1; padding: 0.9rem 1.25rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-size: 1rem; outline: none; transition: var(--transition); }
.ai-input-area input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.ai-input-area input::placeholder { color: var(--text-muted); }
.ai-suggestions { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 0 1.5rem 1rem; background: var(--bg-elevated); }
.ai-suggestion { padding: 0.4rem 0.9rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: 100px; font-size: 0.8rem; color: var(--text-secondary); cursor: pointer; transition: var(--transition); }
.ai-suggestion:hover { background: var(--accent-glow); border-color: var(--accent); color: var(--accent-light); }

/* About Page */
.about-hero { padding-top: 120px; padding-bottom: 4rem; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1280px; margin: 0 auto; }
.about-grid img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.about-grid h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.about-grid p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; max-width: 1280px; margin: 0 auto; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; transition: var(--transition); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2)); margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 700; color: white; }
.team-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.team-card .role { color: var(--accent-light); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }
.team-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* Contact Page */
.contact-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.9rem 1rem; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text); font-size: 1rem; outline: none; transition: var(--transition); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info > p { color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.7; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon { width: 44px; height: 44px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Listing Detail */
.detail-hero { padding-top: 100px; padding-bottom: 3rem; }
.detail-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
.detail-gallery { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.detail-gallery img { width: 100%; height: 400px; object-fit: cover; }
.detail-info { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.detail-info h1 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.detail-info .detail-location { color: var(--text-secondary); margin-bottom: 1.5rem; }
.detail-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.detail-stat { text-align: center; padding: 1rem; background: var(--bg-elevated); border-radius: var(--radius-sm); }
.detail-stat .value { font-size: 1.3rem; font-weight: 700; color: var(--accent-light); }
.detail-stat .label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; margin-top: 0.25rem; }
.detail-section { margin-bottom: 2rem; }
.detail-section h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.75rem; }
.detail-section p, .detail-section li { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; }
.detail-section ul { list-style: none; }
.detail-section li { padding: 0.4rem 0; padding-left: 1.5rem; position: relative; }
.detail-section li::before { content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 700; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.05)); text-align: center; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.cta-section p { color: var(--text-secondary); font-size: 1.15rem; max-width: 560px; margin: 0 auto 2rem; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--warning); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2)); display: flex; align-items: center; justify-content: center; font-weight: 700; color: white; font-size: 0.9rem; }
.author-info h4 { font-size: 0.95rem; font-weight: 600; }
.author-info p { font-size: 0.8rem; color: var(--text-muted); }

/* Footer */
.site-footer { background: var(--bg-elevated); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-secondary); font-size: 0.95rem; line-height: 1.7; margin: 1rem 0; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-card); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: white; border-color: var(--accent); transform: translateY(-2px); }
.footer-section h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; color: var(--text); }
.footer-section a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; margin-bottom: 0.8rem; transition: color 0.3s; }
.footer-section a:hover { color: var(--accent-light); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }

/* Toast */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 1rem 1.5rem; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.75rem; z-index: 9999; transform: translateY(100px); opacity: 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--success); display: flex; align-items: center; justify-content: center; color: white; font-size: 0.9rem; }

/* WordPress Content */
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4 { margin-bottom: 1rem; margin-top: 2rem; }
.entry-content p { margin-bottom: 1.25rem; color: var(--text-secondary); line-height: 1.8; }
.entry-content ul, .entry-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; color: var(--text-secondary); }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content a { color: var(--accent-light); text-decoration: none; }
.entry-content a:hover { text-decoration: underline; }
.entry-content img { max-width: 100%; border-radius: var(--radius-sm); }
.entry-content blockquote { border-left: 3px solid var(--accent); padding-left: 1.5rem; margin: 2rem 0; font-style: italic; color: var(--text-secondary); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span { padding: 0.6rem 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-secondary); text-decoration: none; font-weight: 600; transition: var(--transition); }
.pagination a:hover, .pagination .current { background: var(--accent); color: white; border-color: var(--accent); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .contact-grid, .detail-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero { padding: 6rem 1.5rem 3rem; min-height: auto; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { gap: 1.5rem; }
  .section-header { margin-bottom: 2.5rem; }
  section { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .floating-card { display: none; }
  .ai-message { max-width: 95%; }
  .detail-stats { grid-template-columns: repeat(2, 1fr); }
}
