/* ============================================
   ASK ANLEGGSERVICE AS - Groundwork & Excavation
   Style Sheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&family=Source+Sans+Pro:wght@400;600;700&display=swap');

/* ============================================
   CSS Custom Properties (Variables)
   ============================================ */
:root {
    /* Colors */
    --color-slate: #2C3E50;
    --color-slate-dark: #1A252F;
    --color-slate-light: #34495E;
    --color-stone: #7F8C8D;
    --color-stone-light: #95A5A6;
    --color-orange: #E67E22;
    --color-orange-dark: #D35400;
    --color-orange-light: #F39C12;
    --color-off-white: #F8F9FA;
    --color-charcoal: #1A1A1A;
    --color-white: #FFFFFF;
    --color-gray-light: #ECF0F1;

    /* Typography */
    --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.1);
    --shadow-md: 0 4px 16px rgba(26, 26, 26, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 26, 26, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;

    /* Container */
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-off-white);
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

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

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
}

h4 {
    font-size: 1.125rem;
    font-weight: 700;
}

p {
    font-size: 1rem;
    color: var(--color-stone);
}

.lead {
    font-size: 1.125rem;
    line-height: 1.8;
}

/* ============================================
   Layout & Container
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

section {
    padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
    section {
        padding: var(--space-xl) 0;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center { text-align: center; }
.text-slate { color: var(--color-slate); }
.text-orange { color: var(--color-orange); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

.bg-white { background-color: var(--color-white); }
.bg-slate { background-color: var(--color-slate); }
.bg-gray { background-color: var(--color-gray-light); }

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
}

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

.btn--primary:hover {
    background: var(--color-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn--secondary:hover {
    background: var(--color-slate-dark);
    transform: translateY(-2px);
}

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

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

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

.btn--white:hover {
    background: var(--color-gray-light);
}

.btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo__icon svg {
    width: 28px;
    height: 28px;
    fill: var(--color-white);
}

.logo__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 900;
    color: var(--color-slate);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.logo__text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-stone);
    text-transform: none;
    letter-spacing: 0.05em;
}

.nav {
    display: none;
}

@media (min-width: 992px) {
    .nav {
        display: flex;
        align-items: center;
        gap: var(--space-md);
    }
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--color-charcoal);
    padding: 0.5rem 0.75rem;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 3px;
    background: var(--color-orange);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
    transform: scaleX(1);
}

.nav__link--active {
    color: var(--color-slate);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.header__phone {
    display: none;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-slate);
}

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

.header__phone svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-orange);
    stroke-width: 2;
    fill: none;
}

.header__cta {
    display: none;
}

@media (min-width: 992px) {
    .header__cta {
        display: inline-flex;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    z-index: 1001;
}

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

.menu-toggle__line {
    width: 26px;
    height: 3px;
    background: var(--color-slate);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.menu-toggle__line:nth-child(1) {
    margin-bottom: 5px;
}

.menu-toggle__line:nth-child(2) {
    margin-bottom: 5px;
}

.menu-toggle--active .menu-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle--active .menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.menu-toggle--active .menu-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-slate);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.mobile-menu--active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__list {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.mobile-menu__item {
    margin-bottom: var(--space-md);
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-white);
}

.mobile-menu__link:hover {
    color: var(--color-orange);
}

.mobile-menu__phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: var(--space-md);
}

.mobile-menu__phone svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-orange);
    stroke-width: 2;
    fill: none;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    padding: calc(70px + var(--space-lg)) 0 var(--space-lg);
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9) 0%, rgba(26, 37, 47, 0.95) 100%),
                url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding: calc(70px + var(--space-xl)) 0 var(--space-xl);
        min-height: 550px;
        display: flex;
        align-items: center;
    }
}

.hero__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, rgba(230, 126, 34, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(230, 126, 34, 0.1) 87.5%),
        linear-gradient(150deg, rgba(230, 126, 34, 0.1) 12%, transparent 12.5%, transparent 87%, rgba(230, 126, 34, 0.1) 87.5%);
    background-size: 80px 140px;
    opacity: 0.5;
}

.hero__content {
    position: relative;
    z-index: 1;
}

.hero__grid {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero__text {
    color: var(--color-white);
}

.hero__label {
    display: inline-block;
    background: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
}

.hero__title {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-md);
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero__image {
    display: none;
}

@media (min-width: 992px) {
    .hero__image {
        display: block;
        position: relative;
    }

    .hero__image img {
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .hero__image::before {
        content: '';
        position: absolute;
        top: -15px;
        right: -15px;
        width: 100px;
        height: 100px;
        border: 4px solid var(--color-orange);
        border-radius: var(--radius-md);
        z-index: -1;
    }
}

/* Page Hero (Internal pages) */
.page-hero {
    padding: calc(70px + var(--space-lg)) 0 var(--space-lg);
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(26, 37, 47, 0.95) 100%),
                url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .page-hero {
        padding: calc(70px + var(--space-xl)) 0 var(--space-lg);
    }
}

.page-hero__pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--color-off-white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 100%);
}

.page-hero__title {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.page-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Intro Section
   ============================================ */
.intro {
    background: var(--color-white);
}

.intro__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro__text {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--color-charcoal);
}

/* ============================================
   Services Section (Home)
   ============================================ */
.services {
    background: var(--color-off-white);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header__label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-orange);
    margin-bottom: var(--space-xs);
}

.section-header__title {
    margin-bottom: var(--space-sm);
}

.section-header__line {
    width: 60px;
    height: 4px;
    background: var(--color-orange);
    margin: 0 auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border-bottom: 4px solid transparent;
}

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

.service-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-orange);
    stroke-width: 1.5;
    fill: none;
}

.service-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.service-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.service-card__text {
    font-size: 0.9375rem;
    color: var(--color-stone);
}

/* ============================================
   Why Choose Us Section
   ============================================ */
.why-us {
    background: var(--color-slate);
    color: var(--color-white);
}

.why-us .section-header__title {
    color: var(--color-white);
}

.why-us-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    text-align: center;
    padding: var(--space-md);
}

.why-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-sm);
    background: rgba(230, 126, 34, 0.15);
    border: 2px solid var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-orange);
    stroke-width: 2;
    fill: none;
}

.why-card__title {
    font-size: 1.125rem;
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.why-card__text {
    font-size: 0.9375rem;
    color: var(--color-stone-light);
}

/* ============================================
   Service Area Section
   ============================================ */
.service-area {
    background: var(--color-white);
}

.service-area__content {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .service-area__content {
        grid-template-columns: 1fr 1fr;
    }
}

.service-area__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
}

.service-area__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.service-area__item svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-orange);
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.service-area__map {
    background: var(--color-slate);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    color: var(--color-white);
}

.service-area__map-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-sm);
    background: rgba(230, 126, 34, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-area__map-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--color-orange);
    stroke-width: 1.5;
    fill: none;
}

.service-area__map h3 {
    color: var(--color-white);
    margin-bottom: var(--space-xs);
}

.service-area__map p {
    color: var(--color-stone-light);
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    background: var(--color-orange);
    text-align: center;
    padding: var(--space-lg) var(--space-sm);
}

.cta-banner__title {
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-banner__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

/* ============================================
   Services Page
   ============================================ */
.service-section {
    padding: var(--space-lg) 0;
}

.service-section:nth-child(even) {
    background: var(--color-white);
}

.service-block {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .service-block {
        grid-template-columns: 1fr 1fr;
    }

    .service-block--reverse .service-block__image {
        order: 2;
    }
}

.service-block__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.service-block__image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.service-block__content {
    padding: var(--space-sm) 0;
}

.service-block__title {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-block__title-icon {
    width: 48px;
    height: 48px;
    background: var(--color-slate);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-block__title-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-orange);
    stroke-width: 2;
    fill: none;
}

.service-block__tagline {
    font-style: italic;
    color: var(--color-orange);
    margin-bottom: var(--space-sm);
    font-weight: 600;
}

.service-block__text {
    margin-bottom: var(--space-sm);
}

.service-block__list {
    margin-bottom: var(--space-md);
}

.service-block__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-stone);
}

.service-block__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--color-orange);
    border-radius: 2px;
}

/* Process Section */
.process {
    background: var(--color-gray-light);
}

.process-steps {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(5, 1fr);
        gap: var(--space-sm);
    }
}

.process-step {
    text-align: center;
    padding: var(--space-sm);
    position: relative;
}

@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        right: 0;
        width: 50%;
        height: 3px;
        background: var(--color-orange);
        opacity: 0.3;
    }

    .process-step:not(:first-child)::before {
        content: '';
        position: absolute;
        top: 30px;
        left: 0;
        width: 50%;
        height: 3px;
        background: var(--color-orange);
        opacity: 0.3;
    }
}

.process-step__number {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-sm);
    background: var(--color-slate);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.process-step__title {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.process-step__text {
    font-size: 0.875rem;
    color: var(--color-stone);
}

/* ============================================
   Machinery Page
   ============================================ */
.machinery-intro {
    background: var(--color-white);
    text-align: center;
}

.machinery-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .machinery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .machinery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.machinery-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.machinery-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.machinery-card__image {
    position: relative;
    overflow: hidden;
}

.machinery-card__image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.machinery-card__content {
    padding: var(--space-md);
}

.machinery-card__title {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
}

.machinery-card__text {
    font-size: 0.9375rem;
    color: var(--color-stone);
}

/* Safety Section */
.safety {
    background: var(--color-slate);
    color: var(--color-white);
}

.safety__content {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .safety__content {
        grid-template-columns: auto 1fr;
    }
}

.safety__icon {
    width: 100px;
    height: 100px;
    background: rgba(230, 126, 34, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .safety__icon {
        margin: 0;
    }
}

.safety__icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--color-orange);
    stroke-width: 1.5;
    fill: none;
}

.safety__text h3 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.safety__text p {
    color: var(--color-stone-light);
    font-size: 1.0625rem;
}

/* ============================================
   About Page
   ============================================ */
.about-intro {
    background: var(--color-white);
}

.about-intro__content {
    display: grid;
    gap: var(--space-lg);
    align-items: center;
}

@media (min-width: 768px) {
    .about-intro__content {
        grid-template-columns: 2fr 1fr;
    }
}

.about-intro__text {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--color-charcoal);
}

.about-intro__text p {
    margin-bottom: var(--space-md);
    color: var(--color-charcoal);
}

.about-intro__image {
    background: var(--color-gray-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-intro__image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Values */
.values {
    background: var(--color-gray-light);
}

.values-grid {
    display: grid;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-orange);
}

.value-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-sm);
    background: var(--color-slate);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-orange);
    stroke-width: 2;
    fill: none;
}

.value-card__title {
    margin-bottom: var(--space-xs);
}

.value-card__text {
    color: var(--color-stone);
}

/* About Region */
.about-region {
    background: var(--color-white);
}

.about-region__text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--color-charcoal);
}

/* Trust Signals */
.trust {
    background: var(--color-slate);
    padding: var(--space-md) 0;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md) var(--space-lg);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-weight: 600;
}

.trust-item svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-orange);
    stroke-width: 2;
    fill: none;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    background: var(--color-white);
}

.contact-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Contact Form */
.contact-form {
    background: var(--color-gray-light);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
    .contact-form {
        padding: var(--space-lg);
    }
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-stone-light);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-charcoal);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-stone);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.form-group .error-message {
    font-size: 0.8125rem;
    color: #e74c3c;
    margin-top: var(--space-xs);
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-submit {
    width: 100%;
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--space-lg);
}

.form-success.show {
    display: block;
}

.form-success__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success__icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-white);
    stroke-width: 2;
    fill: none;
}

.form-success__title {
    margin-bottom: var(--space-sm);
}

.form-success__text {
    color: var(--color-stone);
}

/* Contact Info */
.contact-info__title {
    margin-bottom: var(--space-md);
}

.contact-info__phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--color-slate);
    color: var(--color-white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.contact-info__phone-icon {
    width: 52px;
    height: 52px;
    background: var(--color-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__phone-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--color-white);
    stroke-width: 2;
    fill: none;
}

.contact-info__phone-text {
    font-size: 0.875rem;
    opacity: 0.8;
}

.contact-info__phone-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.contact-info__items {
    margin-bottom: var(--space-md);
}

.contact-info__item {
    display: flex;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.contact-info__item:last-child {
    border-bottom: none;
}

.contact-info__item-icon {
    width: 44px;
    height: 44px;
    background: var(--color-gray-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info__item-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-slate);
    stroke-width: 2;
    fill: none;
}

.contact-info__item-text h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.contact-info__item-text p,
.contact-info__item-text a {
    font-size: 0.9375rem;
    color: var(--color-stone);
}

.contact-info__item-text a:hover {
    color: var(--color-orange);
}

.contact-info__note {
    background: var(--color-gray-light);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    border-left: 4px solid var(--color-orange);
}

/* Service Area (Contact) */
.contact-service-area {
    background: var(--color-off-white);
}

.contact-service-area__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.contact-service-area__item {
    background: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-sm);
}

/* Map */
.contact-map {
    background: var(--color-white);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-slate-dark);
    color: var(--color-white);
    padding: var(--space-lg) 0 0;
}

.footer__inner {
    display: grid;
    gap: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer__inner {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    margin-bottom: var(--space-sm);
}

.footer__brand .logo__icon {
    background: none;
}

.footer__brand .logo__text {
    color: var(--color-white);
}

.footer__brand .logo__text span {
    color: var(--color-stone-light);
}

.footer__tagline {
    color: var(--color-stone-light);
    margin-top: var(--space-sm);
}

.footer__title {
    font-size: 1rem;
    margin-bottom: var(--space-sm);
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer__links li {
    margin-bottom: 0.5rem;
}

.footer__links a {
    color: var(--color-stone-light);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-orange);
}

.footer__contact p {
    color: var(--color-stone-light);
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.footer__contact a {
    color: var(--color-stone-light);
}

.footer__contact a:hover {
    color: var(--color-orange);
}

.footer__area p {
    color: var(--color-stone-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer__bottom {
    padding: var(--space-md) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: var(--color-stone);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* 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; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 767px) {
    .hero__buttons {
        flex-direction: column;
    }

    .hero__buttons .btn {
        width: 100%;
    }
}
