/*
Theme Name: Zivah Concrete - Base44 Design
Theme URI: https://zivahconcrete.com
Description: Professional concrete company website
Version: 1.0
Author: Zivah Concrete
License: GPL v2 or later
Text Domain: zivah-concrete
*/

:root {
    --primary-blue: #1878e8;
    --dark-bg: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-gray: #e0e0e0;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

/* HEADER */
header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    height: 90px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* HEADER CONTAINER */
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;      /* vertical center */
    justify-content: space-between;

    height: 100%;             /* fill header height */
}

/* LOGO */
.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    max-height: 100px;
    width: auto;
}
/* MENU */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-blue);
}
/* HERO SECTION */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.7);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
}

.hero-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 600px;
}

.hero-text {
    font-size: 1.125rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.button-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
	transform: translateY(-2px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* STATS SECTION */
.stats-section {
    background: var(--primary-blue);
    padding: 48px 20px;
    color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* SERVICES SECTION */
.services-section {
    padding: 80px 20px;
    background: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title-underline {
    width: 48px;
    height: 4px;
    background: var(--primary-blue);
    margin: 16px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 208px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 24px;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-title a {
    color: inherit;
    text-decoration: none;
}

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

.service-desc {
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.view-all-link {
    text-align: center;
    margin-top: 40px;
}

.view-all-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-link a:hover {
    text-decoration: underline;
    gap: 12px;
}

/* WHY CHOOSE US SECTION */
.why-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 24px 0 32px;
    color: var(--text-dark);
}

.why-text p {
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.checklist {
    list-style: none;
    space-y: 16px;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-gray);
}

.checklist-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
}

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

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.feature-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.feature-desc {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 20px;
    background: var(--dark-bg);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    color: #999;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* SERVICES PAGE */
.services-hero {
    position: relative;
    background: var(--dark-bg);
    padding: 96px 20px;
    text-align: center;
    color: white;
}

.services-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1400&q=80');
    opacity: 0.2;
}

.services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.services-hero-content .section-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.services-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.services-hero-content .section-title-underline {
    width: 48px;
    height: 4px;
    background: var(--primary-blue);
    margin: 16px auto 24px;
}

.services-hero-content p {
    font-size: 1.125rem;
    color: #ccc;
    line-height: 1.6;
}

.services-grid {
    padding: 80px 20px;
    background: white;
}

.services-grid .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-details .service-underline {
    width: 40px;
    height: 4px;
    background: var(--primary-blue);
    margin-bottom: 16px;
}

.service-details p {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.8;
    font-size: 1rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-gray);
}

.service-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.cta-blue {
    background: var(--primary-blue);
    color: white;
    padding: 63px 20px;
    text-align: center;
}

.cta-blue-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-blue h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

/* ABOUT PAGE */
.about-hero {
    position: relative;
    background: var(--dark-bg);
    padding: 96px 20px;
    text-align: center;
    color: white;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?w=1400&q=80');
    opacity: 0.2;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-content .section-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-hero-content .section-title-underline {
    width: 48px;
    height: 4px;
    background: var(--primary-blue);
    margin: 16px auto 24px;
}

.about-hero-content p {
    font-size: 1.125rem;
    color: #ccc;
    line-height: 1.6;
}

/* STORY SECTION */
.story-section {
    padding: 80px 20px;
    background: white;
}

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

.story-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-image img {
    width: 100%;
    height: 384px;
    object-fit: cover;
    display: block;
}

.story-content {
    flex: 1;
}

.story-content .section-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.story-content .service-underline {
    width: 40px;
    height: 4px;
    background: var(--primary-blue);
    margin-bottom: 24px;
}

.story-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 1rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* MISSION, VISION, VALUES */
.mvv-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

.section-header .section-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-header .section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header .section-title-underline {
    width: 48px;
    height: 4px;
    background: var(--primary-blue);
    margin: 16px auto 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.mvv-card {
    background: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.mvv-icon-wrapper {
    width: 56px;
    height: 56px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.mvv-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-blue);
}

.mvv-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.mvv-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* TEAM SECTION */
.team-section {
    padding: 80px 20px;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.team-member {
    text-align: center;
    transition: all 0.3s ease;
}

.team-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
    height: 224px;
}

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

.team-member:hover .team-image img {
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .team-overlay {
    opacity: 0.1;
}

.team-member h4 {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-member p {
    color: #999;
    font-size: 0.875rem;
}

/* CTA DARK SECTION */
.cta-dark {
    background: var(--dark-bg);
    color: white;
    padding: 64px 20px;
    text-align: center;
}

.cta-dark .cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-dark h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-dark p {
    color: #999;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* FOOTER */
footer {
    background: var(--dark-bg);
    color: #999;
    padding: 40px 20px 20px;
    text-align: center;
    font-size: 0.875rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    nav ul {
        display: none;
    }

    .why-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .button-group {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

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

    .stat-value {
        font-size: 1.875rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 60px;
    }

    .service-item.reverse {
        direction: ltr;
    }

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

    .cta-blue h2 {
        font-size: 1.5rem;
    }
}

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

    .section-title {
        font-size: 1.5rem;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-details h2 {
        font-size: 1.5rem;
    }

    .service-image img {
        height: 200px;
    }

    .cta-blue h2 {
        font-size: 1.25rem;
    }
}

    /* ABOUT PAGE RESPONSIVE */
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .story-image img {
        height: 280px;
    }

    .story-content h2 {
        font-size: 1.5rem;
    }

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

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

    .cta-dark h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* ABOUT PAGE MOBILE */
    .about-hero-content h1 {
        font-size: 1.5rem;
    }

    .story-content h2 {
        font-size: 1.25rem;
    }

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

    .cta-dark h2 {
        font-size: 1.25rem;
    }
}

/* CONTACT PAGE */
.contact-hero {
    position: relative;
    background: var(--dark-bg);
    padding: 96px 20px;
    text-align: center;
    color: white;
}

.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1590579491624-f98f36d4c763?w=1400&q=80');
    opacity: 0.2;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-content .section-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.contact-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.contact-hero-content .section-title-underline {
    width: 48px;
    height: 4px;
    background: var(--primary-blue);
    margin: 16px auto 24px;
}

.contact-hero-content p {
    font-size: 1.125rem;
    color: #ccc;
    line-height: 1.6;
}

/* CONTACT SECTION */
.contact-section {
    padding: 80px 20px;
    background: var(--light-gray);
}

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

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

.info-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    gap: 16px;
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    color: var(--primary-blue);
}

.info-content h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.info-content p {
    color: #999;
    font-size: 0.875rem;
    line-height: 1.4;
}

.info-content p:not(:last-child) {
    margin-bottom: 4px;
}

/* CONTACT FORM */
.contact-form-wrapper {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 32px;
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-form > p {
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.contact-form-element {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(24, 120, 232, 0.1);
}

.form-group textarea {
    resize: none;
    min-height: 140px;
}

.form-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(24, 120, 232, 0.2);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-success-message {
    text-align: center;
    padding: 40px 20px;
}

.form-success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-success-message p {
    color: var(--text-gray);
    max-width: 400px;
    margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .contact-hero-content h1 {
        font-size: 2rem;
    }
}

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

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-form h2 {
        font-size: 1.25rem;
    }
}

/* HEADER & FOOTER STYLES */

/* TOP BAR */
.top-bar {
    background: var(--dark-bg);
    color: white;
    font-size: 13px;
    padding: 8px 20px;
    display: none;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }
}

/* MAIN HEADER */
.main-header {
    background: white;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo a,
.site-logo img {
    display: block;
    height: 48px;
    width: auto;
    text-decoration: none;
    color: var(--dark-bg);
}

.site-logo a:hover {
    color: var(--primary-blue);
}

/* DESKTOP NAVIGATION */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding-bottom: 4px;
}

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

.desktop-nav a.current {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
}

.nav-cta-button {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-left: 8px;
}

.nav-cta-button:hover {
    background: #1563c8;
}

@media (min-width: 768px) {
    .desktop-nav {
        display: flex;
    }
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-blue);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* MOBILE NAVIGATION */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    background: white;
    border-top: 1px solid #f0f0f0;
    padding: 16px 20px;
}

.mobile-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.mobile-nav-cta {
    background: var(--primary-blue);
    color: white;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.mobile-nav-cta:hover {
    background: #1563c8;
}

@media (max-width: 767px) {
    .mobile-nav {
        display: none;
    }
}

/* FOOTER */
.main-footer {
    background: var(--dark-bg);
    color: white;
    padding-top: 48px;
    padding-bottom: 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ccc;
    margin-bottom: 16px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    height: 40px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #999;
    font-size: 14px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 20px;
    border-top: 1px solid #333;
    padding-top: 24px;
    text-align: center;
    color: #666;
    font-size: 12px;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* TESTIMONIALS PAGE */
.testimonials-hero {
    position: relative;
    background: var(--dark-bg);
    padding: 96px 20px;
    text-align: center;
    color: white;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1552664730-d307ca884978?w=1400&q=80');
    opacity: 0.2;
}

.testimonials-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-hero-content .section-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.testimonials-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.testimonials-hero-content .section-title-underline {
    width: 48px;
    height: 4px;
    background: var(--primary-blue);
    margin: 16px auto 24px;
}

.testimonials-hero-content p {
    font-size: 1.125rem;
    color: #ccc;
    line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
    border-color: var(--primary-blue);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating .star {
    width: 18px;
    height: 18px;
    color: #ffc107;
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
}

.testimonial-author {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.testimonial-author h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.testimonial-author p {
    font-size: 0.875rem;
    color: #999;
}

/* RESPONSIVE TESTIMONIALS */
@media (max-width: 768px) {
    .testimonials-hero-content h1 {
        font-size: 2rem;
    }

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

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

    .testimonial-card {
        padding: 24px;
    }
}

/* ACTIVE NAV LINK */
.nav-link {
    padding-bottom: 4px;
}

.nav-link.active {
    color: var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
}

.mobile-nav-link.active {
    color: var(--primary-blue);
}

.site-name {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

.site-name:hover {
    color: var(--primary-blue);
}
/* TESTIMONIALS PAGE - ENHANCED DESIGN */

.testimonials-hero {
    position: relative;
    background: var(--dark-bg);
    padding: 96px 20px;
    text-align: center;
    color: white;
}

.testimonials-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-image: url('https://images.unsplash.com/photo-1487958449943-2429e8be8625?w=1400&q=80');
    opacity: 0.2;
}

.testimonials-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-hero-content .section-label {
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.testimonials-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.testimonials-hero-content .section-title-underline {
    width: 48px;
    height: 4px;
    background: var(--primary-blue);
    margin: 16px auto 24px;
}

.testimonials-hero-content p {
    font-size: 1.125rem;
    color: #ccc;
    line-height: 1.6;
}

/* RATING SUMMARY */
.testimonials-summary {
    padding: 48px 20px;
    background: var(--light-gray);
}

.testimonials-summary-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.summary-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.summary-stars .star-icon {
    width: 28px;
    height: 28px;
    color: var(--primary-blue);
}

.summary-rating {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.summary-text {
    color: #999;
    font-size: 0.95rem;
}

/* TESTIMONIALS GRID SECTION */
.testimonials-grid-section {
    padding: 80px 20px;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 32px;
}

.testimonial-card-enhanced {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card-enhanced:hover {
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    opacity: 0.15;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
    color: var(--primary-blue);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating .star-small {
    width: 16px;
    height: 16px;
    color: var(--primary-blue);
}

.testimonial-text {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author-enhanced {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info {
    flex-grow: 1;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .testimonials-hero-content h1 {
        font-size: 2rem;
    }

    .summary-rating {
        font-size: 2rem;
    }

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

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

    .summary-stars .star-icon {
        width: 24px;
        height: 24px;
    }

    .summary-rating {
        font-size: 1.75rem;
    }

    .testimonial-card-enhanced {
        padding: 24px;
    }
}
