/* ============================================
   HOT SPOT ELECTRICAL — MAIN STYLESHEET
   Industrial Electric Aesthetic
   ============================================ */

/* --- CSS Variables --- */
:root {
    --black: #0a0a0a;
    --dark: #111111;
    --dark-surface: #161616;
    --dark-border: #222222;
    --dark-hover: #1a1a1a;
    --white: #ffffff;
    --gray-100: #f0f0f0;
    --gray-200: #d4d4d4;
    --gray-300: #a3a3a3;
    --gray-400: #737373;
    --gray-500: #525252;
    --blue: #00a8e8;
    --blue-light: #33c0f5;
    --blue-glow: rgba(0, 168, 232, 0.15);
    --yellow: #f5a623;
    --yellow-glow: rgba(245, 166, 35, 0.15);
    --red: #ff4136;
    --red-glow: rgba(255, 65, 54, 0.2);
    --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-heading: 'Barlow Condensed', 'Arial Narrow', sans-serif;
    --font-body: 'Barlow', 'Helvetica Neue', sans-serif;
    --container: 1200px;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-200);
    background: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul { list-style: none; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent { color: var(--yellow); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
    box-shadow: 0 0 20px var(--yellow-glow), 0 4px 12px rgba(0,0,0,0.3);
}
.btn-primary:hover {
    background: #ffb940;
    border-color: #ffb940;
    box-shadow: 0 0 30px var(--yellow-glow), 0 6px 20px rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--gray-500);
}
.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 0 20px var(--blue-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-300);
    border-color: transparent;
    padding: 14px 16px;
}
.btn-ghost:hover {
    color: var(--white);
}

.btn-lg { padding: 18px 36px; font-size: 18px; }
.btn-xl { padding: 22px 48px; font-size: 20px; }
.btn-block { width: 100%; }

/* --- Top Bar --- */
.top-bar {
    background: var(--dark);
    border-bottom: 1px solid var(--dark-border);
    padding: 8px 0;
    font-size: 13px;
    color: var(--gray-400);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 20px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item svg { color: var(--blue); flex-shrink: 0; }

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--yellow);
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
}
.top-bar-phone:hover { color: #ffb940; }

/* --- Navbar --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--dark-border);
    padding: 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-300);
    padding: 8px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
}
.nav-link:hover, .nav-link.active {
    color: var(--white);
    background: var(--dark-hover);
}
.nav-link.active { color: var(--blue); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--yellow);
    padding: 10px 20px;
    border-radius: var(--radius);
    margin-left: 8px;
    transition: all var(--transition);
}
.nav-cta:hover {
    background: #ffb940;
    box-shadow: 0 0 20px var(--yellow-glow);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('../images/hero-bg.png') center center / cover no-repeat;
    opacity: 0.18;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,168,232,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,168,232,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 20%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--blue-glow);
    top: -200px;
    right: -100px;
}
.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: var(--yellow-glow);
    bottom: -100px;
    left: -100px;
}

.spark {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--yellow), 0 0 20px var(--yellow-glow);
    animation: sparkle 3s ease-in-out infinite;
}
.spark-1 { top: 20%; right: 15%; animation-delay: 0s; }
.spark-2 { top: 60%; right: 25%; animation-delay: 1s; }
.spark-3 { top: 40%; right: 40%; animation-delay: 2s; }

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-glow);
    border: 1px solid rgba(0,168,232,0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero-title-accent {
    color: var(--blue);
    display: block;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 36px;
    max-width: 600px;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
}

.hero-bolt {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 500px;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--red) 100%);
    clip-path: polygon(50% 0%, 65% 40%, 100% 40%, 35% 65%, 55% 100%, 40% 60%, 0% 60%);
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Section Shared --- */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Services Home --- */
.services-home {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: rgba(0,168,232,0.3);
    background: var(--dark-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px var(--blue-glow);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-glow);
    border: 1px solid rgba(0,168,232,0.15);
    border-radius: 12px;
    color: var(--blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
    flex: 1;
}

.service-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--blue);
    margin-top: 16px;
    transition: color var(--transition);
}
.service-card:hover .service-link { color: var(--blue-light); }

.services-cta {
    text-align: center;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.services-cta-text {
    color: var(--gray-500);
    font-size: 15px;
}

/* --- Why Us --- */
.why-us {
    padding: 100px 0;
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.why-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    transition: all var(--transition);
}
.why-card:hover {
    border-color: rgba(245,166,35,0.2);
    box-shadow: 0 0 20px var(--yellow-glow);
}

.why-number {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--yellow);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* --- About Preview --- */
.about-preview {
    padding: 100px 0;
    background: var(--dark);
}

.about-preview-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-preview-content .section-tag,
.about-preview-content .section-title {
    text-align: left;
}

.about-preview-content p {
    font-size: 16px;
    color: var(--gray-300);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-preview-cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.about-image-frame {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--dark-border);
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    line-height: 1.6;
}
.about-image-placeholder svg { margin: 0 auto 12px; }

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.stat {
    flex: 1;
    text-align: center;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 20px 12px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--yellow);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
}

/* --- Service Areas Preview --- */
.areas-preview {
    padding: 80px 0;
    background: var(--black);
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.area-tag {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gray-300);
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    padding: 12px 24px;
    border-radius: 100px;
    transition: all var(--transition);
}
.area-tag:hover {
    border-color: var(--blue);
    color: var(--blue);
    box-shadow: 0 0 16px var(--blue-glow);
}

.areas-note {
    text-align: center;
    font-size: 15px;
    color: var(--gray-500);
}

/* --- Testimonials --- */
.testimonials {
    padding: 100px 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
}

.testimonial-stars {
    color: var(--yellow);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 2px;
}
.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}
.testimonials-cta {
    text-align: center;
    margin-top: 48px;
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 48px;
}
.blog-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--blue);
}
.blog-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 12px;
}
.blog-card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}
.blog-card p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}
.blog-card-link {
    margin-top: 16px;
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
}
/* Blog Post */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}
.blog-post-header {
    margin-bottom: 40px;
}
.blog-post-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--yellow);
    font-weight: 700;
    margin-bottom: 16px;
    display: inline-block;
}
.blog-post h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}
.blog-post-meta {
    color: var(--gray-500);
    font-size: 14px;
}
.blog-post-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin: 40px 0 16px;
}
.blog-post-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin: 32px 0 12px;
}
.blog-post-content p {
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.blog-post-content ul, .blog-post-content ol {
    color: var(--gray-300);
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 20px 24px;
}
.blog-post-content li {
    margin-bottom: 8px;
}
.blog-post-content strong {
    color: var(--white);
}
.blog-post-content blockquote {
    border-left: 3px solid var(--blue);
    padding: 16px 24px;
    margin: 24px 0;
    background: rgba(0,168,232,0.05);
    border-radius: 0 8px 8px 0;
}
.blog-post-content blockquote p {
    margin-bottom: 0;
    font-style: italic;
}
.blog-post-cta {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-top: 48px;
}
.blog-post-cta h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    color: var(--white);
    margin-bottom: 12px;
}
.blog-post-cta p {
    color: var(--gray-400);
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-post h1 { font-size: 32px; }
    .blog-post-content h2 { font-size: 24px; }
}

/* --- Final CTA --- */
.final-cta {
    position: relative;
    padding: 100px 0;
    background: var(--black);
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta-text {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-sub {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-500);
}

/* --- Footer --- */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

.footer-description {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-nap p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 4px;
}
.footer-nap a { color: var(--yellow); }
.footer-nap a:hover { color: #ffb940; }

.footer-links h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}
.footer-links h4:not(:first-child) {
    margin-top: 24px;
}

.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--blue); }

.footer-cta-col h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-cta-col > p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-hours {
    margin-top: 20px;
}
.footer-hours p {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
    line-height: 1.5;
}
.footer-hours strong { color: var(--gray-300); }

.footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    font-size: 13px;
    color: var(--gray-500);
}

/* --- Mobile Call Button --- */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(245,166,35,0.4), 0 0 40px var(--yellow-glow);
    z-index: 999;
    animation: pulse-glow 2s ease-in-out infinite;
}

/* --- Blog Call Widget (Nick's photo + call button) --- */
.blog-call-widget {
    display: flex;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    align-items: center;
    gap: 0;
}
.blog-call-widget .nick-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--yellow);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
    margin-right: -8px;
}
.blog-call-widget .call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow);
    color: var(--black);
    padding: 12px 20px 12px 24px;
    border-radius: 50px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(245,166,35,0.4), 0 0 40px var(--yellow-glow);
    animation: pulse-glow 2s ease-in-out infinite;
    white-space: nowrap;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(245,166,35,0.4), 0 0 40px var(--yellow-glow); }
    50% { box-shadow: 0 4px 30px rgba(245,166,35,0.6), 0 0 60px var(--yellow-glow); }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-preview-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-preview-visual { order: -1; }
    .about-image-frame { aspect-ratio: 16/9; max-height: 300px; }
}

@media (max-width: 768px) {
    .top-bar-left { display: none; }
    .top-bar-inner { justify-content: center; }

    .nav-toggle { display: flex; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark);
        border-bottom: 1px solid var(--dark-border);
        flex-direction: column;
        padding: 16px 24px;
        gap: 4px;
    }
    .nav-menu.active { display: flex; }
    .nav-link { width: 100%; padding: 12px 16px; }
    .nav-cta { width: 100%; justify-content: center; margin: 8px 0 0; }

    .hero { min-height: auto; padding: 80px 0 60px; }
    .hero-title { font-size: clamp(40px, 10vw, 60px); }
    .hero-ctas { flex-direction: column; }
    .hero-ctas .btn { width: 100%; justify-content: center; }
    .hero-trust { gap: 16px; }
    .hero-bolt { display: none; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .services-cta { flex-direction: column; gap: 12px; }

    .about-preview-content .section-title { text-align: center; }
    .about-preview-content .section-tag { text-align: center; display: block; }
    .about-preview-cta { flex-direction: column; }
    .about-stats { gap: 12px; }

    .mobile-call-btn { display: flex; }
    .blog-call-widget ~ .mobile-call-btn,
    .has-blog-widget .mobile-call-btn { display: none; }

    .final-cta-title { font-size: clamp(30px, 8vw, 48px); }

    .page-hero { padding: 110px 0 48px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 38px; }
    .section-title { font-size: 28px; }
    .btn-lg { padding: 16px 24px; font-size: 16px; }
    .btn-xl { padding: 18px 32px; font-size: 18px; }
}

/* --- Page-specific: Services Page --- */
.page-hero {
    padding: 140px 0 60px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.page-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,168,232,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,168,232,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--gray-300); }

/* --- Service Detail Section --- */
.service-detail {
    padding: 80px 0;
    border-bottom: 1px solid var(--dark-border);
}
.service-detail:nth-child(even) {
    background: var(--dark);
}

.service-detail-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.service-detail:nth-child(even) .service-detail-inner {
    direction: rtl;
}
.service-detail:nth-child(even) .service-detail-inner > * {
    direction: ltr;
}

.service-detail-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.1;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-detail-content .btn {
    margin-top: 20px;
}

.service-detail-visual {
    aspect-ratio: 16/10;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-visual .placeholder-icon {
    color: var(--gray-500);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .service-detail-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .service-detail:nth-child(even) .service-detail-inner {
        direction: ltr;
    }
    .service-detail-visual { aspect-ratio: 16/9; }
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info-card {
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 20px;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--yellow);
    font-weight: 600;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--dark-border);
    aspect-ratio: 16/9;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact FAQ grid - 2 columns on desktop */
.contact-faq-grid {
    grid-template-columns: 1fr 1fr;
}

/* Contact map full-height variant */
.contact-map-full {
    height: 100%;
    min-height: 400px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .contact-faq-grid {
        grid-template-columns: 1fr;
    }
    .contact-map-full {
        min-height: 300px;
        height: auto;
        aspect-ratio: 4/3;
    }
    .contact-info-card {
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 24px 20px;
        margin-bottom: 8px;
    }
    .contact-map-full {
        min-height: 250px;
        aspect-ratio: 1/1;
    }
    .page-hero {
        padding: 100px 0 40px;
    }
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
