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

:root {
    --yellow: #FFE500;
    --yellow-dark: #E6CF00;
    --black: #1a1a1a;
    --black-light: #2a2a2a;
    --white: #ffffff;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;

    --section-padding: clamp(48px, 6vw, 64px);
    --container-max: 1200px;
    --gap: clamp(40px, 6vw, 80px);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);

    --campaign-height: 40px;
    --nav-height: 70px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--campaign-height) + var(--nav-height));
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection {
    background: var(--yellow);
    color: var(--black);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 7vw, 4rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    min-height: 48px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

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

.btn-full {
    width: 100%;
}

.campaign-bar {
    background: var(--black);
    color: var(--white);
    height: var(--campaign-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.campaign-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
}

.campaign-bar p {
    font-size: 13px;
    margin: 0;
}

.campaign-bar strong {
    color: var(--yellow);
}

.campaign-bar p a {
    color: var(--yellow);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.campaign-bar p a:hover {
    color: var(--white);
}

.campaign-bar-social {
    display: flex;
    gap: 8px;
}

.campaign-bar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.7;
    transition: opacity 0.2s;
}

.campaign-bar-social a:hover {
    opacity: 1;
}

.nav {
    position: fixed;
    top: var(--campaign-height);
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--yellow);
    height: var(--nav-height);
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 42px;
    width: auto;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 8px 0;
    position: relative;
}

.nav-links > a::after,
.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width 0.3s ease;
}

.nav-links > a:hover::after,
.nav-dropdown:hover .nav-dropdown-trigger::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: 8px 0;
    position: relative;
    cursor: pointer;
}

.nav-dropdown-trigger svg {
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 8px 0;
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.2s, padding-left 0.2s;
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: var(--gray-100);
    padding-left: 24px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
    padding: 8px 16px;
    background: var(--black);
    color: var(--white);
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--black-light);
}

.nav-cta-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

.nav-cta-number {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
}

.nav-social {
    display: flex;
    gap: 8px;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--black);
    transition: opacity 0.3s;
}

.nav-social a:hover {
    opacity: 0.6;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    min-width: 48px;
    min-height: 48px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

.mobile-menu {
    position: fixed;
    top: calc(var(--campaign-height) + var(--nav-height));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--yellow);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--black);
    transition: opacity 0.3s;
}

.mobile-menu-link:hover {
    opacity: 0.6;
}

.mobile-menu-phone {
    margin-top: 24px;
    padding: 16px 32px;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    transition: background 0.3s;
}

.mobile-menu-phone:hover {
    background: var(--black-light);
}

.hero {
    position: relative;
    height: 75vh;
    min-height: 500px;
    max-height: 800px;
    margin-top: calc(var(--campaign-height) + var(--nav-height));
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

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

.hero-text {
    max-width: 650px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}

.hero h1 .highlight {
    color: var(--yellow);
}

.hero-tagline {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.25s forwards;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

.intro {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: center;
}

.intro-image {
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.intro-image:hover img {
    transform: scale(1.02);
}

.intro-content h2 {
    margin-bottom: 24px;
}

.intro-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.intro-content p:last-of-type {
    margin-bottom: 32px;
}

.services {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: start;
}

.services-content h2 {
    margin-bottom: 20px;
}

.services-intro {
    color: var(--gray-600);
    margin-bottom: 28px;
    font-size: 17px;
    line-height: 1.7;
}

.services-sub {
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--black);
}

.services-list {
    list-style: none;
    margin-bottom: 32px;
}

.services-list li {
    padding: 16px 0 16px 24px;
    border-left: 3px solid var(--yellow);
    margin-bottom: 12px;
    background: var(--white);
    transition: all 0.3s ease;
}

.services-list li:hover {
    padding-left: 32px;
    border-left-color: var(--black);
}

.services-list li strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--black);
}

.services-list li span {
    color: var(--gray-500);
    font-size: 15px;
}

.services-image {
    overflow: hidden;
}

.services-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.services-image:hover img {
    transform: scale(1.02);
}

.usp-strip {
    padding: 48px 0;
    background: var(--yellow);
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.usp-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--black);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.usp-text strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2px;
}

.usp-text span {
    font-size: 14px;
    color: var(--gray-700);
}

.about {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content h2 {
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.about-content p:last-of-type {
    margin-bottom: 32px;
}

.gallery {
    background: var(--gray-100);
    padding-top: var(--section-padding);
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h2 {
    margin-bottom: 8px;
}

.gallery-header p {
    color: var(--gray-600);
    font-size: 17px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.instagram-feed {
    padding: 60px 0;
    text-align: center;
}

.instagram-feed h3 {
    margin-bottom: 32px;
    color: var(--black);
}

.cta {
    padding: 80px 0;
    background: var(--gray-800);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--gray-300);
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: var(--gap);
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 12px;
}

.contact-intro {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 17px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--yellow);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.contact-card-content h4 {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--black);
}

.contact-card-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.contact-card-content a {
    color: var(--black);
    transition: color 0.2s;
}

.contact-card-content a:hover {
    color: var(--yellow-dark);
}

.contact-card-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.contact-form-header {
    margin-bottom: 28px;
}

.contact-form-header h3 {
    margin-bottom: 8px;
}

.contact-form-header p {
    color: var(--gray-500);
    font-size: 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--black);
    background: var(--gray-50);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    background: var(--gray-100);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--yellow);
    background: var(--white);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form button {
    margin-top: 8px;
}

#contact-form {
    max-width: 100%;
    overflow: hidden;
}

#contact-form .g-recaptcha {
    transform-origin: left center;
    max-width: 100%;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 48px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    line-height: 1;
}

.lightbox-close:hover {
    opacity: 1;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 48px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 1;
}

.service-intro,
.service-block,
.service-list-section {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .service-intro,
    .service-block,
    .service-list-section {
        padding: 48px 0;
    }
}

.page-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    max-height: 450px;
    margin-top: calc(var(--campaign-height) + var(--nav-height));
    display: flex;
    align-items: flex-end;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-bottom: 48px;
}

.page-hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yellow);
    margin-bottom: 12px;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
}

.service-intro {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.service-intro-content h2 {
    margin-bottom: 12px;
}

.service-intro-content p {
    color: var(--gray-600);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-block {
    padding: var(--section-padding) 0;
    background: var(--gray-100);
}

.service-block-alt {
    background: var(--white);
}

.service-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-block-grid-reverse {
    direction: rtl;
}

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

.service-block-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yellow);
    background: var(--black);
    padding: 5px 12px;
    margin-bottom: 16px;
}

.service-block-content h2 {
    margin-bottom: 16px;
}

.service-block-content p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-block-content p:last-of-type {
    margin-bottom: 24px;
}

.brand-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
    margin-bottom: 28px;
    padding: 0;
}

.brand-list li {
    position: relative;
    padding-left: 20px;
    font-size: 16px;
    color: var(--gray-700);
    font-weight: 500;
}

.brand-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 2px;
}

.service-highlight {
    font-weight: 600;
    color: var(--black);
    padding: 16px 20px;
    background: var(--yellow);
    border-left: 4px solid var(--black);
}

.service-block-image {
    overflow: hidden;
}

.service-block-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.service-list-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.service-list-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.service-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-list-item {
    background: var(--white);
    padding: 28px 20px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.service-list-item:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.service-list-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--black);
}

.service-list-item h3 {
    margin-bottom: 12px;
    font-size: 1.125rem;
}

.service-list-item p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.faq-title {
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-item:first-child {
    border-top: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 600;
    color: var(--black);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gray-600);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 1024px) {
    .service-block-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-block-grid-reverse {
        direction: ltr;
    }

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

    .service-block-image img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 40vh;
        min-height: 280px;
    }

    .page-hero-content {
        padding-bottom: 32px;
    }

    .service-block-image img {
        height: 280px;
    }

    .service-list-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-list-item {
        padding: 24px 20px;
    }
}


.map-section {
    width: 100%;
    height: 400px;
    background: var(--gray-200);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: grayscale(20%);
    border: 0;
}

.footer {
    padding: 64px 0 32px;
    background: var(--black);
    color: var(--white);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 48px;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--black);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    color: var(--yellow);
    margin-bottom: 20px;
    font-size: 14px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--gray-400);
    font-size: 15px;
    padding: 6px 0;
    transition: all 0.3s ease;
    margin: 0;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-col p svg {
    flex-shrink: 0;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-col p:has(svg) {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom span {
    font-size: 14px;
    color: var(--gray-500);
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        transition-duration: 0.01ms;
    }
    html { scroll-behavior: auto; }
}

@media (max-width: 1100px) {
    .nav-center {
        position: static;
        transform: none;
    }

    .nav-inner {
        gap: 24px;
    }

    .nav-links {
        gap: 24px;
    }
}

@media (max-width: 1024px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .intro-grid,
    .services-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-image img,
    .about-image img {
        height: 350px;
    }

    .services-image img {
        height: 400px;
    }

    .usp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --campaign-height: 36px;
        --nav-height: 60px;
    }

    .campaign-bar-social {
        display: none;
    }

    .campaign-bar p {
        font-size: 13px;
    }

    .hero {
        height: 65vh;
        min-height: 450px;
    }

    .hero-img {
        object-position: 85% center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .intro-image img,
    .about-image img {
        height: 280px;
    }

    .services-image img {
        height: 320px;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .usp-item {
        padding: 16px;
        background: rgba(0,0,0,0.03);
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

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

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

    .footer-col:last-child {
        grid-column: span 2;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 640px) {
    section,
    section > div,
    section > div > div,
    section > div > div > div {
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    section,
    .page-hero,
    .contact,
    .contact-grid,
    .contact-info,
    .contact-cards,
    .contact-form-wrapper,
    .service-intro,
    .service-block {
        touch-action: manipulation;
    }

    .contact-grid > div,
    .grid > div {
        min-width: 0;
        max-width: 100%;
    }

    .brand-list {
        grid-template-columns: 1fr;
    }

    .map-section iframe {
        touch-action: pan-y pinch-zoom;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .nav-logo img {
        height: 36px;
    }

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

    .hero-tagline {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .gallery-item {
        aspect-ratio: 4/3;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-col:last-child {
        grid-column: auto;
    }
}

.supplier-logos {
    padding: 40px 0;
    background: var(--gray-100);
}

.supplier-logos h2 {
    text-align: center;
    margin-bottom: 40px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    align-items: center;
}

.logo-grid-item {
    background: var(--white);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16/9;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.logo-grid-item:hover {
    border-color: var(--yellow);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.logo-grid-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-grid-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

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

@media (max-width: 600px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .logo-grid-item {
        padding: 16px;
    }
}

@media (max-width: 400px) {
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    #contact-form .g-recaptcha {
        transform: scale(0.85);
    }
}

@media (max-width: 340px) {
    #contact-form .g-recaptcha {
        transform: scale(0.75);
    }
}
