/* ============================================
   NETTAS IT SOLUTIONS - Main Stylesheet
   Dark Navy + Gold Theme
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --bg-primary: #0b1121;
    --bg-secondary: #111b2e;
    --bg-tertiary: #162040;
    --bg-card: #111b2e;
    --gold: #c8a84e;
    --gold-light: #e8d5a3;
    --gold-dark: #a08030;
    --gold-gradient: linear-gradient(135deg, #c8a84e, #e8d5a3);
    --gold-gradient-hover: linear-gradient(135deg, #e8d5a3, #c8a84e);
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border-color: rgba(200, 168, 78, 0.15);
    --border-glow: rgba(200, 168, 78, 0.3);
    --shadow-gold: 0 0 30px rgba(200, 168, 78, 0.1);
    --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-card-hover: 0 8px 40px rgba(200, 168, 78, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --font-primary: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --container-max: 1200px;
    --container-wide: 1400px;
    --section-padding: 100px 0;
    --header-height: 80px;
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--gold-light);
}

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

ul, ol {
    list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.2rem; }

p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ---------- Utility Classes ---------- */
.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: var(--container-wide);
}

.section-padding {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 25px auto 0;
    font-size: 1.05rem;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-xl);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    border: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--gold-gradient-hover);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 78, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(200, 168, 78, 0.1);
    color: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ---------- Header / Navigation ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition-base);
    background: transparent;
}

/* WP Admin bar offset for logged-in users */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-header.scrolled {
    background: rgba(11, 17, 33, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.site-logo img,
.site-logo svg {
    height: 45px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
    transition: color var(--transition-base);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width var(--transition-base);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 3px;
    border: 1px solid var(--border-color);
    margin-left: 15px;
}

.lang-btn {
    padding: 5px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-muted);
    background: transparent;
    border: none;
    font-family: var(--font-primary);
    letter-spacing: 1px;
}

.lang-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-primary);
}

.lang-btn:hover:not(.active) {
    color: var(--text-primary);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.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);
}

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(200, 168, 78, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(200, 168, 78, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(22, 32, 64, 0.8) 0%, transparent 50%);
    z-index: 0;
}

/* Animated grid background */
.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(200, 168, 78, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 168, 78, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

/* Hero canvas network animation */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(200, 168, 78, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 220px;
    justify-content: center;
    text-align: center;
}

/* Scroll caret */
.scroll-caret {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-decoration: none;
    animation: caretBounce 2s ease-in-out infinite;
}

.scroll-caret svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.scroll-caret:hover svg {
    opacity: 1;
}

@keyframes caretBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Services Section ---------- */
.services {
    background: var(--bg-primary);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-card-hover);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 78, 0.1);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: rgba(200, 168, 78, 0.2);
    transform: scale(1.05);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.service-card .learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: all var(--transition-base);
}

.service-card .learn-more svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.service-card:hover .learn-more svg {
    transform: translateX(4px);
}

/* ---------- About Section ---------- */
.about {
    background: var(--bg-secondary);
    position: relative;
}

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

.about-content h2 {
    margin-bottom: 20px;
}

.about-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 2px;
    margin-top: 15px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(200, 168, 78, 0.12);
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.about-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.about-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-gold);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ---------- Portfolio Section ---------- */
.portfolio {
    background: var(--bg-primary);
    position: relative;
}

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

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-card-hover);
}

.portfolio-image {
    height: 220px;
    position: relative;
    overflow: hidden;
    background: #e8ecf2;
}

.portfolio-image-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background: #e8ecf2;
    transition: transform var(--transition-slow);
}

.portfolio-image-bg svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}

.portfolio-card:hover .portfolio-image-bg {
    transform: scale(1.05);
}

.portfolio-category {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 14px;
    background: rgba(200, 168, 78, 0.9);
    color: var(--bg-primary);
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.portfolio-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.portfolio-tech span {
    padding: 4px 10px;
    background: rgba(200, 168, 78, 0.08);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
}

/* ---------- Technologies Section ---------- */
.technologies {
    background: var(--bg-secondary);
    position: relative;
}

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

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 25px 15px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-align: center;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glow);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

.tech-item svg {
    width: 36px;
    height: 36px;
    fill: var(--gold);
    opacity: 0.75;
    transition: opacity var(--transition-base);
}

.tech-item:hover svg {
    opacity: 1;
}

.tech-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ---------- Process Section ---------- */
.process {
    background: var(--bg-primary);
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border-color);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold);
    transition: all var(--transition-base);
}

.process-step:hover .process-step-number {
    background: var(--gold-gradient);
    color: var(--bg-primary);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(200, 168, 78, 0.3);
}

.process-step h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200, 168, 78, 0.06) 0%, transparent 70%);
    z-index: 0;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* ---------- Contact Section (Homepage mini) ---------- */
.contact-home {
    background: var(--bg-primary);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--border-glow);
    box-shadow: var(--shadow-gold);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 78, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-info-card a:hover {
    color: var(--gold);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.1);
}

.form-group textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-success {
    padding: 15px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    color: #22c55e;
    text-align: center;
    display: none;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-about .site-logo {
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 0.88rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 78, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
    fill: var(--bg-primary);
}

.footer-column h4 {
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-gradient);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-list li svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
    flex-shrink: 0;
    opacity: 0.7;
}

.footer-contact-list li span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-bottom-links a {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

.footer-separator {
    opacity: 0.3;
}

/* ---------- GDPR Cookie Banner ---------- */
.gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 16px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gdpr-banner.visible {
    transform: translateY(0);
}

.gdpr-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.gdpr-content p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.gdpr-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.gdpr-accept {
    padding: 8px 20px;
    background: var(--gold-gradient);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gdpr-accept:hover {
    background: var(--gold-gradient-hover);
    transform: translateY(-1px);
}

.gdpr-content a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.gdpr-content a:hover {
    color: var(--gold-light);
}

/* ---------- GDPR Checkbox ---------- */
.gdpr-checkbox {
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem !important;
    color: var(--text-muted);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 1.5px solid var(--border-glow);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gold);
    border-color: var(--gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid var(--bg-primary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.checkbox-label a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkbox-label a:hover {
    color: var(--gold-light);
}

/* Light section GDPR checkbox */
.section-light .checkbox-label,
.section-light-alt .checkbox-label {
    color: #64748b;
}

.section-light .checkmark,
.section-light-alt .checkmark {
    border-color: #cbd5e1;
}

.section-light .checkbox-label input[type="checkbox"]:checked + .checkmark,
.section-light-alt .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #8b6914;
    border-color: #8b6914;
}

.section-light .checkbox-label a,
.section-light-alt .checkbox-label a {
    color: #8b6914;
}

/* ---------- Contact Page ---------- */
.page-header {
    padding: 150px 0 80px;
    text-align: center;
    background: var(--bg-secondary);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(200, 168, 78, 0.05) 0%, transparent 70%);
}

.page-header h1 {
    position: relative;
}

.page-header p {
    position: relative;
    max-width: 600px;
    margin: 15px auto 0;
}

.contact-page-content {
    padding: 80px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.map-container {
    margin-top: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 250px;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(80%) invert(92%) contrast(83%);
}

/* ---------- 404 Page ---------- */
.page-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.page-404 h1 {
    font-size: 8rem;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.page-404 p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---------- Language Toggle ---------- */
[data-lang-en] {
    display: none;
}

body.lang-en [data-lang-en] {
    display: initial;
}

body.lang-en [data-lang-ro] {
    display: none;
}

/* For block elements */
div[data-lang-en],
p[data-lang-en],
li[data-lang-en],
span[data-lang-en],
h1[data-lang-en],
h2[data-lang-en],
h3[data-lang-en],
h4[data-lang-en] {
    display: none;
}

body.lang-en div[data-lang-en],
body.lang-en p[data-lang-en],
body.lang-en li[data-lang-en],
body.lang-en span[data-lang-en],
body.lang-en h1[data-lang-en],
body.lang-en h2[data-lang-en],
body.lang-en h3[data-lang-en],
body.lang-en h4[data-lang-en] {
    display: block;
}

body.lang-en div[data-lang-ro],
body.lang-en p[data-lang-ro],
body.lang-en li[data-lang-ro],
body.lang-en span[data-lang-ro],
body.lang-en h1[data-lang-ro],
body.lang-en h2[data-lang-ro],
body.lang-en h3[data-lang-ro],
body.lang-en h4[data-lang-ro] {
    display: none;
}

/* Inline display fix for spans in flow */
span[data-lang-ro],
span[data-lang-en] { display: none; }
span[data-lang-ro] { display: inline; }
body.lang-en span[data-lang-en] { display: inline; }
body.lang-en span[data-lang-ro] { display: none; }

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps::before {
        display: none;
    }

    .about-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
        --header-height: 70px;
    }

    .gdpr-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .gdpr-buttons {
        justify-content: center;
    }

    .mobile-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--header-height) + 20px) 30px 30px;
        gap: 10px;
        transition: right var(--transition-base);
        border-left: 1px solid var(--border-color);
        z-index: 1000;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav a {
        font-size: 1.1rem;
    }

    .lang-switcher {
        margin-left: 0;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        margin-bottom: 40px;
    }

    .page-header {
        padding: 120px 0 60px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .page-404 h1 {
        font-size: 5rem;
    }
}

/* ---------- WordPress Specific ---------- */
.wp-block-image img {
    border-radius: var(--radius-md);
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

/* Selection */
::selection {
    background: rgba(200, 168, 78, 0.3);
    color: var(--text-primary);
}

/* ============================================
   LIGHT SECTIONS (Hybrid Theme)
   Hero, CTA, Portfolio, Footer = dark (gold accents)
   Services, About, Technologies, Process, Contact = light (navy accents)
   ============================================ */

:root {
    --navy: #8b6914;
    --navy-light: #a07a1a;
    --navy-dark: #705510;
    --navy-gradient: linear-gradient(135deg, #8b6914, #b8942a);
    --navy-tint: rgba(139, 105, 20, 0.06);
    --navy-tint-strong: rgba(139, 105, 20, 0.12);
}

.section-light {
    background: #f0f2f7 !important;
    position: relative;
}

.section-light-alt {
    background: #f8f9fc !important;
    position: relative;
}

/* Subtle dot pattern for visual texture */
.section-light::after,
.section-light-alt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(139, 105, 20, 0.04) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

/* Section header underline in light = navy */
.section-light .section-header h2::after,
.section-light-alt .section-header h2::after {
    background: var(--navy-gradient);
}

/* About h2 underline in light */
.section-light-alt .about-content h2::after {
    background: var(--navy-gradient);
}

/* Gold text override for light sections - darker gold for contrast */
.section-light .gold-text,
.section-light-alt .gold-text {
    background: var(--navy-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Learn more links in light = navy */
.section-light .service-card .learn-more,
.section-light-alt .service-card .learn-more {
    color: var(--navy);
}

.section-light .service-card:hover .learn-more,
.section-light-alt .service-card:hover .learn-more {
    color: var(--navy-light);
}

.section-light > .container,
.section-light-alt > .container {
    position: relative;
    z-index: 1;
}

/* Navy accent line at top of light sections (transition from dark) */
.section-light-accent-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--navy-gradient);
    z-index: 2;
}

/* Text colors in light sections */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light-alt h1,
.section-light-alt h2,
.section-light-alt h3,
.section-light-alt h4 {
    color: #0f172a;
}

.section-light p,
.section-light-alt p {
    color: #475569;
}

.section-light .section-header p,
.section-light-alt .section-header p {
    color: #64748b;
}

/* Service cards in light */
.section-light .service-card,
.section-light-alt .service-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section-light .service-card:hover,
.section-light-alt .service-card:hover {
    border-color: var(--navy);
    box-shadow: 0 12px 40px rgba(139, 105, 20, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
}

/* Top accent bar on service cards = navy */
.section-light .service-card::before,
.section-light-alt .service-card::before {
    background: var(--navy-gradient);
}

.section-light .service-card p,
.section-light-alt .service-card p {
    color: #64748b;
}

.section-light .service-icon,
.section-light-alt .service-icon {
    background: linear-gradient(135deg, var(--navy-tint), rgba(139, 105, 20, 0.04));
    border: 1px solid rgba(139, 105, 20, 0.1);
}

.section-light .service-icon svg,
.section-light-alt .service-icon svg {
    stroke: var(--navy);
}

.section-light .service-card:hover .service-icon,
.section-light-alt .service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--navy-tint-strong), var(--navy-tint));
    border-color: rgba(139, 105, 20, 0.2);
}

/* About section light */
.section-light .about-content p,
.section-light-alt .about-content p {
    color: #475569;
}

.section-light .about-feature,
.section-light-alt .about-feature {
    background: #ffffff;
    border-color: #e2e8f0;
    color: #334155;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-base);
}

.section-light .about-feature svg,
.section-light-alt .about-feature svg {
    stroke: var(--navy);
}

.section-light .about-feature:hover,
.section-light-alt .about-feature:hover {
    border-color: var(--navy);
    box-shadow: 0 4px 15px rgba(139, 105, 20, 0.08);
}

.section-light .stat-card,
.section-light-alt .stat-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    border-left: 3px solid var(--navy);
}

.section-light .stat-card:hover,
.section-light-alt .stat-card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 30px rgba(139, 105, 20, 0.1);
    transform: translateY(-3px);
}

/* Stat numbers stay gold gradient for brand consistency */
.section-light .stat-number,
.section-light-alt .stat-number {
    background: var(--navy-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-light .stat-label,
.section-light-alt .stat-label {
    color: #64748b;
}

/* Tech items in light */
.section-light .tech-item,
.section-light-alt .tech-item {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.section-light .tech-item:hover,
.section-light-alt .tech-item:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 25px rgba(139, 105, 20, 0.1);
    transform: translateY(-5px);
}

.section-light .tech-item svg,
.section-light-alt .tech-item svg {
    fill: var(--navy);
    opacity: 0.6;
}

.section-light .tech-item:hover svg,
.section-light-alt .tech-item:hover svg {
    opacity: 1;
    fill: var(--navy-light);
}

.section-light .tech-item span,
.section-light-alt .tech-item span {
    color: #475569;
}

/* Portfolio section light */
.section-light .portfolio-card,
.section-light-alt .portfolio-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section-light .portfolio-card:hover,
.section-light-alt .portfolio-card:hover {
    border-color: var(--navy);
    box-shadow: 0 12px 40px rgba(139, 105, 20, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
}

.section-light .portfolio-image,
.section-light-alt .portfolio-image {
    background: #eaecf3;
    border-bottom: 1px solid #e2e8f0;
}

.section-light .portfolio-image-bg,
.section-light-alt .portfolio-image-bg {
    background: #eaecf3;
}

.section-light .portfolio-info h3,
.section-light-alt .portfolio-info h3 {
    color: #0f172a;
}

.section-light .portfolio-info p,
.section-light-alt .portfolio-info p {
    color: #64748b;
}

.section-light .portfolio-tech span,
.section-light-alt .portfolio-tech span {
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.06), rgba(139, 105, 20, 0.03));
    border-color: rgba(139, 105, 20, 0.15);
    color: var(--navy);
    font-weight: 600;
}

.section-light .portfolio-category,
.section-light-alt .portfolio-category {
    background: var(--navy-gradient);
    color: #ffffff;
}

/* Process section light */
.section-light .process-step p,
.section-light-alt .process-step p {
    color: #64748b;
}

.section-light .process-step-number,
.section-light-alt .process-step-number {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--navy);
    color: var(--navy);
}

.section-light .process-step:hover .process-step-number,
.section-light-alt .process-step:hover .process-step-number {
    background: var(--navy-gradient);
    color: #ffffff;
    border-color: var(--navy);
    box-shadow: 0 0 0 6px rgba(139, 105, 20, 0.12), 0 4px 15px rgba(0, 0, 0, 0.08);
}

.section-light .process-steps::before,
.section-light-alt .process-steps::before {
    background: #e2e8f0;
}

/* Contact section light */
.section-light .contact-info-card,
.section-light-alt .contact-info-card {
    background: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 3px solid var(--navy);
}

.section-light .contact-info-card:hover,
.section-light-alt .contact-info-card:hover {
    border-color: var(--navy);
    box-shadow: 0 8px 30px rgba(139, 105, 20, 0.1);
    transform: translateX(5px);
}

.section-light .contact-info-card h4,
.section-light-alt .contact-info-card h4 {
    color: #0f172a;
}

.section-light .contact-info-card p,
.section-light .contact-info-card a,
.section-light-alt .contact-info-card p,
.section-light-alt .contact-info-card a {
    color: #64748b;
}

.section-light .contact-info-card a:hover,
.section-light-alt .contact-info-card a:hover {
    color: var(--navy);
}

.section-light .contact-icon,
.section-light-alt .contact-icon {
    background: linear-gradient(135deg, var(--navy-tint), rgba(139, 105, 20, 0.04));
    border: 1px solid rgba(139, 105, 20, 0.1);
}

.section-light .contact-icon svg,
.section-light-alt .contact-icon svg {
    stroke: var(--navy);
}

/* Form in light sections */
.section-light .form-group input,
.section-light .form-group textarea,
.section-light .form-group select,
.section-light-alt .form-group input,
.section-light-alt .form-group textarea,
.section-light-alt .form-group select {
    background: #ffffff;
    border-color: #cbd5e1;
    color: #0f172a;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.section-light .form-group input:focus,
.section-light .form-group textarea:focus,
.section-light .form-group select:focus,
.section-light-alt .form-group input:focus,
.section-light-alt .form-group textarea:focus,
.section-light-alt .form-group select:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

.section-light .form-group label,
.section-light-alt .form-group label {
    color: #334155;
}

/* Buttons in light sections */
.section-light .btn-primary,
.section-light-alt .btn-primary {
    background: var(--navy-gradient);
    color: #ffffff;
}

.section-light .btn-primary:hover,
.section-light-alt .btn-primary:hover {
    background: linear-gradient(135deg, #705510, #8b6914);
    box-shadow: 0 8px 25px rgba(139, 105, 20, 0.25);
}

.section-light .btn-outline,
.section-light-alt .btn-outline {
    color: var(--navy);
    border-color: var(--navy);
}

.section-light .btn-outline:hover,
.section-light-alt .btn-outline:hover {
    background: var(--navy-tint);
    color: var(--navy-dark);
    border-color: var(--navy-dark);
}

/* Divider line override for light sections */
.section-light .services::before {
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent) !important;
}

/* Process line in light */
.section-light .process-steps::before,
.section-light-alt .process-steps::before {
    background: linear-gradient(90deg, transparent, rgba(139, 105, 20, 0.15), transparent);
}

/* Contact page in light */
.contact-page-content.section-light .map-container {
    border-color: #e2e8f0;
    background: #ffffff;
}

.contact-page-content.section-light .map-container iframe {
    filter: grayscale(30%) contrast(95%);
}

/* Page header stays dark for nice contrast */
.page-header {
    background: var(--bg-primary) !important;
}

/* ---------- Policy Page ---------- */
.policy-page {
    padding: 80px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 1.3rem;
    color: #0f172a;
    margin-top: 35px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.policy-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #8b6914;
    border-radius: 50%;
}

.policy-content ul li strong {
    color: #1e293b;
}
