/* ===================================================
   GLOBAL
=================================================== */

html {
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ===================================================
   FONTS
=================================================== */

@font-face {

    font-family: "The Seasons";

    src: url("https://res.cloudinary.com/dlpsh7fpk/raw/upload/v1784801985/The_Seasons_Regular_iuauz6.ttf") format("truetype");

    font-weight: 400;
    font-style: normal;
    font-display: swap;

}

@font-face {

    font-family: "Canva Sans";

    src: url("https://res.cloudinary.com/dlpsh7fpk/raw/upload/v1784801957/Canva-Sans-Regular.ttf_ta8gya.woff") format("woff");

    font-weight: 400;
    font-style: normal;
    font-display: swap;

}
/* ==========================================
NAVBAR
========================================== */

.navbar {

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 10;

    background: linear-gradient(
        to bottom,
        rgba(47, 50, 54, .62) 0%,
        rgba(47, 50, 54, .38) 35%,
        rgba(47, 50, 54, .16) 72%,
        rgba(47, 50, 54, 0) 100%
    );

}

.navbar-container {

    width: min(1700px, 95%);
    margin: 0 auto;

    height: 108px;

    display: flex;
    align-items: center;

}

/* ==========================================
RIGHT SIDE
========================================== */

.navbar-links {

    margin-left: auto;

    display: flex;
    align-items: center;
text-transform: uppercase;
    gap: clamp(25px, 3vw, 50px);

}

.navbar-link {

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: #fff;
    font-family: "Canva Sans", sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: .04em;

    opacity: .9;

    transition:
        opacity .25s ease,
        transform .25s ease;

}

.navbar-link:hover {

    opacity: 1;
    transform: translateY(-2px);

}

.navbar-link i,
.navbar-link svg {

    width: 16px;
    height: 16px;

    flex-shrink: 0;

    color: #FFF;

}

.navbar-cta {

    white-space: nowrap;

}

/* ==========================================
SOCIAL ICONS
========================================== */

.navbar-social-link {

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #FFF;

    opacity: .9;

    transition:
        opacity .25s ease,
        transform .25s ease;

}

.navbar-social-link:hover {

    opacity: 1;
    transform: translateY(-2px);

}

.navbar-social-link i,
.navbar-social-link svg {

    width: 20px;
    height: 20px;

    font-size: 20px;

}

/* ==========================================
TABLET
========================================== */

@media (max-width:1100px){

    .navbar-container{

        height:auto;

        padding:20px 0;

        flex-direction:column;
        gap:20px;

    }

    .navbar-links{

        margin-left:0;

        flex-wrap:wrap;
        justify-content:center;

        gap:22px;

    }

}

/* ==========================================
MOBILE
========================================== */

@media (max-width:768px){

 
    .navbar-links{

        display:none;

    }

}

/* ===================================================
HERO
=================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding-top:48px;

    overflow:hidden;

}

.hero-background{

    position:absolute;
    inset:0;

    z-index:1;

    background-image:
        linear-gradient(
            rgba(0,0,0,.00),
            rgba(0,0,0,.00)
        ),
        url("https://res.cloudinary.com/dlpsh7fpk/image/upload/v1785080433/Untitled_design_14_b6jl6z.webp");

    background-position:center;
    background-repeat:no-repeat;
    background-size:cover;

}

.hero-overlay{

    display:none;

}

.hero-content{

    position:relative;

    z-index:2;

    width:min(860px,90%);

    text-align:center;

}

.hero-content h1 {

    margin:0;

    font-size:clamp(3.2rem,8vw,88px);
    font-weight:600;

    line-height:.96;

    letter-spacing:-.035em;

    color:#fff;

}

.hero-content p {

    max-width:650px;

    margin:32px auto 0;

    font-family:"Canva Sans", sans-serif;

    font-size:21px;
    line-height:1.7;

    color:#fff;

    opacity:.95;

}

/* ==========================================
   HERO SCROLL INDICATOR
========================================== */

.hero-scroll-indicator {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 2rem;

    color: #fff;
    opacity: .8;

    animation: heroArrowBounce 1.8s ease-in-out infinite;
}

.hero-scroll-indicator svg,
.hero-scroll-indicator i {
    width: 34px;
    height: 34px;
    stroke-width: 2;
}

@keyframes heroArrowBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: .45;
    }

    50% {
        transform: translateY(14px);
        opacity: 1;
    }

}

/* ===================================================
BUTTONS
=================================================== */

.btn-primary {

    display:inline-block;

    margin-top:52px;

    padding:18px 40px;

    text-decoration:none;
    text-transform:uppercase;

    font-size:13px;
    font-weight:700;
    letter-spacing:.08em;

    color:#fff;

    border:2px solid #fff;

    font-family:"Canva Sans", sans-serif;

    background:transparent;

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .25s ease;

}

.btn-primary:hover {

    background: #fff;


    color: #000;

    transform: translateY(-3px);

}

.btn-primary:active {

    transform:translateY(0);

}

.btn-primary:focus {

    outline-offset:3px;

}



/* ===================================================
   PAGE TRANSITIONS
=================================================== */

.page {
    display: none;
    opacity: 0;

    transition: opacity .4s cubic-bezier(.4, 0, .2, 1);
}

.page.active {
    display: block;
    opacity: 1;
}

/* ===================================================
   RESPONSIVE
=================================================== */

@media (max-width: 768px) {

    .navbar-inner {
        height: 64px;
    }

    .navbar-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* HERO */

    .hero {

        min-height: 100svh;

        padding-top: 64px;
        padding-bottom: 48px;

        align-items: center;

    }

    .hero-background {

        background-position: center center;

    }

    .hero-content {

        width: min(90%, 340px);

        transform: translateY(-36px);

    }

    .hero-content h1 {

        font-size: clamp(2.8rem, 11vw, 3.8rem);

        line-height: 1.2;


    }

    .hero-content p {

        margin-top: 24px;

        font-size: 1.05rem;
        line-height: 1.6;

    }

    .btn-primary {

        margin-top: 40px;

        width: 60%;

        padding: 18px 24px;

    }

}


/* ==========================================
   MOBILE BUTTON
========================================== */

.mobile-toggle,
.mobile-close {
    position: absolute;

    top: 20px;
    right: 24px;

    width: 46px;
    height: 46px;

    display: none;

    align-items: center;
    justify-content: center;

    border: none;
    background: none;

    cursor: pointer;
}

.mobile-toggle svg {
    width: 30px;
    height: 30px;
    color: #fff;
  opacity: .9;
}

.mobile-close svg {
    width: 30px;
    height: 30px;
    color: #000;
}

/* ==========================================
   MOBILE MENU
========================================== */

.mobile-menu {
    position: fixed;
    inset: 0;

    background: #fff;

    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.22,1,.36,1);

    z-index: 9999;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    height: 80px;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    padding: 0 20px;
}

.mobile-links {
    display: flex;
    flex-direction: column;

    gap: 20px;

    padding: 50px 36px;
}

.mobile-links a {
    display: flex;
    align-items: center;
    gap: 18px;
margin-bottom: 2rem;
    text-decoration: none;

    color: #323232;

    font-size: 1rem;
    font-weight: 600;

    transition:
        color .25s ease,
        transform .25s ease;
}

.mobile-links a:hover {
    color: #000;
    transform: translateX(4px);
}

.mobile-links i,
.mobile-links svg {
    width: 25px;
    height: 25px;

    flex-shrink: 0;

    color: #1c262f;
}



.mobile-social-links {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-top: 20px;
    padding-top: 24px;

    border-top: 1px solid #d8d8d8;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    border-radius: 50%;
border: 2px solid #000;
    background: #fff;

    color: #1c262f;

    font-size: 1.3rem;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.mobile-social-links a:hover {
    background: #1c262f;
    color: #fff;
    transform: translateY(-2px);
}

.mobile-social-links i,
.mobile-social-links svg {
    width: 22px;
    height: 22px;

    color: inherit;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .navbar-links {
        display: none;
    }

    .mobile-toggle,
    .mobile-close {
        display: flex;
    }

}

/* ===================================================
   ACCESSIBILITY
=================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }

}

.page {
    display: none;
    opacity: 0;
    transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.page.active {
    display: block;
    opacity: 1;
}


/* Main Page Container: Two-Column Layout */

.contact-sales-page {

    display: flex;

    min-height: 100vh;
    width: 90%;

    margin: 80px auto 0;

    opacity: 0;
    transform: translateY(120px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);

    will-change: opacity, transform;
    margin-bottom: 10px;



}

.contact-sales-page.visible {

    opacity: 1 !important;
    transform: translateY(0);
}

/* Left Column: Call-to-Action & Support */
.left-column {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

.call-to-action {
    margin-bottom: 20px;
    font-size: 2rem;
    font-family: The Seasons, sans-serif;
}

.call-to-action h2 {
    font-size: 2rem;
    font-family: Georgia, sans-serif;
  font-weight: 400;
  color: 2a2a2a;
}


.call-button {
    display: inline-block;
    background-color: #1C262F;
    color: #fff;
    padding: 12px 10px;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 40px;
}

.cta-text-2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-family: Arial, sans-serif;
}


/* Right Column: Contact Form */
.right-column {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: left;
}

.contact-form-container {
    width: 100%;
    max-width: 500px;
    position: relative;
    /* IMPORTANT: Needed for the absolute positioning of the confirmation overlay */
}

.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
    font-family: Georgia, sans-serif;
  font-weight: 400;
  color: 2a2a2a;

}

/* Form Grid Layout */
form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-field label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #555;
    display: block;
    text-align: left;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
}

.required {
    color: #000;
}

/* Style the disabled select option (placeholder) to be gray */
select option[disabled] {
    color: #999;
}

/* Submit Button Styling – force left alignment */
.form-field button {
    background-color: #1C262F;
    color: #fff;
    border: none;
    padding: 12px 12px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    border: 2px solid #fff;
    text-align: left;
    display: block;
    margin: 0;
}

/* CTA Link Styling */
.cta-click {
    background-color: #1C262F;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
    align-items: left;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 25px;
    border: 2px solid #fff !important;
    flex-wrap: nowrap;
    font-family: "Canva Sans";

}


/* Confirmation Message Styling (Overlaid) */
#quoteThankYouMessage {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    font-family: "Canva Sans";
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-align: left;
    padding: 20px;
    display: none;
    animation: fadeIn 0.5s ease-in-out forwards;
    z-index: 5;
    margin-left: -20px;
    margin-top: -10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {

    .contact-sales-page {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        position: static;
        left: auto;
        transform: none;
        overflow-x: hidden;
              margin-bottom: 3rem;

    }

    .left-column {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        padding: 20px;
        margin-top: 1rem;
        text-align: center;
        align-items: center;
    }

    .right-column {
        padding: 20px;
        margin-top: -5rem;
        justify-content: center;
    }

    .contact-form-container {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-form-container h2 {
        text-align: center;
        margin-top: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .call-to-action {
        font-size: 1.5rem;
        margin-bottom: 6rem;
    }

    .cta-text-2 {
        font-size: 1rem !important;
    }

    .chat-button {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .cta-click {
        display: inline-block;
        margin: 1rem auto 0;
        font-size: 1rem;
        flex-wrap: nowrap;
    }

    .form-field button {
        font-size: 1rem;
    }

    #quoteThankYouMessage {
        margin: 0;
        text-align: center;
    }

}


.process-overview-section {
    max-width: 1400px;
    margin: auto;
    padding: 90px 60px;
    color: #000;
  background: #fff;

}

.process-overview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 120px;
    margin-bottom: 80px;
}

.process-overview-title {
    flex: 1;
}

.process-overview-title h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 4rem;
    line-height: 0.95;
    font-weight: 400;
    margin: 0;
}

.process-overview-title h2 span {
    font-weight: 700;
}

.process-overview-subtitle {
    margin-top: 28px;
    font-size: 1rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #000;
}

.process-overview-text {
    flex: 1;
    max-width: 480px;
}

.process-overview-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 32px;
}

.process-overview-btn {
    display: inline-block;
    padding: 14px 34px;
    border: 2px solid #444;
    color: #000;
    text-decoration: none;
    transition: .3s;
}

.process-overview-btn:hover {
      transform: translateY(-2px);
color: #fff;
border-color: #fff;
background: #1c262f;

}

.process-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px;
}

.process-overview-card {
    text-align: left;
}

.process-overview-number {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 28px;

    border: 1px solid #d8d8d8;
    border-radius: 50%;

    background: #fafafa;

    font-size: 1rem;
    font-weight: 600;
    color: #222;

    transition: .3s;
}

.process-overview-card:hover .process-overview-number {
    background: #1C262F;
    border-color: #1C262F;
  color: #fff;
}

.process-overview-card h3 {
    margin: 0 0 20px;
    font-size: .95rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
}

.process-overview-card h3 span {
    font-weight: 700;
}

.process-overview-card p {
    font-size: .95rem;
    line-height: 1.8;
    color: #000;
}

@media(max-width:768px) {

    .process-overview-header {
        flex-direction: column;
        gap: 60px;
    }

    .process-overview-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .process-overview-title h2 {
        font-size: 2.5rem;
      line-height: 1.2;
    }

    .process-overview-section {
        padding: 70px 25px;
    }

}

/*
SERVICES SECTION
*/

.services-section.fade-in {
    padding: 100px 0 70px;
    background: #fff;

    opacity: 0;
    transform: translateY(120px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1);

    will-change: opacity, transform;
}

.services-section.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-wrapper {
    width: min(1450px, 90%);
    height: auto;
    margin: auto;
    position: relative;
    overflow: hidden;
  margin-top: -2rem;
  margin-bottom: rem;
}

/*==================================================
TRACK
==================================================*/

.services-track {
    display: flex;
    transition: transform .75s cubic-bezier(.77,0,.18,1);
    will-change: transform;
  
}

.service-slide {
    flex: 0 0 calc(100% - .25px);

    display: grid;
    grid-template-columns: 75% 25%;

    background: #fff;

    border: 1px solid #d8d8d8;
  

  
}

/*==================================================
IMAGE
==================================================*/

.service-image {
    position: relative;
    min-height: 650px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-image::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.42) 38%,
            rgba(0,0,0,0) 72%
        );
}

/*==================================================
OVERLAY
==================================================*/

.service-overlay {

    position: absolute;

    left: 50px;
    right: 50px;
    bottom: 80px;

    z-index: 2;

    color: #fff;

}

.service-overlay h2 {

    margin: 0;

    font-family: "Georgia", serif;

    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.1;

}

/*==================================================
RIGHT PANEL
==================================================*/

.service-panel {


    display: flex;
    flex-direction: column;
    justify-content: center;
background: #f9f1e8;
    padding: 42px;

}

.service-summary {

    max-width: 250px;

}

.service-summary p {

    margin: 0;

    color: #444;

    font-size: 1rem;
    line-height: 1.75;

}

.service-divider {

    height: 1px;

    margin: 34px 0;

    background: #dddddd;

}

.service-feature h4 {

    margin: 0 0 12px;

    font-family: "The Seasons", serif;

    font-size: 2rem;
    font-weight: 400;
    line-height: 1;

    color: #222;

}

.service-feature p {

    margin: 0;

    color: #444;

    font-size: .98rem;
    line-height: 1.7;

}

/*==================================================
BUTTON
==================================================*/

.service-footer {

    margin-top: 48px;

}

.service-link {

    display: inline-flex;
    align-items: center;
    gap: 18px;

    text-decoration: none;

    color: #222;

    font-size: 1.05rem;
    font-weight: 600;

}

.service-link .arrow {

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: #1C262F;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #fff;

    transition:
        transform .3s ease,
        background .3s ease;

}

.service-link:hover .arrow {

    transform: translateX(6px);

}

.service-link:hover {
    transform: translateY(-2px);
}

/*==================================================
NAVIGATION
==================================================*/

.service-nav {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: #ffd426;

    color: #111;

    font-size: 1.3rem;

    cursor: pointer;

    transition: .3s;

    z-index: 5;

}

.service-nav:hover {

    transform: translateY(-50%) scale(1.05);

}

.service-nav.prev {

    left: -28px;

}

.service-nav.next {

    right: -28px;

}

/*==================================================
DOTS
==================================================*/

.service-dots {

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    margin-top: 40px;
    margin-bottom: -80px;

}

.service-dot {

    width: 45px;
    height: 8px;

    border: none;
    border-radius: 999px;

    background: #bcbcbc;

    cursor: pointer;

    transition: .35s;

}

.service-dot.active {

    background: #1C262F;

}

/*==================================================
TABLET
==================================================*/

@media(max-width:1100px) {

    .service-slide {

        grid-template-columns: 1fr;

    }

    .service-panel {

        padding: 40px;

    }

    .service-image {

        min-height: 550px;

    }

    .service-nav {

        display: none;

    }
  

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px) {

    .services-section {

        padding: 70px 0;

    }

    .services-wrapper {

        width: 100%;

        padding: 0 15px;

    }

    .services-track {

        gap: 16px;

    }

    .service-slide {

        flex: 0 0 100%;

        border-radius: 24px;

    }

    .service-image {

        min-height: 430px;

    }

    .service-overlay {

        left: 28px;
        right: 28px;
        bottom: 28px;

    }

    .service-overlay h2 {

        font-size: 1.5rem;

    }



    .service-panel {

        padding: 28px;

    }

    .service-summary h3 {

        font-size: 2rem;

    }

    .service-feature h4 {

        font-size: 1.6rem;

    }

    .service-dots {

        margin-bottom: 30px;

    }

    .service-dot {

        width: 30px;

    }

}




/* ===================================================
   FOOTER
=================================================== */

.footer-section {
    background: #1C262F;
    padding: 5rem 0 3rem;
}

.footer-container {
    width: min(1700px, 96%);
    margin: 0 auto;
}

/* ===================================================
   GRID
=================================================== */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: clamp(40px, 3vw, 70px);
    align-items: start;
}

/* ===================================================
   COLUMNS
=================================================== */

.footer-column {
    align-self: start;
}

.footer-brand-column {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-social-column {
    justify-self: stretch;
    padding-left: 80px;
}

/* ===================================================
   LOGO
=================================================== */

.footer-brand {
    display: inline-block;
    text-decoration: none;
    transform: translateY(-22px);
}

.footer-logo {
    display: block;
    width: auto;
    height: 300px;
    max-width: 100%;
    object-fit: contain;
}

/* ===================================================
   HEADINGS
=================================================== */

.footer-heading {
    margin: 0 0 34px;

    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;

    color: rgba(249,243,238,.65);
}

/* ===================================================
   CONTACT / SOCIAL
=================================================== */

.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 25px;

    text-decoration: none;

    color: #fff;
    opacity: .9;

    font-size: 1.05rem;
    line-height: 1.6;

    transition:
        color .3s ease,
        transform .25s ease;
}

.footer-item:hover {
    color: #fff;
    transform: translateX(4px);
    opacity: 1;
}

.footer-item i,
.footer-item svg,
.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;

    color: #fff;
    font-size: 18px;
}

/* ===================================================
   BUSINESS HOURS
=================================================== */

.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-hours-row {
    display: grid;
    grid-template-columns: 18px 1fr auto;
    align-items: center;
    column-gap: 14px;
}

.footer-hours-row svg {
    width: 18px;
    height: 18px;
    color: rgba(249,243,238,.88);
}

.footer-day,
.footer-time {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(249,243,238,.88);
}

.footer-day {
    text-align: left;
}

.footer-time {
    text-align: right;
    white-space: nowrap;
}

/* ===================================================
   SOCIALS
=================================================== */

.footer-social-icons {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.footer-social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 46px;
    height: 46px;

    border-radius: 50%;

    background: rgba(255,255,255,.08);

    color: #fff;
    text-decoration: none;

    transition:
        background .3s ease,
        transform .25s ease;
}

.footer-social-icons a:hover {
    background: rgba(255,255,255,.16);
    transform: translateY(-2px);
}

.footer-social-icons i,
.footer-social-icons svg {
    width: 20px;
    height: 20px;
    color: inherit;
}

/* ===================================================
   DIVIDER
=================================================== */

.footer-divider {
    grid-column: 1 / -1;
    margin: 70px 0 32px;
    border-top: 1px solid rgba(249,243,238,.18);
}

/* ===================================================
   BOTTOM
=================================================== */

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    margin: 0;
    font-size: .9rem;
    color: rgba(249,243,238,.5);
}

/* ===================================================
   TABLET
=================================================== */

@media (max-width: 1100px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 70px;
        column-gap: 60px;
    }

    .footer-social-column {
        justify-self: start;
        padding-left: 0;
    }

    .footer-brand {
        transform: none;
    }

    .footer-logo {
        height: 260px;
    }

}


/* ===================================================
   MOBILE
=================================================== */

@media (max-width:768px) {

    .footer-section {
        padding: 4rem 0 2.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        row-gap: 52px;
    }

    .footer-column,
    .footer-social-column {
        justify-self: center;
        width: 100%;
    }

   /* ==========================================
   LOGO
========================================== */

.footer-brand-column {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-brand {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    transform: none;
}

.footer-logo {
    display: block;
    height: 210px;
    width: auto;
    margin: 0 auto;
  margin-top: -2rem;
    margin-bottom: -2rem;

}


    .footer-heading {
        position: relative;

        height: 1px;
        margin: 0 auto 26px;

        font-size: 0;
        color: transparent;
    }

    .footer-heading::after {
        content: "";

        display: block;

        width: 200px;
        height: 1px;
        margin: 0 auto;

        background: rgba(249,243,238,.18);
    }


    /* ==========================================
       CONTACT
    ========================================== */

    .footer-contact {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 22px;
                    margin-bottom: -1rem;

              margin-top: 2rem;

    }
   
   

    .footer-item {
        display: grid;
        grid-template-columns: 22px 1fr;
        align-items: center;
        column-gap: 18px;
        margin-top: 0.7rem;

        text-align: center;
        justify-content: unset;
    }

    .footer-item:hover {
        transform: none;
    }

    .footer-item i,
    .footer-item svg,
    .footer-icon {
        justify-self: center;

        width: 18px;
        height: 18px;
    }

    .footer-item span {
        text-align: left;
        word-break: break-word;
    }

    /* ==========================================
       BUSINESS HOURS
    ========================================== */

    .footer-hours {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        gap: 18px;
                 margin-bottom: -1rem;

              margin-top: 2rem;
    }

    .footer-hours-row {
        display: grid;
        grid-template-columns: 22px 1fr auto;
        align-items: center;
        column-gap: 18px;
        margin-top: 0.7rem;
    }

    .footer-hours-row svg {
        color: #fff;
        justify-self: center;
    }

    .footer-day {
        text-align: left;
    }

    .footer-time {
        text-align: right;
        white-space: nowrap;
    }

    /* ==========================================
       SOCIAL
    ========================================== */

    .footer-social {
        display: none;


    }

    .footer-social-column {
        padding-left: 0;
        text-align: center;

    }

    .footer-social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;

        margin-top: 50px;
          margin-bottom: -4rem;

    }

    .footer-social-icons a {
        width: 52px;
        height: 52px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;
        background: rgba(255,255,255,.06);

        transition:
            background .25s ease,
            transform .25s ease;
    }

    .footer-social-icons a:hover {
        background: rgba(255,255,255,.14);
        transform: translateY(-2px);
    }

    .footer-social-icons i,
    .footer-social-icons svg {
        width: 22px;
        height: 22px;

        color: #fff;
    }

    /* ==========================================
       COPYRIGHT
    ========================================== */

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .footer-copyright {
        text-align: center;
              margin-top: -3rem;
    }


