:root {
    --blue-primary: #2f4b66;
    --blue-dark: #243a4f;
    --blue-light: #3d5f7d;
    --gray-primary: #4e4c4c;
    --gray-light: #6b6969;
    --gray-lighter: #f5f5f5;
    --white: #ffffff;
    --accent: #c9a227;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--gray-primary);
    line-height: 1.6;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-logo {
    height: 95px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-primary);
    font-weight: 700;
    font-size: 15px;
    transition: color 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links a:hover {
    color: var(--blue-primary);
}

.nav-cta {
    background: var(--blue-primary);
    color: var(--white) !important;
    padding: 14px 28px;
    border-radius: 6px;
    transition: background 0.3s ease !important;
    font-size: 15px;
}

.nav-cta:hover {
    background: var(--blue-dark) !important;
    color: var(--white) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gray-primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 135px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 750px;
    width: 55%;
}

.hero > .container {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 100%;
}

.hero-text {
    position: relative;
    z-index: 1;
    text-align: right;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
    justify-content: flex-end;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-left: auto;
}

.hero h1 {
    font-size: 56px;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.15;
}

.hero h1 span {
    color: #a3c9e0;
    font-weight: 800;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    text-align: right;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--blue-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(47, 75, 102, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--gray-primary);
}

.hero-stat {
    text-align: right;
}

.hero-stat h3 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-stat p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #e8eff5;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-block;
    color: var(--blue-primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    color: var(--gray-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 28px;
    border: 2px solid var(--gray-lighter);
    background: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    color: var(--gray-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--blue-primary);
    color: var(--blue-primary);
}

.tab-btn.active {
    background: var(--blue-primary);
    border-color: var(--blue-primary);
    color: var(--white);
}

.services-content {
    display: none;
}

.services-content.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--blue-primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(47, 75, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: #2f4b66;
}

.service-card h3 {
    font-size: 20px;
    color: var(--gray-primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: var(--white);
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.project-image {
    height: 250px;
    overflow: hidden;
    background: var(--gray-lighter);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 24px;
}

.project-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.project-status.completed {
    background: #d4edda;
    color: #155724;
}

.project-status.in-progress {
    background: #fff3cd;
    color: #856404;
}

.project-info h3 {
    font-size: 20px;
    color: var(--gray-primary);
    margin-bottom: 8px;
}

.project-info p {
    font-size: 15px;
    color: var(--gray-light);
}

.projects-cta {
    text-align: center;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--gray-lighter);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    text-align: center;
}

.about-image {
    border-radius: 16px;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-name {
    text-align: center;
    margin-top: 20px;
}

.about-name h3 {
    font-size: 22px;
    color: var(--gray-primary);
    margin-bottom: 4px;
}

.about-name p {
    font-size: 15px;
    color: var(--gray-light);
    margin: 0;
}

.about-content h2 {
    font-size: 38px;
    color: var(--gray-primary);
    margin-bottom: 24px;
}

.about-content p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature-icon svg {
    width: 12px;
    height: 12px;
    color: var(--white);
}

.about-feature span {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-primary);
}

/* Service Area Section */
.area {
    padding: 80px 0;
    background: var(--blue-primary);
    color: var(--white);
    text-align: center;
}

.area h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.area p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.area-locations {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.area-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    opacity: 0.9;
}

.area-location svg {
    width: 20px;
    height: 20px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 38px;
    color: var(--gray-primary);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 22px;
    height: 22px;
    color: var(--blue-primary);
}

.contact-item-text h4 {
    font-size: 16px;
    color: var(--gray-primary);
    margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 15px;
    color: var(--gray-light);
    text-decoration: none;
}

.contact-item-text a:hover {
    color: var(--blue-primary);
}

.contact-map {
    margin-top: 24px;
}

.contact-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 8px;
}

.contact-form-wrapper {
    background: var(--gray-lighter);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: var(--gray-primary);
    margin-bottom: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    color: var(--gray-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 24px;
}

.form-submit .btn {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    background: var(--gray-primary);
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
    margin-top: 20px;
    line-height: 1.7;
}

.footer-brand .nav-logo {
    background: #ffffff !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    filter: none !important;
    height: 70px;
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-links li {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    opacity: 0.7;
}

.footer-bottom .terms-link {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom .terms-link:hover {
    opacity: 1;
}

/* Form Success/Error States */
.form-message {
    padding: 16px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
}

/* Active Nav Link */
.nav-links a.active {
    color: var(--blue-primary);
}

.nav-cta.active {
    background: var(--blue-dark) !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-primary) 50%, var(--blue-light) 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: right;
    margin-top: 135px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.page-header .container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: 60px;
}

.page-header .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0;
}

.page-header-compact {
    padding: 35px 0;
}

/* Services page adjustments */
.services.services-page,
.page-header + .services {
    padding-top: 80px;
}

/* About page adjustments */
.about.about-page {
    padding-top: 80px;
}

/* Contact page adjustments */
.contact.contact-page {
    padding-top: 80px;
}

/* Stats Section */
.stats-section {
    background: var(--blue-primary);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-size: 48px;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    opacity: 0.8;
}

/* CTA Section */
.cta-section {
    background: var(--gray-lighter);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--gray-primary);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 32px;
}

/* Area Page */
.area-page {
    padding: 80px 0;
    background: var(--white);
}

.area-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.area-intro h2 {
    font-size: 36px;
    color: var(--gray-primary);
    margin-bottom: 20px;
}

.area-intro p {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.7;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.area-card {
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.area-card-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.area-card-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.area-card h3 {
    font-size: 22px;
    color: var(--gray-primary);
    margin-bottom: 12px;
}

.area-card p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* Sectors Page */
.sectors-page {
    padding: 80px 0;
    background: var(--white);
}

.sector-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.sector-block:last-child {
    margin-bottom: 0;
}

.sector-block.reverse {
    direction: rtl;
}

.sector-block.reverse > * {
    direction: ltr;
}

.sector-content h2 {
    font-size: 32px;
    color: var(--gray-primary);
    margin-bottom: 20px;
}

.sector-content p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.sector-list {
    list-style: none;
    padding: 0;
}

.sector-list li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-primary);
    font-size: 15px;
}

.sector-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--blue-primary);
    border-radius: 50%;
}

.sector-image {
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    background: var(--gray-lighter);
}

.sector-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Projects Page */
.projects-page {
    padding: 80px 0;
    background: var(--white);
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.project-card-large {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: var(--white);
}

.project-card-large:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.project-card-large .project-image {
    height: 280px;
}

.project-card-large .project-info {
    padding: 28px;
}

.project-card-large .project-status {
    margin-bottom: 8px;
}

.project-tag {
    display: inline-block;
    background: var(--blue-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

/* Project Detail Galleries */
.project-detail {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.project-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.project-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.project-detail-header h2 {
    font-size: 28px;
    color: var(--gray-primary);
    margin-bottom: 4px;
}

.project-detail-header p {
    font-size: 16px;
    color: var(--gray-light);
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

.project-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .project-gallery {
        grid-template-columns: 1fr;
    }

    .project-detail-header {
        flex-direction: column;
    }
}

/* Health & Safety Page */
.hs-page {
    padding: 80px 0;
    background: var(--white);
}

.hs-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.hs-intro h2 {
    font-size: 36px;
    color: var(--gray-primary);
    margin-bottom: 20px;
}

.hs-intro p {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.7;
}

.hs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.hs-card {
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.hs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.hs-card-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.hs-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.hs-card h3 {
    font-size: 20px;
    color: var(--gray-primary);
    margin-bottom: 12px;
}

.hs-card p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.hs-policies {
    background: var(--gray-lighter);
    border-radius: 12px;
    padding: 48px;
    text-align: center;
}

.hs-policies h2 {
    font-size: 28px;
    color: var(--gray-primary);
    margin-bottom: 32px;
}

.hs-policy-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.hs-policy-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    color: var(--gray-primary);
    font-size: 15px;
}

.hs-policy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        width: 100%;
        padding: 0 24px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-stat h3 {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }

    .stat-item h3 {
        font-size: 36px;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .area-intro h2 {
        font-size: 28px;
    }

    .sector-block,
    .sector-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .sector-image {
        height: 250px;
    }

    .projects-gallery {
        grid-template-columns: 1fr;
    }

    .hs-policies {
        padding: 32px 24px;
    }

    .hs-policy-list {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }
}
