/* ========================= RESET ========================= */ * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: Arial, Helvetica, sans-serif; background: #111; color: #f5f5f5; line-height: 1.6; } a { color: inherit; text-decoration: none; } button, input, textarea { font: inherit; } /* ========================= VARIABLES ========================= */ :root { --background: #111; --surface: #181818; --surface-light: #222; --text: #f5f5f5; --muted: #a6a6a6; --accent: #f4b400; --border: #303030; --max-width: 1200px; } /* ========================= NAVBAR ========================= */ .navbar { width: 100%; min-height: 80px; display: flex; align-items: center; justify-content: space-between; padding: 0 5%; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; background: rgba(17, 17, 17, 0.94); backdrop-filter: blur(12px); } .navbar::after { content: ""; position: absolute; bottom: 0; left: 0; width: 80px; height: 3px; background: var(--accent); } .logo { font-size: 26px; font-weight: 900; letter-spacing: -1.5px; text-transform: uppercase; } .logo span { color: var(--accent); } .navbar nav { display: flex; gap: 28px; } .navbar nav a { color: #ccc; font-size: 14px; transition: 0.2s; } .navbar nav a:hover { color: var(--accent); } .nav-button { padding: 12px 18px; background: var(--accent); color: #111; font-weight: 700; font-size: 13px; border-radius: 4px; } /* ========================= GENERAL ========================= */ .section { max-width: var(--max-width); margin: auto; padding: 120px 5%; } .eyebrow { color: var(--accent); font-size: 12px; font-weight: 800; letter-spacing: 2px; margin-bottom: 18px; } .section-heading { max-width: 680px; margin-bottom: 55px; } .section-heading h2, .safety h2, .company h2, .contact-section h2, .area-section h2 { font-size: clamp(38px, 5vw, 62px); line-height: 1.05; letter-spacing: -2px; margin-bottom: 24px; } h2 span, h1 span { color: var(--accent); display: block; } .section-heading p:last-child, .company-content > p, .safety-content > p, .contact-intro > p, .area-section p { color: var(--muted); } /* ========================= BUTTONS ========================= */ .button { display: inline-flex; justify-content: center; align-items: center; padding: 16px 25px; border-radius: 4px; font-size: 14px; font-weight: 800; border: none; cursor: pointer; transition: 0.2s; .button { transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease; }} .button.primary { background: var(--accent); color: #111; } .button.primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(244, 180, 0, 0.15); } .button.secondary { border: 1px solid #555; color: white; } .button.secondary:hover { border-color: var(--accent); color: var(--accent); } .button.light { background: white; color: #111; } /* ========================= HERO ========================= */ .hero { max-width: 1400px; margin: auto; min-height: calc(100vh - 80px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; padding: 80px 5%; position: relative; overflow: hidden; } .hero::before { content: ""; position: absolute; width: 500px; height: 500px; right: -250px; top: -250px; border: 1px solid rgba(244, 180, 0, 0.12); border-radius: 50%; pointer-events: none; } .hero h1 { font-size: clamp(50px, 7vw, 90px); line-height: 0.95; letter-spacing: -5px; margin-bottom: 30px; } .hero-text { max-width: 600px; color: var(--muted); font-size: 18px; margin-bottom: 35px; } .hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; } .hero-info { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 35px; color: #aaa; font-size: 12px; } .hero-info strong { color: var(--accent); margin-right: 5px; } .hero-image { min-height: 600px; } .hero-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; display: block; } .image-placeholder { width: 100%; height: 100%; min-height: 500px; display: flex; flex-direction: column; justify-content: center; align-items: center; background: linear-gradient( 135deg, #292929, #151515 ); border: 1px solid var(--border); color: #777; text-align: center; } .image-placeholder span { font-size: 13px; font-weight: 800; letter-spacing: 2px; } .image-placeholder small { margin-top: 8px; color: #555; .hero-image, .company-image, .project-image { position: relative; overflow: hidden; } .hero-image img, .company-image img, .project-image img { transition: transform 0.5s ease; } .hero-image:hover img, .company-image:hover img, .project:hover .project-image img { transform: scale(1.03); } } /* ========================= SERVICES ========================= */ .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; } .service-card { padding: 35px 28px; background: var(--surface); border: 1px solid var(--border); min-height: 280px; transition: 0.25s; } .service-card:hover { transform: translateY(-5px); border-color: var(--accent); } .service-number { color: var(--accent); font-size: 13px; font-weight: 800; margin-bottom: 70px; } .service-card h3 { font-size: 24px; margin-bottom: 15px; } .service-card p { color: var(--muted); font-size: 14px; } /* ========================= QUOTE BANNER ========================= */ .quote-banner { max-width: 1200px; margin: 0 auto; padding: 60px 5%; background: var(--accent); color: #111; display: flex; align-items: center; justify-content: space-between; gap: 40px; } .quote-banner .eyebrow { color: #111; opacity: 0.6; } .quote-banner h2 { font-size: 50px; line-height: 1; margin-bottom: 15px; } .quote-banner p:last-child { max-width: 600px; } /* ========================= PROJECTS ========================= */ .projects-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 15px; } .project { background: var(--surface); } .project.large { grid-row: span 2; } .project-image { min-height: 280px; display: flex; align-items: center; justify-content: center; background: linear-gradient( 135deg, #292929, #171717 ); color: #666; font-size: 12px; font-weight: 800; letter-spacing: 1px; } .project-image { overflow: hidden; } .project-image img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; display: block; } .project.large .project-image { min-height: 580px; } .project-info { padding: 22px; } .project-info span { color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; } .project-info h3 { margin-top: 5px; } /* ========================= PROCESS ========================= */ .process-section { background: var(--surface); padding: 120px 5%; } .process-section .section-heading, .process-grid { max-width: var(--max-width); margin-left: auto; margin-right: auto; } .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); } .process-step { padding: 30px; border-left: 1px solid var(--border); } .process-step > span { color: var(--accent); font-size: 13px; font-weight: 800; } .process-step h3 { margin: 40px 0 12px; font-size: 22px; } .process-step p { color: var(--muted); font-size: 14px; } /* ========================= SAFETY ========================= */ .safety { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; } .safety-list { display: grid; gap: 15px; margin-top: 35px; } .safety-list div { color: #ddd; } .safety-list strong { color: var(--accent); margin-right: 10px; } .safety-box { border: 1px solid var(--border); } .safety-box div { display: flex; justify-content: space-between; align-items: center; padding: 30px; border-bottom: 1px solid var(--border); } .safety-box div:last-child { border-bottom: none; } .safety-box span { color: #999; font-size: 12px; letter-spacing: 1px; } .safety-box strong { font-size: 40px; color: var(--accent); } /* ========================= COMPANY ========================= */ .company { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; } .company-image { min-height: 500px; } .company-image img { width: 100%; height: 500px; object-fit: contain; display: block; background: #181818; }.company-content > p { margin-bottom: 20px; } .text-link { display: inline-block; margin-top: 20px; color: var(--accent); font-weight: 800; } /* ========================= AREA ========================= */ .area-section { max-width: 1200px; margin: auto; padding: 80px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); } .area-list { display: flex; flex-wrap: wrap; align-content: center; gap: 10px; } .area-list span { padding: 14px 20px; border: 1px solid var(--border); color: #ccc; font-size: 13px; } /* ========================= CONTACTS ========================= */ .contact-section { max-width: 1200px; margin: auto; padding: 120px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; } .contact-details { margin-top: 45px; display: grid; gap: 20px; } .contact-details a { display: flex; flex-direction: column; padding-bottom: 20px; border-bottom: 1px solid var(--border); } .contact-details small { color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: 1px; margin-bottom: 5px; } .contact-details strong { font-size: 18px; } /* ========================= FORM ========================= */ .contact-form { display: flex; flex-direction: column; gap: 10px; } .contact-form label { margin-top: 10px; font-size: 12px; font-weight: 700; color: #ccc; } .contact-form input, .contact-form textarea { width: 100%; padding: 16px; background: var(--surface); border: 1px solid var(--border); color: white; outline: none; resize: vertical; } .contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); } .contact-form button { margin-top: 15px; } .form-note { color: #666; font-size: 11px; } /* ========================= FOOTER ========================= */ footer { border-top: 1px solid var(--border); padding: 60px 5% 25px; } .footer-top, .footer-bottom { max-width: 1200px; margin: auto; } .footer-top { display: flex; justify-content: space-between; gap: 40px; padding-bottom: 50px; } .footer-top p { max-width: 350px; margin-top: 15px; color: var(--muted); font-size: 13px; } .footer-links { display: flex; flex-wrap: wrap; gap: 25px; align-items: flex-start; } .footer-links a { color: #aaa; font-size: 13px; } .footer-bottom { padding-top: 25px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; color: #666; font-size: 11px; } .footer-bottom div { display: flex; gap: 20px; } /* ========================= RESPONSIVE ========================= */ @media (max-width: 900px) { .navbar { padding: 15px 5%; } .navbar nav { display: none; } .hero { grid-template-columns: 1fr; padding-top: 60px; } .hero-image { min-height: 400px; } .services-grid { grid-template-columns: repeat(2, 1fr); } .process-grid { grid-template-columns: repeat(2, 1fr); } .safety, .company, .contact-section, .area-section { grid-template-columns: 1fr; } .projects-grid { grid-template-columns: 1fr; } .project.large { grid-row: auto; } .project.large .project-image { min-height: 350px; } .company-image { min-height: 350px; } } @media (max-width: 600px) { .navbar { min-height: 70px; } .nav-button { display: none; } .hero { min-height: auto; padding: 70px 5%; } .hero h1 { font-size: 54px; letter-spacing: -3px; } .hero-text { font-size: 16px; } .hero-image { min-height: 300px; } .image-placeholder { min-height: 300px; } .section, .contact-section, .process-section { padding-top: 80px; padding-bottom: 80px; } .section-heading h2, .safety h2, .company h2, .contact-section h2, .area-section h2 { font-size: 42px; } .services-grid { grid-template-columns: 1fr; } .service-card { min-height: auto; } .service-number { margin-bottom: 40px; } .quote-banner { flex-direction: column; align-items: flex-start; } .quote-banner h2 { font-size: 40px; } .process-grid { grid-template-columns: 1fr; } .process-step { border-left: none; border-top: 1px solid var(--border); } .contact-section { gap: 50px; } .footer-top, .footer-bottom { flex-direction: column; } .footer-links { gap: 15px; } }