/* =====================================================
   DURASKABLO CONTACT PAGE
===================================================== */


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* =========================
   VARIABLES
========================= */

:root {

    /* Replace these with the
       exact DURASKABLO colours */

    --primary: #d71920;
    --primary-dark: #a90f15;

    --dark: #111111;
    --dark-2: #1c1c1c;

    --light: #f5f5f5;
    --light-2: #fafafa;

    --gray: #666;
    --border: #dddddd;

    --white: #ffffff;

    --container: 1180px;
}


/* =========================
   GENERAL
========================= */

.container {
    width: 90%;
    max-width: var(--container);
    margin: auto;
}

.section-label {
    display: inline-block;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    color: var(--primary);

    margin-bottom: 12px;
}

.section-heading {
    max-width: 760px;
}

.section-heading.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    font-size: 40px;
    line-height: 1.2;
    color: var(--dark);

    margin-bottom: 18px;
}

.section-heading p {
    font-size: 17px;
    color: var(--gray);
}


/* =========================
   HEADER
========================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255,255,255,0.98);

    border-bottom: 1px solid #eeeeee;
}

.nav-container {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo img {
    width: 70px;
	height: 70px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;

    color: #333;

    transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.nav-quote {
    background: var(--primary);
    color: white;

    padding: 13px 20px;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s;
}

.nav-quote:hover {
    background: var(--primary-dark);
}

.menu-toggle {
    display: none;

    border: 0;
    background: none;

    font-size: 25px;
    cursor: pointer;
}


/* =========================
   HERO
========================= */

.contact-hero {
    min-height: 450px;

    position: relative;

    display: flex;
    align-items: center;

    background-image:
        url("images/contact-hero.jpg");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.80),
            rgba(0,0,0,0.40)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    color: white;

    max-width: 720px;
}

.hero-small-title {
    display: block;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #fff;

    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.05;

    margin-bottom: 22px;
}

.hero-content p {
    max-width: 650px;

    font-size: 19px;

    color: #eeeeee;
}


/* =========================
   CONTACT INTRO
========================= */

.contact-intro {
    padding: 90px 0 50px;
}


/* =========================
   CONTACT MAIN
========================= */

.contact-main {
    padding: 50px 0 100px;

    background: var(--light-2);
}

.contact-grid {
    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    gap: 80px;

    align-items: start;
}


/* =========================
   CONTACT INFORMATION
========================= */

.contact-information h2 {
    font-size: 40px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.contact-description {
    color: var(--gray);

    margin-bottom: 40px;

    font-size: 16px;
}

.contact-item {
    display: flex;

    gap: 18px;

    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary);

    color: white;

    border-radius: 50%;
}

.contact-item h3 {
    font-size: 16px;

    margin-bottom: 5px;
}

.contact-item p {
    font-size: 15px;

    color: var(--gray);
}

.contact-item a {
    color: var(--gray);

    transition: 0.3s;
}

.contact-item a:hover {
    color: var(--primary);
}


/* =========================
   SOCIAL
========================= */

.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    font-size: 16px;

    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 40px;
    height: 40px;

    border: 1px solid #ddd;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #333;

    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);

    color: white;
}


/* =========================
   FORM
========================= */

.contact-form-box {
    background: white;

    padding: 45px;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.07);
}

.form-header h2 {
    font-size: 32px;

    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray);

    margin-bottom: 30px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;

    font-size: 14px;

    font-weight: 700;

    margin-bottom: 8px;
}

.form-group label span {
    color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border: 1px solid var(--border);

    background: white;

    padding: 14px 15px;

    font-size: 15px;

    outline: none;

    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(215,25,32,0.08);
}

.submit-button {
    width: 100%;

    border: none;

    background: var(--primary);

    color: white;

    padding: 16px 20px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.3s;
}

.submit-button:hover {
    background: var(--primary-dark);
}

.submit-button i {
    margin-left: 10px;
}

.form-note {
    font-size: 12px;

    color: #888;

    margin-top: 15px;

    text-align: center;
}


/* =========================
   QUOTE SECTION
========================= */

.quote-section {
    background: var(--dark);

    padding: 70px 0;
}

.quote-container {
    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 40px;
}

.quote-text {
    max-width: 750px;
}

.quote-text .section-label {
    color: #fff;
}

.quote-text h2 {
    color: white;

    font-size: 38px;

    line-height: 1.2;

    margin-bottom: 15px;
}

.quote-text p {
    color: #cccccc;

    font-size: 16px;
}

.quote-button {
    flex-shrink: 0;

    background: var(--primary);

    color: white;

    padding: 16px 25px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.3s;
}

.quote-button:hover {
    background: white;

    color: var(--dark);
}

.quote-button i {
    margin-left: 10px;
}


/* =========================
   LOCATION
========================= */

.location-section {
    padding: 100px 0;
}

.location-grid {
    margin-top: 50px;

    display: grid;

    grid-template-columns: 2fr 1fr;

    min-height: 430px;
}

.map-container {
    min-height: 430px;
}

.map-container iframe {
    width: 100%;
    height: 100%;

    min-height: 430px;

    border: 0;
}

.location-details {
    background: var(--dark);

    color: white;

    padding: 55px 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.location-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--primary);

    border-radius: 50%;

    margin-bottom: 25px;
}

.location-details h3 {
    font-size: 25px;

    margin-bottom: 15px;
}

.location-details p {
    color: #cccccc;

    margin-bottom: 30px;
}

.directions-button {
    align-self: flex-start;

    border: 1px solid #666;

    padding: 13px 18px;

    font-size: 12px;

    font-weight: 700;

    transition: 0.3s;
}

.directions-button:hover {
    background: var(--primary);

    border-color: var(--primary);
}

.directions-button i {
    margin-left: 8px;
}


/* =========================
   SUPPORT
========================= */

.support-section {
    padding: 90px 0;

    background: var(--light);
}

.support-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    margin-top: 50px;
}

.support-card {
    background: white;

    padding: 40px 30px;

    border-top: 3px solid transparent;

    transition: 0.3s;
}

.support-card:hover {
    transform: translateY(-5px);

    border-top-color: var(--primary);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08);
}

.support-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(215,25,32,0.1);

    color: var(--primary);

    font-size: 20px;

    margin-bottom: 25px;
}

.support-card h3 {
    font-size: 21px;

    margin-bottom: 12px;
}

.support-card p {
    color: var(--gray);

    font-size: 15px;

    margin-bottom: 25px;
}

.support-card a {
    color: var(--primary);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.5px;
}

.support-card a i {
    margin-left: 8px;
}


/* =========================
   FOOTER
========================= */

.site-footer {
    background: #0c0c0c;

    color: white;

    padding-top: 70px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 60px;
}

.footer-logo {
    width: 170px;

    margin-bottom: 20px;
}

.footer-about p {
    color: #999;

    max-width: 400px;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.footer-column h3 {
    font-size: 16px;

    margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
    color: #999;

    font-size: 14px;

    transition: 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #222;

    padding: 20px 0;
}

.footer-bottom p {
    color: #777;

    font-size: 13px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 950px) {

    .main-nav {
        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        background: white;

        display: none;

        flex-direction: column;

        padding: 25px;

        border-top: 1px solid #eee;
    }

    .main-nav.show {
        display: flex;
    }

    .nav-quote {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 60px;
    }

    .quote-container {
        flex-direction: column;

        align-items: flex-start;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 650px) {

    .container {
        width: 92%;
    }

    .nav-container {
        min-height: 70px;
    }

    .logo img {
        width: 145px;
    }

    .main-nav {
        top: 70px;
    }

    .contact-hero {
        min-height: 380px;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-heading h2,
    .contact-information h2 {
        font-size: 32px;
    }

    .contact-intro,
    .location-section {
        padding: 70px 0;
    }

    .contact-form-box {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-text h2 {
        font-size: 30px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

}