:root {
    --primary-black: #1a1a1a;
    --secondary-dark: #2c2c2c;
    --accent-red: #D90429;
    --text-light: #f4f4f4;
    --text-dark: #1a1a1a;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 255);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container{
    max-width:1700px;   /* or 1600px */
    margin:0 auto;
    padding:15px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:90px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: width 0.3s;
}

nav ul li a:hover { color: var(--accent-red); }
nav ul li a:hover::after { width: 100%; }

.mobile-toggle { 
    display: none; 
    font-size: 24px; 
    background: none; 
    border: none; 
    cursor: pointer; 
    color: var(--primary-black);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 5s ease-in-out;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    z-index: 3;
    color: var(--text-light);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    border-left: 5px solid var(--accent-red);
    padding-left: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--accent-red);
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-red);
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-red);
}

/* --- Section Styling --- */
section {
    padding: 100px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 15px auto 0;
}

/* --- About Section --- */
#about {
    background-color: white;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-subsection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 80px;
}

.about-subsection.reverse .about-img-sub {
    order: -1; 
}

.about-img-sub {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    border-radius: 4px;
}

.about-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-sub:hover img {
    transform: scale(1.05);
}

.about-features {
    background-color: var(--primary-black);
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 4px;
}

.about-features h3 {
    color: var(--accent-red);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.about-features ul {
    list-style: none;
}

.about-features p {
    line-height: 2;
}
.about-features ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.about-features ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-red);
}

.global-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}
.global-list span {
    background: #333;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: background 0.3s;
}
.global-list span:hover {
    background: var(--accent-red);
}

/* --- Services Section --- */
#services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    height: 450px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
}

.service-content h3 {
    color: var(--primary-black);
    font-size: 1.4rem;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--accent-red);
    display: inline-block;
    padding-bottom: 5px;
}

.service-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* --- Projects Section --- */
#projects {
    background-color: var(--primary-black);
    color: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    height: 300px;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.project-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-item:hover .project-overlay {
    transform: translateY(0);
}

/* --- Projects (PDF Cards) --- */
.docs-section {
    margin-top: 80px;
    border-top: 1px solid #333;
    padding-top: 60px;
}

.docs-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: white;
    position: relative;
}
.docs-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-red);
    margin: 15px auto 0;
}

.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.doc-card {
    background: #2c2c2c;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: white;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.doc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.doc-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.doc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.doc-card:hover .doc-img img {
    transform: scale(1.08);
}

.doc-img::after {
    content: '\f1c1'; 
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-red);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 1.2rem;
}

.doc-content {
    padding: 25px;
    text-align: center;
}

.doc-content h4 {
    font-size: 1.2rem;
    color: white;
    line-height: 1.4;
}

/* --- Contact & Map Section --- */
#contact {
    background-color: white;
    padding-bottom: 0;
}

.full-width-map {
    width: 100%;
    position: relative;
    margin-top: 50px;
}

.full-width-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s;
}
.full-width-map iframe:hover { filter: grayscale(0%); }

/* --- Footer --- */
footer {
    background-color: var(--primary-black);
    color: var(--text-light);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #333;
    padding-bottom: 40px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo img {
    height: 55px; 
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #bbb;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact-info i {
    color: var(--accent-red);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent-red); }

.social-icons a {
    color: white;
    background: #333;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent-red);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .footer-contact-info { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    section { padding: 70px 20px; }
    
    .mobile-toggle { display: block; }
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 90px; 
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 20px 0;
        gap: 15px;
    }
    nav ul.active { display: flex; }
    nav ul li { text-align: center; }

    .hero-slider { min-height: 500px; height: 90vh; }
    .hero-content { left: 20px; right: 20px; max-width: 100%; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1rem; }
    .btn-primary { padding: 12px 30px; font-size: 1rem; }

    .about-intro, .about-subsection {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    .about-subsection.reverse .about-img-sub {
        order: 0; 
    }
    .about-img-main img { max-height: 300px; }
    .about-features { padding: 30px; }

    .services-grid, .projects-grid, .docs-grid { grid-template-columns: 1fr; }
    .service-card { height: auto; }
    
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-contact-info p { justify-content: center; }
    .social-icons a { margin: 0 5px; }
}

@media (max-width: 480px) {
    .logo img { height: 50px; }
    .hero-content h1 { font-size: 1.8rem; padding-left: 15px; }
    .section-title { font-size: 2rem; }
    .btn-primary { padding: 10px 25px; width: 100%; text-align: center; }
}

/*=============================
        OUR EXPERTISE
==============================*/

.expertise-section{
    width:100%;
    padding:90px 5%;
    background:#f7f9fc;
}

.expertise-section .container{
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0c86d1;
    font-size:15px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:42px;
    color:#15344f;
    margin:15px 0;
    line-height:1.2;
}

.section-title p{
    max-width:850px;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.expertise-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.expertise-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.expertise-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}

.expertise-card h3{
    font-size:28px;
    color:#15344f;
    padding:25px 30px 10px;
}

.expertise-card p{
    padding:0 30px;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.expertise-card ul{
    margin:20px 30px;
    padding-left:20px;
}

.expertise-card ul li{
    margin-bottom:10px;
    color:#444;
    line-height:1.7;
}

.expertise-card p:last-child{
    padding-bottom:30px;
}

/*==========================
      Responsive
===========================*/

@media(max-width:992px){

.expertise-grid{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:34px;
}

}

@media(max-width:768px){

.expertise-section{
    padding:70px 20px;
}

.section-title h2{
    font-size:28px;
}

.section-title p{
    font-size:15px;
}

.expertise-card img{
    height:220px;
}

.expertise-card h3{
    font-size:24px;
    padding:20px 20px 10px;
}

.expertise-card p{
    padding:0 20px;
    font-size:15px;
}

.expertise-card ul{
    margin:20px;
}

}

@media (max-width: 900px) {

    .site-header {
        height: 82px;
    }

    .nav-container {
        height: 82px;
        overflow: visible;
    }

    /* LOGO */
    .site-header .logo {
        left: 18px;
        top: 50%;
        width: 190px;
        transform: translateY(-50%);
    }

    .site-header .logo img {
        width: 190px;
    }

    /* Hide desktop red design */
    .red-design,
    .nav-container::after {
        display: none;
    }

    /* MOBILE BUTTON */
    .mobile-toggle {
        display: flex;
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);

        width: 42px;
        height: 42px;

        align-items: center;
        justify-content: center;

        background: #222;
        color: #fff;
        border: none;
        border-radius: 4px;

        font-size: 20px;
        cursor: pointer;

        z-index: 100;
    }

    /* MOBILE MENU */
    .nav-content {
        position: absolute;

        top: 82px;
        left: 0;
        right: 0;

        width: 100%;
        height: auto;

        display: block;

        background: #fff;

        box-shadow: 0 10px 25px rgba(0,0,0,.15);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;

        z-index: 999;
    }

    /* OPEN MENU */
    .nav-content.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* NAV */
    .main-nav {
        width: 100%;
    }

    .main-nav ul {
        display: flex;

        flex-direction: column;
        align-items: stretch;

        width: 100%;

        gap: 0;

        margin: 0;
        padding: 10px 20px;
    }

    .main-nav li {
        width: 100%;

        border-bottom: 1px solid #eeeeee;
    }

    .main-nav li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        display: block;

        width: 100%;

        padding: 16px 5px;

        font-size: 14px;

        color: #111;
    }

    .main-nav a:hover {
        color: #ff3038;
    }

    .main-nav a::after {
        display: none !important;
    }

    /* Hide desktop social icons */
    .header-socials {
        display: none;
    }

    /* Hide desktop email */
    .header-email {
        display: none;
    }

    body {
        padding-top: 82px;
    }
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

/* =========================================
   MOBILE MENU FIX
========================================= */

@media (max-width: 900px) {

    .nav-container {
        overflow: visible !important;
    }

    .nav-content {
        position: absolute !important;
        top: 82px !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;
        height: auto !important;

        display: block !important;

        background: #ffffff !important;

        opacity: 0 !important;
        visibility: hidden !important;

        max-height: 0 !important;
        overflow: hidden !important;

        transform: translateY(-10px);

        transition:
            opacity 0.3s ease,
            transform 0.3s ease,
            max-height 0.3s ease,
            visibility 0.3s ease;

        z-index: 99999 !important;
    }


    /* MENU OPEN */

    .nav-content.mobile-open {
        opacity: 1 !important;
        visibility: visible !important;

        max-height: 500px !important;

        transform: translateY(0) !important;

        overflow: visible !important;

        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }


    /* NAVIGATION */

    .main-nav {
        width: 100% !important;
        display: block !important;
    }

    .main-nav ul {
        display: flex !important;

        flex-direction: column !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 10px 20px !important;

        gap: 0 !important;

        list-style: none !important;
    }

    .main-nav li {
        display: block !important;

        width: 100% !important;

        border-bottom: 1px solid #eeeeee;
    }

    .main-nav a {
        display: block !important;

        width: 100% !important;

        padding: 16px 5px !important;

        color: #111111 !important;

        font-size: 15px !important;

        text-decoration: none !important;
    }

    .main-nav a:hover {
        color: #ff3038 !important;
    }

    .main-nav a::after {
        display: none !important;
    }


    /* Hide email/social on mobile */

    .header-socials,
    .header-email {
        display: none !important;
    }


    /* Mobile button */

    .mobile-toggle {
        display: flex !important;

        position: absolute !important;

        right: 18px !important;
        top: 50% !important;

        transform: translateY(-50%) !important;

        width: 42px !important;
        height: 42px !important;

        align-items: center !important;
        justify-content: center !important;

        z-index: 100000 !important;

        background: #222 !important;
        color: #fff !important;

        border: none !important;
        border-radius: 5px !important;

        cursor: pointer;
    }
}


/* =========================================================
   LOGO
   ========================================================= */

.site-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.site-header .logo {
    position: absolute;
    left: 65px;
    top: 0;
    width: 300px;
    height: auto;
    z-index: 20;
    display: block;
}

.site-header .logo img {
    display: block;
    width: 225px;
    height: auto;
    max-width: none;
}

/* =========================================================
   RED / BLACK DIAGONAL DESIGN
   ========================================================= */

.red-design {

    position: absolute;

    left: 290px;

    top: 27px;

    width: 145px;

    height: 94px;

    z-index: 5;

    background: #ff3038;

    clip-path: polygon(
        0 0,
        58px 0,
        145px 100%,
        87px 100%
    );
}


/* =========================================================
   NAVIGATION + SOCIAL + EMAIL
   ALL IN ONE ROW
   ========================================================= */

.nav-content {

    position: absolute;

    left: 442px;

    right: 55px;

    top: 55px;

    height: 45px;

    display: flex;

    align-items: center;

    z-index: 20;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav {

    position: relative;

    margin: 0;

    padding: 0;
}


.main-nav ul {

    display: flex;

    align-items: center;

    gap: 25px;

    list-style: none;

    margin: 0;

    padding: 0;
}


.main-nav li {

    margin: 0;

    padding: 0;

    white-space: nowrap;
}


.main-nav a {

    display: block;

    color: #111111;

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;

    font-weight: 500;

    line-height: 1;

    text-decoration: none;

    white-space: nowrap;

    transition: color .2s ease;
}


.main-nav a:hover {

    color: #ff3038;
}


/* Remove underline */

.main-nav a::after {

    display: none !important;
}


/* =========================================================
   SOCIAL ICONS
   DIRECTLY AFTER NAV LINKS
   ========================================================= */

.header-socials {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-left: 42px;

    flex-shrink: 0;
}


.header-socials a {

    width: 31px;

    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #303030;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    transition: none;
}


.header-socials a:hover {

    background: #303030;

    color: #ffffff;

    transform: none;
}


/* =========================================================
   EMAIL
   ========================================================= */

.header-email {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-left: 62px;

    color: #111111;

    font-family: 'Montserrat', sans-serif;

    font-size: 15px;

    font-weight: 500;

    text-decoration: none;

    white-space: nowrap;

    flex-shrink: 0;
}


.header-email i {

    font-size: 15px;

    color: #111111;
}


.header-email:hover {

    color: #ff3038;
}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.mobile-toggle {

    display: none;

    position: absolute;

    right: 18px;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 4px;

    background: #222222;

    color: #ffffff;

    font-size: 19px;

    cursor: pointer;

    z-index: 100;
}


/* =========================================================
   BODY OFFSET
   ========================================================= */

body {

    padding-top: 142px;
}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1600px) {

    .site-header {

        height: 155px;
    }

    .nav-container {

        height: 155px;
    }


    .site-header .logo {

        left: 65px;

        top: 55px;

        width: 300px;
    }


    .site-header .logo img {

        width: 300px;
    }


    .red-design {

        left: 405px;

        top: 10px;

        width: 220px;

        height: 144px;
    }


    .nav-container::after {

        left: 625px;

        bottom: 21px;

        height: 22px;
    }


    .nav-content {

        left: 735px;

        right: 70px;

        top: 55px;
    }


    .main-nav ul {

        gap: 32px;
    }


    .main-nav a {

        font-size: 14px;
    }


    .header-socials {

        margin-left: 45px;
    }


    .header-email {

        margin-left: 55px;
    }


    body {

        padding-top: 155px;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .site-header {

        height: 120px;
    }


    .nav-container {

        height: 120px;
    }


    .site-header .logo {

        left: 35px;

        top: 42px;

        width: 190px;
    }


    .site-header .logo img {

        width: 190px;
    }


    .red-design {

        left: 245px;

        top: 20px;

        width: 130px;

        height: 80px;
    }


    .nav-container::after {

        left: 370px;

        bottom: 15px;

        height: 12px;
    }


    .nav-content {

        left: 400px;

        right: 30px;

        top: 43px;
    }


    .main-nav ul {

        gap: 18px;
    }


    .main-nav a {

        font-size: 13px;
    }


    .header-socials {

        margin-left: 25px;

        gap: 7px;
    }


    .header-socials a {

        width: 28px;

        height: 28px;

        font-size: 12px;
    }


    .header-email {

        margin-left: 25px;

        font-size: 12px;
    }


    body {

        padding-top: 120px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 900px) {

    .site-header {

        height: 82px;

        background: #ffffff;
    }



    .nav-container {

        height: 82px;
    }


    /* Logo */

    .site-header .logo {

        left: 18px;

        top: 50%;

        width: 190px;

        transform: translateY(-50%);
    }


    .site-header .logo img {

        width: 190px;
    }


    /* Hide desktop red design */

    .red-design,

    .nav-container::after {

        display: none;
    }


    /* Mobile button */

    .mobile-toggle {

        display: flex;

        align-items: center;

        justify-content: center;
    }


    /* Hide desktop row */

    .nav-content {

        position: absolute;

        left: 0;

        right: 0;

        top: 82px;

        height: auto;

        display: block;

        background: #ffffff;

        box-shadow: 0 10px 25px rgba(0,0,0,.12);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;

        z-index: 50;
    }


    /* Open menu */

    .nav-content:has(.mobile-open) {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .main-nav {

        width: 100%;
    }


    .main-nav ul {

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 20px;
    }


    .main-nav li {

        width: 100%;

        border-bottom: 1px solid #eeeeee;
    }


    .main-nav a {

        padding: 15px 5px;

        font-size: 14px;
    }


    /* Social */

    .header-socials {

        display: none;
    }


    /* Email */

    .header-email {

        display: none;
    }


    body {

        padding-top: 82px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .site-header .logo {

        left: 14px;

        width: 170px;
    }


    .site-header .logo img {

        width: 170px;
    }


    .mobile-toggle {

        right: 14px;

        width: 40px;

        height: 40px;
    }

}
/* =========================================================
   MOBILE LOGO FIX
   ========================================================= */

@media (max-width: 900px) {

    .site-header .logo {
        position: absolute !important;

        left: 18px !important;
        top: 50% !important;

        width: 190px !important;
        height: auto !important;

        transform: translateY(-50%) !important;

        z-index: 20 !important;
    }

    .site-header .logo img {
        display: block !important;

        width: 190px !important;
        height: auto !important;

        max-width: none !important;
    }

}
@media (max-width: 480px) {

    .site-header .logo {
        left: 14px !important;
        width: 170px !important;
    }

    .site-header .logo img {
        width: 170px !important;
    }

}
/* =========================================
   DESKTOP LOGO SIZE
   Does NOT affect mobile
========================================= */

@media (min-width: 901px) {

    .site-header .logo img {
        width: 290px !important;
        height: auto !important;
    }

}