/* =========================================================
   DEA SMART SOLUTIONS
   GLOBAL STYLE
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --black: #05070b;
    --dark: #080d16;
    --dark-blue: #0b1424;
    --blue: #087cff;
    --light-blue: #19a7ff;
    --white: #ffffff;
    --gray: #aab4c3;
    --gray-dark: #667085;
    --border: rgba(255, 255, 255, 0.10);
    --blue-border: rgba(8, 124, 255, 0.35);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea {
    font-family: inherit;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #05070b;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--light-blue);
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    padding: 0 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    background: rgba(5, 7, 11, 0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 7, 11, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
    white-space: nowrap;
}

/* Logo perusahaan */
.logo-img {
    width: 45px;
    height: 45px;

    object-fit: contain;
    display: block;
}

/* Tulisan logo */
.logo-text {
    display: flex;
    align-items: center;

    font-size: 22px;
    font-weight: 700;
    line-height: 1;

    color: #191970;
}

/* Smart beda warna */
.logo-text span {
    color: #4169E1;
}

/* NAVIGATION */

.navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navigation a {
    position: relative;
    padding: 10px 16px;
    color: #aeb8c7;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.navigation a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 3px;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: 0.3s ease;
}

.navigation a:hover {
    color: white;
}

.navigation a:hover::after,
.navigation a.active::after {
    transform: scaleX(1);
}

.navigation a.active {
    color: white;
}

/* MOBILE MENU */

.mobile-menu {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: white;
    cursor: pointer;
    font-size: 18px;
}

/* =========================================================
   GENERAL PAGE
========================================================= */

.page {
    min-height: 100vh;
    padding: 150px 7% 90px;
    position: relative;
    overflow: hidden;
}

.page::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(8, 124, 255, 0.10);
    border-radius: 50%;
    filter: blur(100px);
    top: 100px;
    right: -250px;
    pointer-events: none;
}

.page-header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.page-header .small-title {
    display: inline-block;
    color: var(--light-blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 5vw, 65px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-header h1 span {
    color: var(--blue);
}

.page-header p {
    color: var(--gray);
    max-width: 700px;
    margin: auto;
}

/* =========================================================
   HOME
========================================================= */

.home {
    min-height: 100vh;
    padding: 150px 7% 80px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
    position: relative;
    overflow: hidden;
}

/* Background grid */

.home::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black, transparent);
    pointer-events: none;
}

.home::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(0, 101, 255, 0.15);
    filter: blur(130px);
    right: -250px;
    top: 100px;
    pointer-events: none;
}

.home-content {
    position: relative;
    z-index: 2;
}

.home-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid var(--blue-border);
    background: rgba(8, 124, 255, 0.08);
    color: #75bdff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
}

.home-label i {
    color: var(--light-blue);
}

.home h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(45px, 6vw, 78px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.home h1 span {
    display: block;
    color: var(--blue);
}

.home h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.home p {
    max-width: 650px;
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 25px;
}

.home-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.home-tags span {
    padding: 8px 13px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    color: #c9d1dd;
    font-size: 12px;
    transition: 0.3s ease;
}

.home-tags span:hover {
    border-color: var(--blue);
    background: rgba(8, 124, 255, 0.08);
    transform: translateY(-3px);
}

.home-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* BUTTON */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--blue);
    color: white;
    box-shadow: 0 10px 30px rgba(8, 124, 255, 0.25);
}

.btn-primary:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(8, 124, 255, 0.35);
}

.btn-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: white;
}

.btn-secondary:hover {
    border-color: var(--blue);
    background: rgba(8, 124, 255, 0.08);
    transform: translateY(-3px);
}

/* HOME VISUAL */

.home-visual {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.glow-circle {
    width: 330px;
    height: 330px;
    border-radius: 50%;
    border: 1px solid rgba(8, 124, 255, 0.4);
    background:
        radial-gradient(circle at center,
        rgba(8, 124, 255, 0.20),
        rgba(8, 124, 255, 0.04) 45%,
        transparent 70%);
    box-shadow:
        0 0 50px rgba(8, 124, 255, 0.20),
        inset 0 0 50px rgba(8, 124, 255, 0.10);
    animation: pulseGlow 4s infinite ease-in-out;
}

.home-card {
    position: absolute;
    width: 220px;
    padding: 20px;
    border: 1px solid var(--border);
    background: rgba(10, 17, 28, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.home-card i {
    font-size: 25px;
    color: var(--light-blue);
    margin-bottom: 10px;
}

.home-card h3 {
    font-size: 15px;
    margin-bottom: 5px;
}

.home-card p {
    font-size: 11px;
    margin: 0;
    color: var(--gray);
}

.card-one {
    top: 40px;
    left: 10px;
    animation: floating 4s ease-in-out infinite;
}

.card-two {
    right: 0;
    bottom: 50px;
    animation: floating 4s ease-in-out infinite 1.5s;
}

.card-three {
    left: 70px;
    bottom: 0;
    animation: floating 4s ease-in-out infinite 0.7s;
}

/* =========================================================
   ABOUT
========================================================= */

.about-content {
    max-width: 1100px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.about-main-text {
    padding: 35px;
    border: 1px solid var(--border);
    background: linear-gradient(
        135deg,
        rgba(8, 124, 255, 0.08),
        rgba(255, 255, 255, 0.02)
    );
    border-radius: 20px;
    margin-bottom: 40px;
}

.about-main-text p {
    color: var(--gray);
    margin-bottom: 20px;
}

.about-main-text p:last-child {
    margin-bottom: 0;
}

.about-main-text strong {
    color: white;
}

.about-highlight {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.highlight-card {
    padding: 30px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.025);
    border-radius: 18px;
    transition: 0.4s ease;
}

.highlight-card:hover {
    transform: translateY(-7px);
    border-color: var(--blue-border);
    box-shadow: 0 20px 50px rgba(0, 80, 180, 0.15);
}

.highlight-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background: rgba(8, 124, 255, 0.10);
    color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 10px;
}

.highlight-card p {
    color: var(--gray);
    font-size: 14px;
}

.business-lines {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.business-line {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    transition: 0.35s ease;
}

.business-line:hover {
    border-color: var(--blue);
    transform: translateX(5px);
}

.business-number {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.business-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: rgba(8, 124, 255, 0.10);
    color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.business-line h3 {
    font-size: 17px;
    margin-bottom: 7px;
}

.business-line p {
    color: var(--gray);
    font-size: 13px;
}

.about-ending {
    margin-top: 40px;
    padding: 30px;
    border-left: 3px solid var(--blue);
    background: rgba(8, 124, 255, 0.05);
    color: #cbd5e1;
}

/* =========================================================
   SERVICES
========================================================= */

.service-section {
    max-width: 1150px;
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-section.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.service-section.reverse .service-image {
    order: 2;
}

.service-section.reverse .service-info {
    order: 1;
}

.service-brand {
    max-width: 1150px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 2;
}

.service-brand h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    margin-bottom: 10px;
}

.service-brand h2 span {
    color: var(--blue);
}

.service-brand p {
    color: var(--gray);
    max-width: 800px;
}

.service-image {
    height: 360px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: #0b1018;
    position: relative;
}

.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.35),
        transparent
    );
    pointer-events: none;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-section:hover .service-image img {
    transform: scale(1.07);
}

.service-info {
    position: relative;
}

.service-number {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-info h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 30px;
    margin-bottom: 15px;
}

.service-list {
    list-style: none;
    margin: 20px 0;
}

.service-list li {
    color: var(--gray);
    margin-bottom: 9px;
    font-size: 14px;
    padding-left: 22px;
    position: relative;
}

.service-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--blue);
}

.price {
    display: inline-block;
    padding: 8px 13px;
    background: rgba(8, 124, 255, 0.10);
    border: 1px solid var(--blue-border);
    border-radius: 8px;
    color: #72baff;
    font-size: 13px;
    font-weight: 600;
    margin: 10px 0 20px;
}

.service-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: var(--blue);
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s ease;
}

.service-button:hover {
    transform: translateY(-3px);
    background: var(--light-blue);
}

.dealights {
    margin-top: 100px;
}

/* =========================================================
   GALLERY
========================================================= */

.gallery-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.gallery-card {
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    background: #0a0f18;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9),
        rgba(0, 0, 0, 0.05)
    );
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.10);
    filter: brightness(0.7);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 19px;
    transform: translateY(15px);
    transition: 0.4s ease;
}

.gallery-overlay p {
    color: #cbd5e1;
    font-size: 12px;
    transform: translateY(15px);
    transition: 0.4s ease 0.05s;
}

.gallery-card:hover .gallery-overlay h3,
.gallery-card:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Gallery slider */

.gallery-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
}

.gallery-slide {
    min-width: calc(33.333% - 14px);
    height: 330px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.slider-btn {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.slider-btn:hover {
    background: var(--blue);
    border-color: var(--blue);
}

/* =========================================================
   CONTACT
========================================================= */

.contact-page {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.contact-information {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255,255,255,0.025);
    transition: 0.35s ease;
}

.contact-box:hover {
    transform: translateX(7px);
    border-color: var(--blue);
    background: rgba(8,124,255,0.05);
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 12px;
    background: rgba(8,124,255,0.10);
    color: var(--light-blue);
    font-size: 18px;
    transition: 0.3s ease;
}

.contact-box:hover .contact-icon {
    background: var(--blue);
    color: white;
    transform: rotate(5deg);
}

.contact-box h4 {
    font-size: 13px;
    color: var(--gray-dark);
    margin-bottom: 2px;
}

.contact-box p,
.contact-box a {
    font-size: 14px;
    color: #d7dee8;
    word-break: break-word;
}

.contact-box a:hover {
    color: var(--light-blue);
}

/* CONTACT FORM */

.contact-form {
    padding: 35px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,0.025);
    box-shadow: var(--shadow);
}

.form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.form-description {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    color: #dce4ee;
    font-size: 13px;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: rgba(0,0,0,0.25);
    color: white;
    border-radius: 10px;
    padding: 13px 15px;
    outline: none;
    transition: 0.3s ease;
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #667085;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8,124,255,0.10);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 30px 7%;
    border-top: 1px solid var(--border);
    background: #030509;
    text-align: center;
}

.footer p {
    color: #697586;
    font-size: 12px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aab4c3;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: white;
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-4px);
}

/* =========================================================
   REVEAL ANIMATION
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   ANIMATION
========================================================= */

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGlow {
    0%,
    100% {
        transform: scale(1);
        box-shadow:
            0 0 50px rgba(8,124,255,0.20),
            inset 0 0 50px rgba(8,124,255,0.10);
    }

    50% {
        transform: scale(1.04);
        box-shadow:
            0 0 80px rgba(8,124,255,0.35),
            inset 0 0 70px rgba(8,124,255,0.15);
    }
}

/* =========================================================
   RESPONSIVE TABLET
========================================================= */

@media (max-width: 1000px) {

    .navbar {
        padding: 0 5%;
    }

    .home {
        grid-template-columns: 1fr;
        padding: 130px 5% 80px;
    }

    .home-content {
        text-align: center;
    }

    .home p {
        margin-left: auto;
        margin-right: auto;
    }

    .home-tags,
    .home-buttons {
        justify-content: center;
    }

    .home-visual {
        min-height: 430px;
    }

    .page {
        padding-left: 5%;
        padding-right: 5%;
    }

    .service-section,
    .service-section.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-section.reverse .service-image,
    .service-section.reverse .service-info {
        order: initial;
    }

    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-slide {
        min-width: calc(50% - 10px);
    }

    .contact-page {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media (max-width: 700px) {

    .navbar {
        height: 70px;
        padding: 0 5%;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
    }

    .mobile-menu {
        display: block;
    }

    .navigation {
        position: absolute;
        top: 70px;
        left: 5%;
        right: 5%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px;
        background: rgba(8,13,22,0.97);
        border: 1px solid var(--border);
        border-radius: 14px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .navigation.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navigation a {
        padding: 13px 15px;
    }

    .navigation a::after {
        display: none;
    }

    .home {
        padding: 120px 5% 60px;
    }

    .home h1 {
        font-size: 45px;
    }

    .home h2 {
        font-size: 27px;
    }

    .home p {
        font-size: 14px;
    }

    .home-visual {
        min-height: 360px;
    }

    .glow-circle {
        width: 240px;
        height: 240px;
    }

    .home-card {
        width: 160px;
        padding: 15px;
    }

    .home-card h3 {
        font-size: 13px;
    }

    .home-card p {
        font-size: 9px;
    }

    .card-one {
        left: 0;
        top: 20px;
    }

    .card-two {
        right: 0;
        bottom: 30px;
    }

    .card-three {
        left: 50px;
        bottom: 0;
    }

    .page {
        padding: 120px 5% 60px;
    }

    .page-header {
        margin-bottom: 45px;
    }

    .page-header h1 {
        font-size: 42px;
    }

    .about-main-text {
        padding: 25px;
    }

    .about-highlight,
    .business-lines {
        grid-template-columns: 1fr;
    }

    .service-image {
        height: 270px;
    }

    .service-info h3 {
        font-size: 25px;
    }

    .gallery-container {
        grid-template-columns: 1fr;
    }

    .gallery-card {
        height: 300px;
    }

    .gallery-slide {
        min-width: 100%;
    }

    .contact-form {
        padding: 25px;
    }

    .form-title {
        font-size: 24px;
    }
}