/* ==========================================================================
   ÜNYE PANJUR - MAIN.CSS
   ========================================================================== */

:root {
    --color-primary: #ff6b35;
    --color-primary-light: #ff8a5c;
    --color-primary-dark: #e55a25;
    --color-navy: #1a2942;
    --color-navy-light: #2a3f5f;
    --color-text: #2c3e50;
    --color-text-light: #64748b;
    --color-bg: #f5f7fa;
    --color-white: #ffffff;
    --color-border: #e1e6ed;
    --color-success: #10b981;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-navy);
    font-weight: 700;
    line-height: 1.2;
}

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

/* Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--color-navy);
    color: var(--color-white);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

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

.top-bar-item::before {
    content: "📍";
}

.top-bar-item.hours::before {
    content: "⏰";
}

.top-bar-item.service::before {
    content: "🛠️";
}

.top-bar-item.email::before {
    content: "✉️";
}

/* Header
   ========================================================================== */
.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 20px;
    flex-shrink: 0;
}

.brand-img {
    height: 48px;
    width: auto;
    display: block;
}

.brand-img-light {
    /* footer için hafif görünüm */
    height: 56px;
    background: transparent;
}

.brand {
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--color-navy);
    line-height: 1.1;
}

.brand-tag {
    font-size: 11px;
    color: var(--color-text-light);
    letter-spacing: 1px;
}

.primary-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.primary-nav a {
    color: var(--color-navy);
    font-weight: 600;
    font-size: 15px;
    position: relative;
}

.primary-nav a:hover {
    color: var(--color-primary);
}

.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition);
}

.primary-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,107,53,0.3);
}

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

.btn-outline:hover {
    background-color: var(--color-navy);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--color-primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-navy);
}

/* Hero
   ========================================================================== */
.hero {
    background: linear-gradient(180deg, #ecf2f9 0%, #f5f7fa 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 107, 53, 0.1);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.hero-badge::before {
    content: "●";
    color: var(--color-primary);
    margin-right: 6px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--color-navy);
}

.hero h1 .highlight {
    color: var(--color-primary);
}

.hero p {
    font-size: 17px;
    color: var(--color-text);
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero p strong {
    color: var(--color-navy);
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy);
}

.stat-value-green {
    background-color: var(--color-success);
    color: white;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
    margin-left: 4px;
    vertical-align: middle;
}

.stat-item .stat-label {
    font-size: 13px;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: #c8d4e0;
}

.hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-floating-card {
    position: absolute;
    background-color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.hero-floating-card.top {
    top: 16px;
    left: 16px;
    color: var(--color-success);
}

.hero-floating-card.bottom {
    bottom: 16px;
    right: 16px;
    color: var(--color-primary);
}

.hero-success-toast {
    background-color: var(--color-navy);
    color: white;
    padding: 10px 16px;
    border-radius: var(--radius);
    position: absolute;
    left: 50%;
    bottom: -20px;
    transform: translateX(-50%);
    font-size: 13px;
    box-shadow: var(--shadow-md);
}

/* Feature Bar
   ========================================================================== */
.feature-bar {
    background-color: var(--color-navy);
    padding: 28px 0;
}

.feature-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: center;
    color: white;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(255,107,53,0.15);
    color: var(--color-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text .feature-title {
    font-weight: 700;
    font-size: 15px;
    color: white;
}

.feature-text .feature-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 2px;
}

/* Section base
   ========================================================================== */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--color-bg);
}

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

.section-label {
    display: inline-block;
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background-color: var(--color-primary);
}

.section-label::before { left: -40px; }
.section-label::after  { right: -40px; }

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 16px auto 0;
    border-radius: 2px;
}

/* About / Hakkımızda
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1/1;
    background: #e1e8ef;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-image-stats {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background-color: var(--color-navy);
    color: white;
    padding: 20px;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    text-align: center;
}

.about-image-stats .stat-num {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-primary);
}

.about-image-stats .stat-cap {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.about-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 18px;
}

.about-content h2 .highlight {
    color: var(--color-primary);
}

.about-content p {
    margin-bottom: 14px;
    color: var(--color-text);
}

.about-content p strong {
    color: var(--color-navy);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.fg-item {
    background-color: var(--color-bg);
    padding: 16px;
    border-radius: var(--radius);
    display: flex;
    gap: 12px;
}

.fg-num {
    width: 30px;
    height: 30px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.fg-title {
    font-weight: 700;
    color: var(--color-navy);
    font-size: 15px;
    margin-bottom: 4px;
}

.fg-desc {
    font-size: 13px;
    color: var(--color-text-light);
}

/* Ürünler / Products
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background-color: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.product-thumbnail {
    aspect-ratio: 16/10;
    background: #e1e8ef;
    position: relative;
    overflow: hidden;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumbnail img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 12px;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--color-navy);
}

.product-desc {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 20px;
}

.product-features li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--color-text);
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.product-cta {
    align-self: flex-start;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-cta:hover {
    color: var(--color-primary-dark);
    gap: 10px;
}

/* Hizmetler / Services
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.service-card {
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255,107,53,0.1);
    color: var(--color-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
}

.service-title {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--color-navy);
}

.service-desc {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Süreç / Process
   ========================================================================== */
.process-wrap {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-num {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 14px;
}

.process-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.process-desc {
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* Servis Bölgeleri
   ========================================================================== */
.areas-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.areas-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 14px;
}

.areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.areas-list li {
    background-color: white;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--color-navy);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.areas-list li::before {
    content: "🏘";
    color: var(--color-primary);
}

.areas-list li.rural::before {
    content: "🏘";
}

.areas-list li.region::before {
    content: "📍";
}

.areas-badge-card {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: white;
    border-radius: 20px;
    padding: 36px;
    text-align: center;
}

.areas-badge-card .big-num {
    font-size: 56px;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.areas-badge-card .big-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.areas-features {
    list-style: none;
    text-align: left;
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.areas-features li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
}

.areas-features li strong {
    color: var(--color-primary);
}

/* Projeler / Projects
   ========================================================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    aspect-ratio: 4/3;
    background: #e1e8ef;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-body {
    padding: 20px;
}

.project-location {
    display: inline-block;
    background-color: rgba(255,107,53,0.1);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 8px;
}

.project-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
}

.project-desc {
    font-size: 13px;
    color: var(--color-text-light);
    margin-top: 4px;
}

/* İletişim / Contact
   ========================================================================== */
.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-form-wrap {
    padding: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: white;
    padding: 40px;
}

.contact-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.contact-info p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,107,53,0.2);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.form-row {
    margin-bottom: 18px;
}

.form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    background-color: var(--color-bg);
    transition: var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.1);
}

.form-row textarea {
    min-height: 110px;
    resize: vertical;
}

.form-row .btn {
    width: 100%;
}

/* CTA Banner
   ========================================================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    padding: 48px 0;
    text-align: center;
}

.cta-banner h2 {
    color: white;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 14px;
}

.cta-banner p {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer
   ========================================================================== */
.site-footer {
    background-color: #0f1a2d;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 24px;
}

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

.footer-col h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-primary);
}

.footer-col .brand-name { color: white; }

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
    margin-top: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    font-size: 13px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
}

.footer-col ul li a:hover {
    color: var(--color-primary);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact-item .icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

/* Responsive
   ========================================================================== */
@media (max-width: 992px) {
    .hero .container,
    .about-grid,
    .areas-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .primary-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }

    .primary-nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

@media (max-width: 640px) {
    .section { padding: 50px 0; }
    .hero { padding: 40px 0 30px; }
    .top-bar { font-size: 11px; }
    .top-bar-left, .top-bar-right { gap: 12px; }

    .products-grid,
    .projects-grid,
    .services-grid,
    .process-grid,
    .feature-bar .container,
    .footer-grid,
    .areas-list,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats { gap: 16px; }

    .contact-form-wrap,
    .contact-info { padding: 24px; }

    .process-wrap { padding: 24px; }
}

/* Utility / Page content
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 8px;
}

.breadcrumbs {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}

.breadcrumbs a { color: var(--color-primary-light); }

.entry-content {
    padding: 60px 0;
}

.entry-content h2,
.entry-content h3 {
    margin: 24px 0 14px;
}

.entry-content p {
    margin-bottom: 14px;
}

.comments-area { margin-top: 40px; }
