/* =========================================================
   ALUFY — WINDOORZ
   PREMIUM LANDING PAGE CSS
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {

    --alufy-green: #1f2d07;
    --alufy-green-dark: #172205;
    --alufy-green-light: #354817;

    --alufy-brown: #562404;
    --alufy-brown-dark: #3d1902;
    --alufy-brown-light: #713508;

    --alufy-gold: #b6975c;
    --alufy-gold-light: #d4bd91;

    --alufy-cream: #f7f3eb;
    --alufy-cream-dark: #eee8dc;

    --alufy-white: #ffffff;

    --alufy-black: #151711;
    --alufy-text: #292b25;
    --alufy-muted: #77786f;

    --alufy-border: #e4dfd4;

    --shadow-small:
        0 8px 25px rgba(31, 45, 7, 0.08);

    --shadow-medium:
        0 15px 45px rgba(31, 45, 7, 0.12);

    --shadow-large:
        0 25px 70px rgba(31, 45, 7, 0.16);

    --transition:
        all 0.35s ease;

    --container:
        1240px;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {
    font-family: serif;
    background: var(--alufy-white);
    color: var(--alufy-text);
    line-height: 1.7;
    overflow-x: hidden;
}


img {
    display: block;
    width: 100%;
    max-width: 100%;
}


a {
    text-decoration: none;
    color: inherit;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
}


ul {
    list-style: none;
}


::selection {
    background: var(--alufy-green);
    color: var(--alufy-white);
}


/* =========================================================
   CONTAINER
========================================================= */

.container {
    width: min(100% - 40px, var(--container));
    margin: 0 auto;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section-padding {
    padding: 60px 0;
}


.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}


.center-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2.5px;
    text-transform: uppercase;

    color: var(--alufy-brown);

    margin-bottom: 17px;
}


.section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--alufy-brown);
}


.center-heading .section-label::before {
    display: none;
}


.section-heading h2,
.about-content h2,
.technology-intro h2,
.upvc-content h2,
.shower-content h2 {
font-family: serif;
    font-size: clamp(34px, 4vw, 46px);

    line-height: 1.12;
    letter-spacing: -1.8px;

    font-weight: 800;

    color: var(--alufy-green);

    margin-bottom: 20px;
}


.section-heading h2 span,
.about-content h2 span,
.technology-intro h2 span,
.upvc-content h2 span,
.shower-content h2 span {
    color: var(--alufy-brown);
}


.section-heading > p {
    color: #242422;
    font-size: 16px;
    max-width: 680px;
}


.center-heading > p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    min-height: 54px;

    padding: 0 27px;

    border-radius: 2px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.4px;

    transition: var(--transition);

    cursor: pointer;
}


.btn-primary {
    background: var(--alufy-brown);
    color: var(--alufy-white);
}


.btn-primary:hover {
    background: var(--alufy-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}


.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: var(--alufy-white);
    background: transparent;
}


.btn-outline:hover {
    background: var(--alufy-white);
    color: var(--alufy-green);
    transform: translateY(-3px);
}


.btn-light {
    background: var(--alufy-white);
    color: var(--alufy-green);
}


.btn-light:hover {
    background: var(--alufy-gold-light);
    color: var(--alufy-green);
    transform: translateY(-3px);
}


.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: var(--alufy-white);
}


.btn-outline-light:hover {
    background: var(--alufy-white);
    color: var(--alufy-green);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid rgba(31, 45, 7, 0.08);

    transition: var(--transition);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}


.site-header.scrolled {
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}


.nav-container {
    height: 82px;

    display: flex;
    align-items: center;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    flex-direction: column;

    line-height: 1;

    min-width: 150px;
}


.logo-main {
font-family: serif;
    font-size: 26px;
    font-weight: 800;

    letter-spacing: 2px;

    color: var(--alufy-green);
}


.logo-sub {
    font-size: 8px;

    font-weight: 700;

    letter-spacing: 4px;

    color: var(--alufy-brown);

    margin-top: 5px;

    padding-left: 2px;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.main-nav {
    display: flex;
    align-items: center;

    gap: 4px;

    margin-left: auto;
}


.nav-link {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 13px;

    color: var(--alufy-text);

    font-size: 15px;
    font-weight: 600;

    transition: var(--transition);
}


.nav-link:hover,
.nav-link.active {
    color: var(--alufy-brown);
}


.nav-link::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;

    bottom: 3px;

    height: 2px;

    background: var(--alufy-brown);

    transform: scaleX(0);
    transform-origin: center;

    transition: var(--transition);
}


.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}


.dropdown-toggle i {
    font-size: 9px;
}


/* =========================================================
   DROPDOWN
========================================================= */

.nav-dropdown {
    position: relative;
}


.dropdown-menu {
    position: absolute;

    top: calc(100% + 12px);
    left: 0;

    min-width: 220px;

    background: var(--alufy-white);

    border-top: 3px solid var(--alufy-brown);

    box-shadow: var(--shadow-medium);

    padding: 10px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: var(--transition);

    z-index: 100;
}


.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.dropdown-menu a {
    display: block;

    padding: 10px 18px;

    font-size: 13px;
    font-weight: 600;

    color: var(--alufy-text);

    transition: var(--transition);
}


.dropdown-menu a:hover {
    background: var(--alufy-cream);
    color: var(--alufy-brown);

    padding-left: 23px;
}


/* =========================================================
   NAV CTA
========================================================= */

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 19px;

    background: var(--alufy-green);
    color: var(--alufy-white);

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}


.nav-cta:hover {
    background: var(--alufy-brown);
    transform: translateY(-2px);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    margin-left: auto;

    background: var(--alufy-green);

    cursor: pointer;

    padding: 11px;
}


.mobile-menu-btn span {
    display: block;

    width: 100%;
    height: 2px;

    background: var(--alufy-white);

    margin: 5px 0;

    transition: var(--transition);
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {
    display: none;

    background: var(--alufy-white);

    border-top: 1px solid var(--alufy-border);

    padding: 12px 20px 20px;

    box-shadow: var(--shadow-medium);
}


.mobile-nav a {
    display: block;

    padding: 13px 5px;

    border-bottom: 1px solid var(--alufy-border);

    color: var(--alufy-text);

    font-size: 14px;
    font-weight: 600;
}


.mobile-nav a:hover {
    color: var(--alufy-brown);
}


.mobile-nav.active {
    display: block;
}


.mobile-nav .mobile-quote-btn {
    margin-top: 12px;

    text-align: center;

    background: var(--alufy-brown);
    color: var(--alufy-white);

    border: 0;
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--alufy-green);
}


.hero-image {
    position: absolute;

    inset: 0;

    z-index: 0;
}


.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


.hero-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(15, 22, 5, 0.94) 0%,
            rgba(20, 28, 8, 0.82) 38%,
            rgba(20, 25, 10, 0.42) 72%,
            rgba(20, 25, 10, 0.25) 100%
        );
}


.hero-container {
    position: relative;

    z-index: 2;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding-top: 100px;
    padding-bottom: 90px;
}


.hero-content {
    width: min(700px, 100%);

    color: var(--alufy-white);
}


.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--alufy-gold-light);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 22px;
}


.hero-label-line {
    width: 35px;
    height: 2px;

    background: var(--alufy-gold);
}


.hero-content h1 {
font-family: serif;
    font-size: clamp(50px, 7vw, 72px);

    line-height: 1.1;

    letter-spacing: -4px;

    font-weight: 800;

    margin-bottom: 28px;
}


.hero-content h1 span {
    display: block;
    color: var(--alufy-gold-light);
}


.hero-content > p {
    max-width: 610px;

    font-size: 17px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);

    margin-bottom: 35px;
}


.hero-buttons {
    display: flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 48px;
}


.hero-stats {
    display: flex;

    align-items: center;

    gap: 0;
}


.hero-stat {
    display: flex;
    flex-direction: column;

    min-width: 130px;

    padding-right: 25px;
    margin-right: 25px;

    border-right: 1px solid rgba(255, 255, 255, 0.25);
}


.hero-stat:last-child {
    border-right: 0;
}


.hero-stat strong {
font-family: serif;
    font-size: 27px;

    line-height: 1;

    color: var(--alufy-white);

    margin-bottom: 6px;
}


.hero-stat span {
    color: rgba(255, 255, 255, 0.62);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


/* =========================================================
   HERO BADGE
========================================================= */

.hero-badge {
    position: absolute;

    right: 40px;
    bottom: 115px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 16px 20px;

    background: rgba(255, 255, 255, 0.94);

    color: var(--alufy-green);

    box-shadow: var(--shadow-medium);
}


.hero-badge-icon {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    background: var(--alufy-brown);

    color: var(--alufy-white);

    font-size: 16px;
}


.hero-badge strong {
    display: block;

    font-size: 15px;
}


.hero-badge span {
    display: block;

    font-size: 13px;

    color: #242422;

    margin-top: 2px;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    z-index: 3;

    bottom: 30px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 7px;

    color: rgba(255, 255, 255, 0.65);

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.scroll-indicator i {
    animation: scrollArrow 1.7s infinite;
}


@keyframes scrollArrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: var(--alufy-white);
}


.about-grid {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 85px;

    align-items: center;
}


.about-image-wrap {
    position: relative;

    padding-right: 35px;
    padding-bottom: 35px;
}


.about-image {
    position: relative;

    height: 590px;

    overflow: hidden;
}


.about-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 60%,
        rgba(31, 45, 7, 0.3)
    );
}


.about-image img {
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.about-image:hover img {
    transform: scale(1.05);
}


.about-image-wrap::before {
    content: "";

    position: absolute;

    right: 0;
    bottom: 0;

    width: 65%;
    height: 70%;

    background: var(--alufy-brown);

    z-index: 0;
}


.about-image {
    z-index: 1;
}


.experience-badge {
    position: absolute;

    z-index: 3;

    left: -25px;
    bottom: 65px;

    width: 150px;
    height: 150px;

    background: var(--alufy-green);

    color: var(--alufy-white);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: var(--shadow-medium);
}


.experience-badge strong {
font-family: serif;
    font-size: 42px;

    line-height: 1;

    color: var(--alufy-gold-light);
}


.experience-badge span {
    margin-top: 8px;

    font-size: 11px;

    line-height: 1.4;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.about-content .lead-text {
    color: var(--alufy-green);

    font-size: 19px;

    line-height: 1.7;

    margin-bottom: 18px;

    font-weight: 500;
}


.about-content > p:not(.lead-text) {
    color: #242422;

    font-size: 16px;

    margin-bottom: 35px;
}


.about-info-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


.info-card {
    display: flex;

    gap: 15px;

    padding: 20px;

    background: var(--alufy-cream);

    border-left: 3px solid var(--alufy-brown);
}


.info-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    background: var(--alufy-green);

    color: var(--alufy-white);

    font-size: 14px;
}


.info-card h3 {
font-family: serif;
    color: var(--alufy-green);

    font-size: 15px;

    margin-bottom: 4px;
}


.info-card p {
    color: #242422;

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   VALUES
========================================================= */

.values-section {
    padding:50px 0;

    background: var(--alufy-cream);
}


.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.value-card {
    position: relative;

    min-height: 330px;

    padding: 32px 28px;

    background: var(--alufy-white);

    border: 1px solid var(--alufy-border);

    overflow: hidden;

    transition: var(--transition);
}


.value-card:hover {
    transform: translateY(-8px);

    border-color: var(--alufy-brown);

    box-shadow: var(--shadow-medium);
}


.value-number {
    position: absolute;

    top: 18px;
    right: 20px;

font-family: serif;
    font-size: 42px;

    font-weight: 800;

    color: rgba(31, 45, 7, 0.06);
}


.value-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    margin-bottom: 60px;

    background: var(--alufy-green);

    color: var(--alufy-white);

    font-size: 18px;

    transition: var(--transition);
}


.value-card:hover .value-icon {
    background: var(--alufy-brown);

    transform: rotate(5deg);
}


.value-card h3 {
font-family: serif;
    font-size: 21px;

    color: var(--alufy-green);

    margin-bottom: 10px;
}


.value-card p {
    color: #242422;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   WHY ALUFY
========================================================= */

.why-section {
    background: var(--alufy-white);
}


.benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}


.benefit-card {
    padding: 30px 25px;

    border: 1px solid var(--alufy-border);

    background: var(--alufy-white);

    transition: var(--transition);
}


.benefit-card:hover {
    background: var(--alufy-green);

    border-color: var(--alufy-green);

    transform: translateY(-6px);

    box-shadow: var(--shadow-medium);
}


.benefit-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--alufy-cream);

    color: var(--alufy-brown);

    margin-bottom: 22px;

    transition: var(--transition);
}


.benefit-card:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.12);

    color: var(--alufy-gold-light);
}


.benefit-card h3 {
font-family: serif;
    color: var(--alufy-green);

    font-size: 16px;

    margin-bottom: 8px;

    transition: var(--transition);
}


.benefit-card p {
    color: #242422;

    font-size: 16px;

    line-height: 1.7;

    transition: var(--transition);
}


.benefit-card:hover h3 {
    color: var(--alufy-white);
}


.benefit-card:hover p {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   PRODUCTS
========================================================= */

.products-section {
    background: var(--alufy-cream);
}


.products-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


.product-card {
    background: var(--alufy-white);

    border: 1px solid var(--alufy-border);

    overflow: hidden;

    transition: var(--transition);
}


.product-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-medium);

    border-color: rgba(86, 36, 4, 0.3);
}


.product-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: var(--alufy-green);
}


.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.product-card:hover .product-image img {
    transform: scale(1.07);
}


.product-tag {
    position: absolute;

    left: 15px;
    top: 15px;

    padding: 6px 10px;

    background: var(--alufy-brown);

    color: var(--alufy-white);

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.3px;
}


.product-content {
    padding: 27px;
}


.product-code {
    color: var(--alufy-brown);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;
}


.product-content h3 {
font-family: serif;
    font-size: 21px;

    color: var(--alufy-green);

    margin: 7px 0 10px;
}


.product-content > p {
    color: #242422;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 18px;
}


.product-specs {
    display: flex;
    flex-direction: column;

    gap: 7px;

    padding-top: 15px;

    border-top: 1px solid var(--alufy-border);
}


.product-specs li {
    display: flex;
    align-items: center;

    gap: 8px;

    color: var(--alufy-text);

    font-size: 14px;
}


.product-specs i {
    color: var(--alufy-brown);

    font-size: 13px;
}


/* =========================================================
   SOLUTION STRIP
========================================================= */

.solution-strip {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 55px;

    background: var(--alufy-green);

    color: var(--alufy-white);
}


.solution-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 28px 24px;

    border-right: 1px solid rgba(255, 255, 255, 0.1);

    transition: var(--transition);
}


.solution-item:last-child {
    border-right: 0;
}


.solution-item:hover {
    background: var(--alufy-brown);
}


.solution-icon {
    flex: 0 0 43px;

    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.3);

    color: var(--alufy-gold-light);
}


.solution-item h3 {
font-family: serif;
    font-size: 15px;

    margin-bottom: 2px;
}


.solution-item p {
    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;
}


/* =========================================================
   COMPARISON
========================================================= */

.comparison-section {
    background: var(--alufy-white);
}


.comparison-table-wrap {
    overflow-x: auto;

    border: 1px solid var(--alufy-border);

    box-shadow: var(--shadow-small);
}


.comparison-table {
    width: 100%;

    min-width: 700px;

    border-collapse: collapse;

    background: var(--alufy-white);
}


.comparison-table th {
    padding: 19px 22px;

    text-align: left;

    background: var(--alufy-green);

    color: var(--alufy-white);

    font-size: 14px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.comparison-table th:nth-child(2) {
    background: var(--alufy-brown);
}


.comparison-table td {
    padding: 17px 22px;

    border-bottom: 1px solid var(--alufy-border);

    font-size: 15px;
}


.comparison-table tbody tr:last-child td {
    border-bottom: 0;
}


.comparison-table tbody tr:hover td {
    background: var(--alufy-cream);
}


.comparison-table td:first-child {
    font-weight: 700;

    color: var(--alufy-green);
}


.positive {
    color: var(--alufy-green);

    font-weight: 600;
}


.positive i {
    margin-right: 7px;

    color: var(--alufy-brown);
}


.negative {
    color: #242422;
}


.negative i {
    margin-right: 7px;

    color: #a48f7d;
}


/* =========================================================
   TECHNOLOGY
========================================================= */

.technology-section {
    background: var(--alufy-green);

    color: var(--alufy-white);
}


.technology-grid {
    display: grid;

    grid-template-columns: 0.75fr 1.25fr;

    gap: 80px;

    align-items: start;
}


.technology-intro {
    position: sticky;

    top: 120px;
}


.technology-intro .section-label {
    color: var(--alufy-gold-light);
}


.technology-intro .section-label::before {
    background: var(--alufy-gold);
}


.technology-intro h2 {
    color: var(--alufy-white);
}


.technology-intro h2 span {
    color: var(--alufy-gold-light);
}


.technology-intro > p {
    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;

    margin-bottom: 35px;
}


.technology-highlight {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 20px;

    background: rgba(255, 255, 255, 0.06);

    border-left: 3px solid var(--alufy-gold);
}


.highlight-icon {
    width: 45px;
    height: 45px;

    flex: 0 0 45px;

    display: grid;
    place-items: center;

    background: var(--alufy-brown);

    color: var(--alufy-white);
}


.technology-highlight strong {
    display: block;

    font-size: 14px;

    margin-bottom: 3px;
}


.technology-highlight span {
    display: block;

    font-size: 10px;

    color: rgba(255, 255, 255, 0.58);
}


.technology-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 1px;

    background: rgba(255, 255, 255, 0.12);
}


.tech-feature {
    position: relative;

    display: grid;

    grid-template-columns: auto 1fr;

    column-gap: 15px;

    padding: 25px;

    background: var(--alufy-green);
}


.tech-number {
    grid-column: 1 / -1;

    display: block;

    color: rgba(255, 255, 255, 0.25);

    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 13px;
}


.tech-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, 0.07);

    color: var(--alufy-gold-light);

    font-size: 15px;
}


.tech-feature h3 {
font-family: serif;
    font-size: 15px;

    color: var(--alufy-white);

    margin: 2px 0 5px;
}


.tech-feature p {
    grid-column: 2;

    color: rgba(255, 255, 255, 0.55);

    font-size: 14px;

    line-height: 1.6;
}


/* =========================================================
   FINISHES
========================================================= */

.finishes-section {
    background: var(--alufy-cream);
}


.finishes-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


.finish-card {
    background: var(--alufy-white);

    padding: 20px;

    text-align: center;

    border: 1px solid var(--alufy-border);

    transition: var(--transition);
}


.finish-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-medium);
}


.finish-swatch {
    height: 150px;

    margin-bottom: 18px;

    border: 8px solid var(--alufy-white);

    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}


.finish-grey .finish-swatch {
    background: linear-gradient(
        135deg,
        #6d706d,
        #b1b3af
    );
}


.finish-gold .finish-swatch {
    background: linear-gradient(
        135deg,
        #a97b38,
        #e0c27e
    );
}


.finish-black .finish-swatch {
    background: linear-gradient(
        135deg,
        #11130f,
        #3c4039
    );
}


.finish-champagne .finish-swatch {
    background: linear-gradient(
        135deg,
        #b49c79,
        #e2d0ad
    );
}


.finish-card h3 {
font-family: serif;
    font-size: 17px;

    color: var(--alufy-green);

    margin-bottom: 3px;
}


.finish-card p {
    color: #242422;

    font-size: 14px;
}


.finish-note {
    display: flex;
    align-items: center;

    gap: 15px;

    max-width: 900px;

    margin: 35px auto 0;

    padding: 18px 22px;

    background: var(--alufy-white);

    border-left: 3px solid var(--alufy-brown);
}


.finish-note i {
    color: var(--alufy-brown);

    font-size: 18px;
}


.finish-note p {
    color: #242422;

    font-size: 14px;
}


/* =========================================================
   UPVC
========================================================= */

.upvc-section {
    background: var(--alufy-white);
}


.upvc-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: center;
}


.upvc-content > p {
    color: #242422;

    font-size: 15px;

    margin-bottom: 28px;

    max-width: 600px;
}


.upvc-benefits {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 11px 20px;

    margin-bottom: 30px;
}


.upvc-benefits div {
    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 14px;

    color: var(--alufy-text);
}


.upvc-benefits i {
    color: var(--alufy-brown);

    font-size: 14px;
}


.upvc-finishes {
    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}


.upvc-finishes span {
    padding: 7px 11px;

    background: var(--alufy-cream);

    color: var(--alufy-green);

    font-size: 12px;

    font-weight: 600;
}


.upvc-image {
    position: relative;

    height: 530px;

    overflow: hidden;
}


.upvc-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(
        180deg,
        transparent 50%,
        rgba(31, 45, 7, 0.35)
    );
}


.upvc-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.upvc-image:hover img {
    transform: scale(1.05);
}


/* =========================================================
   SHOWER SECTION
========================================================= */

.shower-section {
    position: relative;

    padding: 110px 0;

    background:
        linear-gradient(
            90deg,
            rgba(31, 45, 7, 0.97),
            rgba(31, 45, 7, 0.86)
        ),
        url("images/shower.jpg") center / cover no-repeat;

    color: var(--alufy-white);
}


.shower-content {
    max-width: 720px;
}


.shower-content .section-label {
    color: var(--alufy-gold-light);
}


.shower-content .section-label::before {
    background: var(--alufy-gold);
}


.shower-content h2 {
    color: var(--alufy-white);
}


.shower-content h2 span {
    color: var(--alufy-gold-light);
}


.shower-content > p {
    color: rgba(255, 255, 255, 0.68);

    max-width: 650px;

    font-size: 15px;

    margin-bottom: 30px;
}


.shower-features {
    display: flex;
    flex-wrap: wrap;

    gap: 12px 25px;

    margin-bottom: 30px;
}


.shower-features span {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
}


.shower-features i {
    color: var(--alufy-gold-light);

    font-size: 13px;
}


.shower-colours {
    display: flex;
    align-items: center;

    gap: 10px;
}


.colour-dot {
    width: 22px;
    height: 22px;

    display: inline-block;

    border-radius: 50%;

    border: 2px solid rgba(255, 255, 255, 0.65);
}


.grey-dot {
    background: #8b8d89;
}


.gold-dot {
    background: #c29b4d;
}


.black-dot {
    background: #161814;
}


.champagne-dot {
    background: #c6b08a;
}


.colour-label {
    margin-left: 8px;

    color: rgba(255, 255, 255, 0.55);

    font-size: 13px;
}


/* =========================================================
   GALLERY
========================================================= */

.gallery-section {
    background: var(--alufy-white);
}


.gallery-grid {
    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr;

    grid-template-rows: 260px 260px;

    gap: 15px;
}


.gallery-item {
    position: relative;

    overflow: hidden;

    background: var(--alufy-green);
}


.gallery-large {
    grid-row: span 2;
}


.gallery-wide {
    grid-column: span 2;
}


.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.7s ease;
}


.gallery-item:hover img {
    transform: scale(1.08);
}


.gallery-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 35px 20px 20px;

    background: linear-gradient(
        transparent,
        rgba(15, 22, 5, 0.8)
    );

    transform: translateY(10px);

    opacity: 0;

    transition: var(--transition);
}


.gallery-item:hover .gallery-overlay {
    opacity: 1;

    transform: translateY(0);
}


.gallery-overlay span {
    color: var(--alufy-white);

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.5px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 80px 0;

    background: var(--alufy-cream);
}


.cta-box {
    position: relative;

    min-height: 300px;

    display: flex;
    align-items: center;

    padding: 65px 75px;

    overflow: hidden;

    background: var(--alufy-brown);

    color: var(--alufy-white);
}


.cta-content {
    position: relative;

    z-index: 2;

    max-width: 720px;
}


.cta-content .section-label {
    color: var(--alufy-gold-light);
}


.cta-content .section-label::before {
    background: var(--alufy-gold);
}


.cta-content h2 {
font-family: serif;

font-size: clamp(34px, 4vw, 57px);

    line-height: 1.08;

    letter-spacing: -1.8px;

    margin-bottom: 17px;
}


.cta-content h2 span {
    display: block;

    color: var(--alufy-gold-light);
}


.cta-content > p {
    max-width: 580px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 15px;

    margin-bottom: 28px;
}


.cta-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* CTA DECORATION */

.cta-decoration {
    position: absolute;

    right: -40px;
    top: -80px;

    width: 500px;
    height: 500px;

    pointer-events: none;
}


.cta-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.12);
}


.circle-one {
    width: 380px;
    height: 380px;

    right: 0;
    top: 0;
}


.circle-two {
    width: 260px;
    height: 260px;

    right: 60px;
    top: 60px;
}


.cta-square {
    position: absolute;

    width: 130px;
    height: 130px;

    right: 130px;
    top: 125px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    transform: rotate(45deg);
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--alufy-green);

    color: var(--alufy-white);

    padding-top: 75px;
}


.footer-grid {
    display: grid;

    grid-template-columns: 1.5fr 0.8fr 0.9fr 1.4fr;

    gap: 55px;

    padding-bottom: 55px;
}


.footer-logo {
    display: inline-flex;
    flex-direction: column;

    line-height: 1;
}


.footer-logo span {
font-family: serif;

    font-size: 29px;

    font-weight: 800;

    letter-spacing: 2px;
}


.footer-logo small {
    color: var(--alufy-gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

    margin-top: 6px;
}


.footer-brand > p {
    max-width: 310px;

    color: rgba(255, 255, 255, 0.57);

    font-size: 14px;

    line-height: 1.8;

    margin: 20px 0 25px;
}


.footer-social {
    display: flex;

    gap: 8px;
}


.footer-social a {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    color: rgba(255, 255, 255, 0.7);

    font-size: 14px;

    transition: var(--transition);
}


.footer-social a:hover {
    background: var(--alufy-brown);

    border-color: var(--alufy-brown);

    color: var(--alufy-white);

    transform: translateY(-3px);
}


.footer-column h3 {
font-family: serif;
    font-size: 14px;

    margin-bottom: 20px;

    color: var(--alufy-white);
}


.footer-column > a {
    display: block;

    width: fit-content;

    color: rgba(255, 255, 255, 0.58);

    font-size: 14px;

    margin-bottom: 10px;

    transition: var(--transition);
}


.footer-column > a:hover {
    color: var(--alufy-gold-light);

    transform: translateX(4px);
}


/* =========================================================
 CONTACT
========================================================= */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;
}


.contact-item > i {
    color: var(--alufy-gold-light);

    font-size: 15px;

    margin-top: 4px;
}


.contact-item span {
    display: block;

    color: rgba(255, 255, 255, 0.38);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    margin-bottom: 2px;
}


.contact-item a,
.contact-item p {
    display: block;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;

    line-height: 1.6;
}


.contact-item a:hover {
    color: var(--alufy-gold-light);
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 65px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);

    font-size: 14px;
}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    background: var(--alufy-brown);

    color: var(--alufy-white);

    box-shadow: var(--shadow-medium);

    opacity: 0;
    visibility: hidden;

    transform: translateY(15px);

    transition: var(--transition);
}


.back-to-top.show {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.back-to-top:hover {
    background: var(--alufy-green);

    transform: translateY(-4px);
}


/* =========================================================
   RESPONSIVE — LARGE TABLET
========================================================= */

@media (max-width: 1100px) {


    .main-nav {
        gap: 0;
    }


    .nav-link {
        padding-left: 9px;
        padding-right: 9px;
    }


    .nav-link::after {
        left: 9px;
        right: 9px;
    }


    .nav-cta {
        padding: 11px 14px;
    }


    .about-grid {
        gap: 55px;
    }


    .values-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .solution-strip {
        grid-template-columns: repeat(2, 1fr);
    }


    .solution-item:nth-child(2) {
        border-right: 0;
    }


    .solution-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }


    .footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }


    .footer-contact {
        grid-column: 1 / -1;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        column-gap: 30px;
    }


    .footer-contact h3 {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {


    .section-padding {
        padding: 85px 0;
    }


    .nav-container {
        height: 74px;
    }


    .main-nav,
    .nav-cta {
        display: none;
    }


    .mobile-menu-btn {
        display: block;
    }


    .hero-content h1 {
        font-size: clamp(48px, 9vw, 75px);

        letter-spacing: -3px;
    }


    .hero-badge {
        display: none;
    }


    .about-grid,
    .upvc-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .about-image-wrap {
        max-width: 620px;
    }


    .technology-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .technology-intro {
        position: static;
    }


    .technology-features {
        grid-template-columns: 1fr 1fr;
    }


    .finishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: 280px 220px 220px;
    }


    .gallery-large {
        grid-row: span 2;
    }


    .gallery-wide {
        grid-column: 1 / -1;
    }


    .cta-box {
        padding: 55px 45px;
    }


    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-contact {
        grid-column: auto;

        display: block;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {


    .container {
        width: min(100% - 28px, var(--container));
    }


    .section-padding {
        padding: 70px 0;
    }


    .section-heading {
        margin-bottom: 38px;
    }


    .section-heading h2,
    .about-content h2,
    .technology-intro h2,
    .upvc-content h2,
    .shower-content h2 {
        font-size: 35px;

        letter-spacing: -1.2px;
    }


    /* HEADER */

    .nav-container {
        height: 70px;
    }


    .logo-main {
        font-size: 23px;
    }


    .logo-sub {
        font-size: 7px;

        letter-spacing: 3px;
    }


    .mobile-nav {
        padding-left: 14px;
        padding-right: 14px;
    }


    /* HERO */

    .hero-section {
        min-height: 760px;
    }


    .hero-container {
        min-height: 760px;

        padding-top: 110px;
        padding-bottom: 70px;
    }


    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(15, 22, 5, 0.94),
                rgba(20, 28, 8, 0.72)
            );
    }


    .hero-content h1 {
        font-size: 50px;

        letter-spacing: -2.5px;

        line-height: 1;
    }


    .hero-content > p {
        font-size: 14px;

        line-height: 1.7;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        margin-bottom: 35px;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-stats {
        width: 100%;

        justify-content: space-between;
    }


    .hero-stat {
        min-width: auto;

        padding-right: 12px;

        margin-right: 12px;
    }


    .hero-stat strong {
        font-size: 21px;
    }


    .hero-stat span {
        font-size: 12px;

        letter-spacing: 0.6px;
    }


    .scroll-indicator {
        display: none;
    }


    /* ABOUT */

    .about-grid {
        gap: 45px;
    }


    .about-image-wrap {
        padding-right: 18px;
        padding-bottom: 18px;
    }


    .about-image {
        height: 420px;
    }


    .experience-badge {
        left: -5px;

        bottom: 35px;

        width: 115px;
        height: 115px;
    }


    .experience-badge strong {
        font-size: 32px;
    }


    .experience-badge span {
        font-size: 14px;
    }


    .about-info-grid {
        grid-template-columns: 1fr;
    }


    /* VALUES */

    .values-section {
        padding: 70px 0;
    }


    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }


    .value-card {
        min-height: auto;

        padding: 27px;
    }


    .value-icon {
        margin-bottom: 35px;
    }


    /* PRODUCTS */

    .products-grid {
        grid-template-columns: 1fr;
    }


    .product-image {
        height: 235px;
    }


    .product-content {
        padding: 23px;
    }


    .solution-strip {
        grid-template-columns: 1fr;

        margin-top: 35px;
    }


    .solution-item {
        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }


    .solution-item:last-child {
        border-bottom: 0;
    }


    /* TABLE */

    .comparison-table-wrap {
        margin-left: -2px;
        margin-right: -2px;
    }


    .comparison-table td,
    .comparison-table th {
        padding: 14px 16px;
    }


    /* TECHNOLOGY */

    .technology-features {
        grid-template-columns: 1fr;
    }


    .tech-feature {
        padding: 22px;
    }


    /* FINISHES */

    .finishes-grid {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }


    .finish-card {
        padding: 12px;
    }


    .finish-swatch {
        height: 110px;

        margin-bottom: 12px;
    }


    .finish-card h3 {
        font-size: 14px;
    }


    .finish-card p {
        font-size: 12px;
    }


    .finish-note {
        align-items: flex-start;
    }


    /* UPVC */

    .upvc-benefits {
        grid-template-columns: 1fr;
    }


    .upvc-image {
        height: 400px;
    }


    /* SHOWER */

    .shower-section {
        padding: 75px 0;
    }


    .shower-features {
        flex-direction: column;

        gap: 10px;
    }


    /* GALLERY */

    .gallery-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(4, 230px);
    }


    .gallery-large,
    .gallery-wide {
        grid-column: auto;

        grid-row: auto;
    }


    .gallery-overlay {
        opacity: 1;

        transform: translateY(0);
    }


    /* CTA */

    .cta-section {
        padding: 55px 0;
    }


    .cta-box {
        min-height: 430px;

        padding: 45px 25px;

        align-items: flex-start;
    }


    .cta-content h2 {
        font-size: 35px;
    }


    .cta-buttons {
        flex-direction: column;

        align-items: stretch;
    }


    .cta-buttons .btn {
        width: 100%;
    }


    .cta-decoration {
        right: -170px;
        top: 170px;

        opacity: 0.6;
    }


    /* FOOTER */

    .site-footer {
        padding-top: 55px;
    }


    .footer-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-contact {
        grid-column: auto;
    }


    .footer-bottom {
        min-height: auto;

        padding: 20px 0;

        flex-direction: column;

        align-items: flex-start;

        gap: 5px;
    }


    /* BACK TO TOP */

    .back-to-top {
        right: 15px;
        bottom: 15px;

        width: 42px;
        height: 42px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {


    .hero-content h1 {
        font-size: 43px;
    }


    .hero-stat strong {
        font-size: 18px;
    }


    .hero-stat span {
        font-size: 11px;
    }


    .section-heading h2,
    .about-content h2,
    .technology-intro h2,
    .upvc-content h2,
    .shower-content h2 {
        font-size: 31px;
    }


    .finishes-grid {
        grid-template-columns: 1fr;
    }


    .finish-swatch {
        height: 140px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--alufy-gold);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

html,
body {
    max-width: 100%;
}


table {
    max-width: 100%;
}
/* =========================================================
   JAVASCRIPT REVEAL ANIMATION
========================================================= */

.reveal-element {
    opacity: 0;
    transform: translateY(25px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}


.image-error {
    opacity: 0;
}
/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    background: var(--alufy-cream);
    position: relative;
    overflow: hidden;
}


/* =========================================================
   CONTACT HEADING
========================================================= */

.contact-heading {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-heading h2 span {
    color: var(--alufy-brown);
}

.contact-heading p {
    max-width: 680px;
    margin: 18px auto 0;
}


/* =========================================================
   CONTACT LAYOUT
========================================================= */

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 50px;
    align-items: stretch;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


/* =========================================================
   CONTACT INFO CARD
========================================================= */

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    padding: 25px;

    background: #ffffff;

    border: 1px solid var(--alufy-cream-dark);

    box-shadow: 0 10px 30px rgba(31, 45, 7, 0.06);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);

    border-color: rgba(182, 151, 92, 0.55);

    box-shadow: 0 16px 38px rgba(31, 45, 7, 0.10);
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-icon {
    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--alufy-green);

    color: #ffffff;

    font-size: 19px;

    border-radius: 50%;
}

.contact-info-card:hover .contact-icon {
    background: var(--alufy-brown);
}


/* =========================================================
   CONTACT INFORMATION TEXT
========================================================= */

.contact-info-content {
    min-width: 0;
}

.contact-info-content > span {
    display: block;

    margin-bottom: 6px;

    color: var(--alufy-gold);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.contact-info-content h3 {
    margin: 0 0 7px;

    color: var(--alufy-green);

font-family: serif;

    font-size: 18px;
    font-weight: 700;
}

.contact-info-content a {
    display: inline-block;

    color: var(--alufy-green);

    font-size: 17px;
    font-weight: 700;

    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--alufy-brown);
}

.contact-info-content p {
    margin: 7px 0 0;

    color: #242422;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    background: #ffffff;

    padding: 42px;

    border: 1px solid var(--alufy-cream-dark);

    box-shadow: 0 18px 50px rgba(31, 45, 7, 0.09);
}


/* =========================================================
   CONTACT FORM HEADER
========================================================= */

.contact-form-header {
    margin-bottom: 30px;
}

.form-label {
    display: inline-block;

    margin-bottom: 9px;

    color: var(--alufy-gold);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}

.contact-form-header h3 {
    margin: 0 0 10px;

    color: var(--alufy-green);

font-family: serif;

    font-size: 30px;
    line-height: 1.25;
}

.contact-form-header p {
    margin: 0;

    color: #242422;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    color: var(--alufy-green);

    font-size: 13px;
    font-weight: 700;
}

.form-group label span {
    color: var(--alufy-brown);
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
========================================================= */

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 14px 16px;

    border: 1px solid #ddd7ca;

    background: #fcfbf8;

    color: var(--alufy-green);

font-family: serif;

    font-size: 14px;

    outline: none;

    border-radius: 0;

    transition:
        border-color 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.form-group input,
.form-group select {
    height: 52px;
}


.form-group textarea {
    min-height: 145px;

    resize: vertical;
}


/* Placeholder */

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9b9b91;
}


/* Focus */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--alufy-gold);

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(182, 151, 92, 0.12);
}


/* =========================================================
   SELECT
========================================================= */

.form-group select {
    cursor: pointer;

    appearance: none;

    background-image:
        linear-gradient(45deg, transparent 50%, #562404 50%),
        linear-gradient(135deg, #562404 50%, transparent 50%);

    background-position:
        calc(100% - 19px) 22px,
        calc(100% - 14px) 22px;

    background-size:
        5px 5px,
        5px 5px;

    background-repeat: no-repeat;
}


/* =========================================================
   FORM NOTE
========================================================= */

.form-note {
    display: flex;
    align-items: flex-start;

    gap: 10px;

    margin: 2px 0 22px;

    padding: 12px 14px;

    background: var(--alufy-cream);

    border-left: 3px solid var(--alufy-gold);

    color: #242422;

    font-size: 14px;

    line-height: 1.6;
}

.form-note i {
    margin-top: 2px;

    color: var(--alufy-green);

    font-size: 14px;
}


/* =========================================================
   CONTACT SUBMIT BUTTON
========================================================= */

.contact-submit {
    min-width: 190px;

    border: none;

    cursor: pointer;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;
}

.contact-submit i {
    transition: transform 0.3s ease;
}

.contact-submit:hover i {
    transform: translateX(5px);
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-layout {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .contact-info {
        display: grid;

        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact-heading {
        margin-bottom: 40px;
    }

    .contact-heading h2 {
        font-size: 32px;
    }

    .contact-layout {
        gap: 25px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        padding: 20px;
    }

    .contact-form-wrapper {
        padding: 28px 20px;
    }

    .contact-form-header h3 {
        font-size: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .contact-submit {
        width: 100%;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .contact-info-card {
        gap: 14px;

        padding: 17px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        font-size: 16px;
    }

    .contact-info-content a {
        font-size: 15px;
    }

    .contact-form-wrapper {
        padding: 22px 16px;
    }

}
/* =========================================================
   SAFETY FIX — KEEP ALL CONTENT VISIBLE
========================================================= */

.reveal-element {
    opacity: 1 !important;
    transform: translateY(0) !important;
}