/* =========================================
   THE SOFA REPAIR
   HEADER DESIGN
   Navy Blue + Golden Yellow
========================================= */

:root {
    --navy: #0B3A70;
    --navy-dark: #07294F;
    --navy-light: #164F8F;

    --gold: #FFB800;
    --gold-dark: #E5A300;

    --white: #FFFFFF;
    --light-bg: #F7F9FC;

    --text-dark: #172033;

    --transition: all 0.3s ease;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid rgba(11, 58, 112, 0.08);
    position: relative;
    z-index: 9999;
}


/* =========================================
   HEADER CONTAINER
========================================= */

.header-container {
    width: min(1200px, 92%);
    min-height: 86px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================
   LOGO
========================================= */

.brand-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.brand-logo img {
    display: block;
    width: 210px;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}


/* =========================================
   NAVIGATION
========================================= */

.main-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    flex: 1;
}


.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    gap: 28px;
}


.nav-menu>li {
    position: relative;
}


.nav-menu>li>a {
    position: relative;

    display: flex;
    align-items: center;
    gap: 5px;

    padding: 32px 0;

    color: var(--navy);
    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;

    transition: var(--transition);
}


/* NAV HOVER */

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
    color: var(--gold-dark);
}


/* GOLD UNDERLINE */

.nav-menu>li>a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 23px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: var(--transition);
}


.nav-menu>li>a:hover::after,
.nav-menu>li>a.active::after {
    width: 100%;
}


/* =========================================
   DROPDOWN
========================================= */

.dropdown-icon {
    font-size: 15px;
    line-height: 1;
    transition: var(--transition);
}


.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}


.dropdown-menu {
    position: absolute;

    top: calc(100% - 10px);
    left: 50%;

    transform: translateX(-50%) translateY(10px);

    min-width: 245px;

    padding: 10px 0;

    list-style: none;

    background: var(--white);

    border-top: 3px solid var(--gold);

    box-shadow: 0 18px 45px rgba(7, 41, 79, 0.14);

    border-radius: 0 0 8px 8px;

    opacity: 0;
    visibility: hidden;

    transition: var(--transition);
}


.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}


.dropdown-menu li a {
    display: block;

    padding: 11px 20px;

    color: var(--navy);

    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 500;

    transition: var(--transition);
}


.dropdown-menu li a:hover {
    color: var(--white);
    background: var(--navy);
    padding-left: 25px;
}


/* =========================================
   HEADER ACTIONS
========================================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* CALL */

.header-call {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--navy);
    text-decoration: none;

    padding: 8px 12px;

    border-radius: 6px;

    transition: var(--transition);
}


.header-call:hover {
    background: var(--light-bg);
}


.call-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--white);
    background: var(--navy);

    border-radius: 50%;

    font-size: 17px;
}


.call-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.call-text small {
    color: #6B7280;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 500;
}


.call-text strong {
    color: var(--navy);

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    white-space: nowrap;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.header-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 12px 18px;

    color: var(--navy);
    background: var(--gold);

    border: 2px solid var(--gold);
    border-radius: 6px;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;

    transition: var(--transition);
}


.header-whatsapp:hover {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);

    transform: translateY(-2px);
}


.whatsapp-icon {
    font-size: 17px;
    line-height: 1;
}


/* =========================================
   MOBILE MENU BUTTON
========================================= */

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 0;

    border: 0;
    border-radius: 6px;

    background: var(--navy);

    cursor: pointer;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}


.menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    background: var(--white);

    transition: var(--transition);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .header-container {
        width: min(94%, 1000px);
        gap: 20px;
    }

    .brand-logo img {
        width: 180px;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu>li>a {
        font-size: 14px;
    }

    .header-call {
        display: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 850px) {

    .header-container {
        min-height: 76px;
    }


    .brand-logo img {
        width: 175px;
        max-height: 60px;
    }


    .menu-toggle {
        display: flex;
        flex-shrink: 0;
    }


    .main-navigation {
        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        display: block;

        padding: 15px 4% 25px;

        background: var(--white);

        box-shadow: 0 15px 30px rgba(7, 41, 79, 0.12);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-10px);

        transition: var(--transition);
    }


    .main-navigation.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);
    }


    .nav-menu {
        display: block;
        width: 100%;
    }


    .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid rgba(11, 58, 112, 0.08);
    }


    .nav-menu>li>a {
        padding: 15px 5px;
        width: 100%;

        justify-content: space-between;
    }


    .nav-menu>li>a::after {
        display: none;
    }


    /* MOBILE DROPDOWN */

    .dropdown-menu {
        position: static;

        width: 100%;
        min-width: 0;

        transform: none;

        padding: 0;

        border-top: 0;

        box-shadow: none;

        border-radius: 0;

        display: none;

        opacity: 1;
        visibility: visible;
    }


    .has-dropdown:hover .dropdown-menu {
        transform: none;
    }


    .has-dropdown:hover .dropdown-menu {
        display: block;
    }


    .dropdown-menu li a {
        padding: 11px 20px;

        background: var(--light-bg);
    }


    /* MOBILE CTA */

    .header-actions {
        margin-top: 18px;

        display: flex;

        width: 100%;
    }


    .header-whatsapp {
        width: 100%;
        padding: 13px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .header-container {
        width: 92%;
    }


    .brand-logo img {
        width: 155px;
    }


    .menu-toggle {
        width: 40px;
        height: 40px;
    }

}

.tsr-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0B3A70;
}

/* BACKGROUND DECORATION */
.tsr-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -180px;
    top: -220px;
    border: 1px solid rgba(255, 184, 0, 0.18);
    border-radius: 50%;
}

.tsr-hero::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -150px;
    bottom: -150px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

/* ========================================= CONTAINER ========================================= */
.tsr-hero-container {
    position: relative;
    z-index: 2;
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 75px 0 85px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 65px;
}

/* ========================================= CONTENT ========================================= */
.tsr-hero-content {
    min-width: 0;
}

.tsr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #FFB800;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.tsr-hero-badge span {
    width: 32px;
    height: 2px;
    background: #FFB800;
}

/* ========================================= HEADING ========================================= */
.tsr-hero h1 {
    margin: 0;
    max-width: 680px;
    color: #FFFFFF;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.12;
    font-weight: 700;
    letter-spacing: -1px;
}

.tsr-hero h1 em {
    color: #FFB800;
    font-style: normal;
}

/* ========================================= DESCRIPTION ========================================= */
.tsr-hero-content>p {
    max-width: 600px;
    margin: 24px 0 30px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

/* ========================================= BUTTONS ========================================= */
.tsr-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-bottom: 32px;
}

.tsr-btn {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 8px 21px;
    text-decoration: none;
    border-radius: 5px;
    font-family: "DM Sans", sans-serif;
    transition: 0.3s ease;
}

.tsr-btn-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
}

.tsr-btn span:not(.tsr-btn-icon) {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tsr-btn small {
    font-size: 9px;
    font-weight: 500;
}

.tsr-btn strong {
    font-size: 13px;
}

/* GOLD BUTTON */
.tsr-btn-gold {
    color: #082E57;
    background: #FFB800;
    border: 2px solid #FFB800;
}

.tsr-btn-gold .tsr-btn-icon {
    background: #0B3A70;
    color: #FFFFFF;
}

.tsr-btn-gold small {
    color: rgba(8, 46, 87, 0.65);
}

.tsr-btn-gold:hover {
    color: #FFFFFF;
    background: transparent;
    transform: translateY(-3px);
}

.tsr-btn-gold:hover .tsr-btn-icon {
    background: #FFB800;
    color: #0B3A70;
}

/* OUTLINE BUTTON */
.tsr-btn-outline {
    color: #FFFFFF;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.tsr-btn-outline .tsr-btn-icon {
    color: #0B3A70;
    background: #FFB800;
}

.tsr-btn-outline small {
    color: rgba(255, 255, 255, 0.6);
}

.tsr-btn-outline:hover {
    color: #0B3A70;
    background: #FFFFFF;
    border-color: #FFFFFF;
    transform: translateY(-3px);
}

.tsr-btn-outline:hover small {
    color: #64748B;
}

/* ========================================= TRUST POINTS ========================================= */
.tsr-hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 22px;
}

.tsr-hero-trust>div {
    display: flex;
    align-items: center;
    gap: 7px;
}

.tsr-hero-trust b {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3A70;
    background: #FFB800;
    border-radius: 50%;
    font-size: 11px;
}

.tsr-hero-trust span {
    color: rgba(255, 255, 255, 0.72);
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
}

/* ========================================= IMAGE AREA ========================================= */
.tsr-hero-image-area {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tsr-image-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 0.95;
    overflow: hidden;
    border: 1px solid rgba(255, 184, 0, 0.55);
    border-radius: 7px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
}

.tsr-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(4, 28, 53, 0.32));
}

.tsr-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ========================================= FLOATING CARD ========================================= */
.tsr-floating-card {
    position: absolute;
    left: -25px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #FFFFFF;
    border-left: 4px solid #FFB800;
    border-radius: 5px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.tsr-floating-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B3A70;
    background: #FFF3CC;
    border-radius: 50%;
    font-size: 17px;
}

.tsr-floating-card div:last-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tsr-floating-card strong {
    color: #0B3A70;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.tsr-floating-card span {
    color: #718096;
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
}

/* ========================================= GOLD RING ========================================= */
.tsr-gold-ring {
    position: absolute;
    width: 75px;
    height: 75px;
    right: -18px;
    top: -25px;
    border: 2px solid #FFB800;
    border-radius: 50%;
}

.tsr-gold-ring::after {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    right: 5px;
    bottom: 7px;
    background: #FFB800;
    border-radius: 50%;
}

/* ========================================= TABLET ========================================= */
@media (max-width: 1000px) {
    .tsr-hero-container {
        gap: 35px;
        padding: 60px 0 75px;
    }

    .tsr-hero h1 {
        font-size: 48px;
    }

    .tsr-hero-content>p {
        font-size: 14px;
    }

    .tsr-floating-card {
        left: -10px;
    }
}

/* ========================================= MOBILE ========================================= */
@media (max-width: 768px) {
    .tsr-hero-container {
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 45px;
        padding: 50px 0 75px;
    }

    .tsr-hero-content {
        width: 100%;
    }

    .tsr-hero-badge {
        margin-bottom: 17px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .tsr-hero h1 {
        max-width: 100%;
        font-size: clamp(38px, 10vw, 52px);
        line-height: 1.12;
        letter-spacing: -0.5px;
    }

    .tsr-hero-content>p {
        max-width: 100%;
        margin: 20px 0 26px;
        font-size: 14px;
        line-height: 1.75;
    }

    .tsr-hero-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 28px;
    }

    .tsr-btn {
        width: 100%;
        min-height: 56px;
        justify-content: center;
        padding: 7px 10px;
    }

    .tsr-btn strong {
        font-size: 11px;
    }

    .tsr-btn small {
        font-size: 8px;
    }

    .tsr-hero-trust {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }

    .tsr-hero-trust span {
        font-size: 10px;
    }

    .tsr-hero-image-area {
        width: 100%;
        padding: 0 5px 25px;
    }

    .tsr-image-frame {
        max-width: 100%;
        aspect-ratio: 1 / 0.88;
    }

    .tsr-floating-card {
        left: 0;
        bottom: 0;
        padding: 11px 13px;
    }

    .tsr-floating-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .tsr-floating-card strong {
        font-size: 11px;
    }

    .tsr-floating-card span {
        font-size: 8px;
    }

    .tsr-gold-ring {
        width: 55px;
        height: 55px;
        right: -5px;
        top: -15px;
    }
}

/* ========================================= SMALL MOBILE ========================================= */
@media (max-width: 480px) {
    .tsr-hero-container {
        width: 90%;
        padding-top: 42px;
    }

    .tsr-hero h1 {
        font-size: 37px;
    }

    .tsr-hero-content>p {
        font-size: 13px;
    }

    .tsr-hero-buttons {
        grid-template-columns: 1fr;
    }

    .tsr-btn {
        min-height: 54px;
    }

    .tsr-hero-trust {
        grid-template-columns: 1fr;
    }

    .tsr-hero-image-area {
        padding-left: 0;
        padding-right: 0;
    }

    .tsr-image-frame {
        aspect-ratio: 1 / 0.95;
    }

    .tsr-floating-card {
        left: 5px;
    }
}

/* =========================================
   THE SOFA REPAIR
   PREMIUM ABOUT SECTION
========================================= */

.tsr-about {
    position: relative;

    width: 100%;

    padding: 110px 0;

    background: #FFFFFF;

    overflow: hidden;
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.tsr-about::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -280px;
    top: 50px;

    border: 1px solid rgba(11, 58, 112, 0.08);

    border-radius: 50%;
}


.tsr-about::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    bottom: 40px;

    background: #FFF8E5;

    border-radius: 50%;
}


/* =========================================
   CONTAINER
========================================= */

.tsr-about-container {
    position: relative;

    z-index: 2;

    width: min(1180px, 92%);

    margin: 0 auto;

    display: grid;

    grid-template-columns: 0.9fr 1fr;

    align-items: center;

    gap: 85px;
}


/* =========================================
   IMAGE AREA
========================================= */

.tsr-about-visual {
    position: relative;

    min-width: 0;

    padding: 0 25px 30px 0;
}


.tsr-about-main-image {
    position: relative;

    z-index: 2;

    width: 100%;

    aspect-ratio: 0.88 / 1;

    overflow: hidden;

    border-radius: 6px;

    box-shadow:
        0 25px 55px rgba(7, 41, 79, 0.18);
}


.tsr-about-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;
}


.tsr-about-main-image:hover img {
    transform: scale(1.04);
}


/* =========================================
   GOLD FRAME
========================================= */

.tsr-about-frame {
    position: absolute;

    z-index: 1;

    top: 25px;
    right: 0;

    width: calc(100% - 5px);
    height: calc(100% - 5px);

    border: 2px solid #FFB800;

    border-radius: 6px;
}


/* =========================================
   EXPERIENCE CARD
========================================= */

.tsr-about-experience {
    position: absolute;

    z-index: 4;

    left: -25px;
    bottom: 5px;

    min-width: 190px;

    padding: 20px 24px;

    display: flex;
    align-items: center;

    gap: 15px;

    background: #0B3A70;

    border-left: 5px solid #FFB800;

    box-shadow:
        0 15px 35px rgba(7, 41, 79, 0.25);
}


.tsr-about-experience strong {
    color: #FFB800;

    font-family: "Playfair Display", serif;

    font-size: 42px;

    line-height: 1;
}


.tsr-about-experience span {
    color: #FFFFFF;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    line-height: 1.5;

    font-weight: 600;
}


/* =========================================
   DOT
========================================= */

.tsr-about-dot {
    position: absolute;

    z-index: 4;

    right: -5px;
    top: -20px;

    width: 65px;
    height: 65px;

    border: 2px solid #FFB800;

    border-radius: 50%;
}


.tsr-about-dot::after {
    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    right: 2px;
    bottom: 7px;

    background: #FFB800;

    border-radius: 50%;
}


/* =========================================
   CONTENT
========================================= */

.tsr-about-content {
    min-width: 0;
}


.tsr-section-label {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 17px;

    color: #0B3A70;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}


.tsr-section-label span {
    width: 32px;
    height: 2px;

    background: #FFB800;
}


/* =========================================
   HEADING
========================================= */

.tsr-about-content h2 {
    max-width: 600px;

    margin: 0 0 22px;

    color: #0B3A70;

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 4vw, 54px);

    line-height: 1.13;

    letter-spacing: -0.8px;
}


.tsr-about-content h2 span {
    display: block;

    color: #FFB800;
}


/* =========================================
   PARAGRAPHS
========================================= */

.tsr-about-content > p {
    max-width: 650px;

    margin: 0 0 16px;

    color: #64748B;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    line-height: 1.85;
}


.tsr-about-content > p strong {
    color: #0B3A70;

    font-weight: 700;
}


.tsr-about-intro {
    color: #475569 !important;

    font-size: 15px !important;
}


/* =========================================
   FEATURES
========================================= */

.tsr-about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 28px;

    padding-top: 27px;

    border-top: 1px solid #E8EDF3;
}


.tsr-about-feature {
    display: flex;

    align-items: flex-start;

    gap: 12px;
}


.tsr-feature-icon {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #0B3A70;

    background: #FFF4D2;

    border: 1px solid rgba(255, 184, 0, 0.35);

    border-radius: 50%;

    font-size: 13px;

    font-weight: 800;
}


.tsr-about-feature h3 {
    margin: 0 0 4px;

    color: #0B3A70;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 800;
}


.tsr-about-feature p {
    margin: 0;

    color: #7A8798;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    line-height: 1.5;
}


/* =========================================
   BOTTOM CTA
========================================= */

.tsr-about-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-top: 32px;

    padding-top: 25px;

    border-top: 1px solid #E8EDF3;
}


.tsr-about-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #0B3A70;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 800;

    transition: 0.3s ease;
}


.tsr-about-link span {
    color: #FFB800;

    font-size: 20px;

    transition: 0.3s ease;
}


.tsr-about-link:hover {
    color: #FFB800;
}


.tsr-about-link:hover span {
    transform: translateX(5px);
}


/* =========================================
   CONTACT
========================================= */

.tsr-about-contact {
    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 4px;
}


.tsr-about-contact span {
    color: #94A3B8;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;
}


.tsr-about-contact a {
    color: #0B3A70;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;

    font-weight: 800;
}


.tsr-about-contact a:hover {
    color: #FFB800;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .tsr-about {
        padding: 80px 0;
    }

    .tsr-about-container {
        gap: 50px;
    }

    .tsr-about-content h2 {
        font-size: 42px;
    }

    .tsr-about-experience {
        left: -10px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .tsr-about {
        padding: 70px 0;
    }


    .tsr-about-container {
        width: 90%;

        display: flex;

        flex-direction: column;

        gap: 55px;
    }


    .tsr-about-visual {
        width: 100%;

        padding-right: 15px;
        padding-bottom: 30px;
    }


    .tsr-about-main-image {
        aspect-ratio: 1 / 1.05;
    }


    .tsr-about-frame {
        top: 18px;
        right: 0;
    }


    .tsr-about-experience {
        left: 0;
        bottom: 0;

        min-width: 170px;

        padding: 15px 18px;
    }


    .tsr-about-experience strong {
        font-size: 34px;
    }


    .tsr-about-dot {
        width: 52px;
        height: 52px;

        right: -2px;
        top: -12px;
    }


    .tsr-section-label {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .tsr-about-content h2 {
        font-size: 38px;

        line-height: 1.15;
    }


    .tsr-about-content > p {
        font-size: 13px;

        line-height: 1.75;
    }


    .tsr-about-intro {
        font-size: 14px !important;
    }


    .tsr-about-features {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .tsr-about-bottom {
        flex-direction: column;

        align-items: flex-start;
    }


    .tsr-about-contact {
        align-items: flex-start;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .tsr-about-container {
        width: 90%;
    }


    .tsr-about-content h2 {
        font-size: 34px;
    }


    .tsr-about-main-image {
        aspect-ratio: 1 / 1;
    }


    .tsr-about-experience {
        min-width: 155px;

        padding: 13px 15px;
    }


    .tsr-about-experience strong {
        font-size: 30px;
    }


    .tsr-about-experience span {
        font-size: 9px;
    }

}

/* =========================================
   THE SOFA REPAIR
   PREMIUM SERVICES SECTION
   NAVY + GOLD
========================================= */

.tsr-services {
    position: relative;

    padding: 105px 0 100px;

    background: #F7F9FC;

    overflow: hidden;
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.tsr-services::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    left: -330px;
    top: 130px;

    border: 1px solid rgba(11, 58, 112, 0.08);

    border-radius: 50%;
}


.tsr-services::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -140px;
    bottom: -100px;

    background: rgba(255, 184, 0, 0.08);

    border-radius: 50%;
}


/* =========================================
   CONTAINER
========================================= */

.tsr-services-container {
    position: relative;

    z-index: 2;

    width: min(1180px, 92%);

    margin: 0 auto;
}


/* =========================================
   SECTION HEADING
========================================= */

.tsr-services-heading {
    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.tsr-services-label {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 16px;

    color: #0B3A70;

    font-family: "DM Sans", sans-serif;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2.5px;
}


.tsr-services-label span {
    width: 28px;
    height: 2px;

    background: #FFB800;
}


.tsr-services-heading h2 {
    margin: 0;

    color: #0B3A70;

    font-family: "Playfair Display", serif;

    font-size: clamp(38px, 4vw, 53px);

    line-height: 1.15;

    letter-spacing: -0.7px;
}


.tsr-services-heading h2 strong {
    display: block;

    color: #FFB800;

    font-weight: 700;
}


.tsr-services-heading > p {
    max-width: 650px;

    margin: 18px auto 0;

    color: #68778A;

    font-family: "DM Sans", sans-serif;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   SERVICES GRID
========================================= */

.tsr-services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


/* =========================================
   SERVICE CARD
========================================= */

.tsr-service-card {
    position: relative;

    min-height: 305px;

    padding: 30px 27px 27px;

    background: #FFFFFF;

    border: 1px solid #E6EBF1;

    border-radius: 7px;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.tsr-service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(255, 184, 0, 0.65);

    box-shadow:
        0 20px 45px rgba(7, 41, 79, 0.12);
}


/* TOP GOLD LINE */

.tsr-service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 0;
    height: 3px;

    background: #FFB800;

    transition: width 0.4s ease;
}


.tsr-service-card:hover::before {
    width: 100%;
}


/* BACKGROUND NUMBER */

.tsr-service-number {
    position: absolute;

    right: 20px;
    top: 14px;

    color: #0B3A70;

    opacity: 0.045;

    font-family: "Playfair Display", serif;

    font-size: 70px;

    line-height: 1;

    font-weight: 700;
}


/* =========================================
   FEATURED CARD
========================================= */

.tsr-service-featured {
    background: #0B3A70;

    border-color: #0B3A70;

    box-shadow:
        0 15px 35px rgba(11, 58, 112, 0.16);
}


.tsr-service-featured .tsr-service-number {
    color: #FFFFFF;

    opacity: 0.08;
}


.tsr-service-featured .tsr-service-content h3 {
    color: #FFFFFF;
}


.tsr-service-featured .tsr-service-content p {
    color: rgba(255, 255, 255, 0.68);
}


.tsr-service-featured .tsr-service-content a {
    color: #FFB800;
}


/* =========================================
   SERVICE ICON
========================================= */

.tsr-service-icon {
    position: relative;

    width: 56px;
    height: 56px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 23px;

    color: #0B3A70;

    background: #FFF4D2;

    border-radius: 50%;

    transition: 0.35s ease;
}


.tsr-service-card:hover .tsr-service-icon {
    transform: rotate(-5deg) scale(1.08);

    background: #FFB800;
}


.tsr-service-featured .tsr-service-icon {
    background: #FFB800;
}


/* =========================================
   CSS SOFA ICON
========================================= */

.sofa-icon {
    position: relative;

    width: 29px;
    height: 16px;

    display: block;

    border: 3px solid #0B3A70;

    border-radius: 7px 7px 3px 3px;

    border-bottom-width: 4px;
}


.sofa-icon::before {
    content: "";

    position: absolute;

    width: 7px;
    height: 14px;

    left: -7px;
    bottom: -3px;

    border: 3px solid #0B3A70;

    border-right: 0;

    border-radius: 6px 0 0 4px;
}


.sofa-icon::after {
    content: "";

    position: absolute;

    width: 7px;
    height: 14px;

    right: -7px;
    bottom: -3px;

    border: 3px solid #0B3A70;

    border-left: 0;

    border-radius: 0 6px 4px 0;
}


/* =========================================
   OTHER ICONS
========================================= */

.wood-icon,
.leather-icon,
.recliner-icon,
.fabric-icon {
    font-family: "DM Sans", sans-serif;

    font-size: 25px;

    color: #0B3A70;
}


.recliner-icon {
    font-size: 30px;
    font-weight: 300;
}


.cushion-icon {
    position: relative;

    width: 25px;
    height: 22px;

    border: 3px solid #0B3A70;

    border-radius: 5px;

    transform: rotate(-5deg);
}


.cushion-icon::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 2px;

    left: 6px;
    top: 8px;

    background: #0B3A70;

    transform: rotate(5deg);
}


/* =========================================
   SERVICE CONTENT
========================================= */

.tsr-service-content {
    position: relative;

    z-index: 2;
}


.tsr-service-content h3 {
    margin: 0 0 11px;

    color: #0B3A70;

    font-family: "DM Sans", sans-serif;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 800;
}


.tsr-service-content p {
    margin: 0 0 20px;

    color: #748194;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    line-height: 1.75;
}


.tsr-service-content a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #0B3A70;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 800;

    transition: 0.3s ease;
}


.tsr-service-content a span {
    color: #FFB800;

    font-size: 17px;

    transition: 0.3s ease;
}


.tsr-service-content a:hover {
    color: #FFB800;
}


.tsr-service-content a:hover span {
    transform: translateX(5px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.tsr-services-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    margin-top: 38px;

    padding: 20px 25px;

    background: #FFFFFF;

    border: 1px solid #E6EBF1;

    border-radius: 6px;
}


.tsr-services-bottom-text {
    display: flex;

    align-items: center;

    gap: 12px;
}


.tsr-mini-line {
    width: 25px;
    height: 2px;

    flex-shrink: 0;

    background: #FFB800;
}


.tsr-services-bottom-text p {
    margin: 0;

    color: #64748B;

    font-family: "DM Sans", sans-serif;

    font-size: 13px;
}


.tsr-services-bottom-text strong {
    color: #0B3A70;
}


.tsr-services-cta {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 18px;

    color: #FFFFFF;

    background: #0B3A70;

    border: 2px solid #0B3A70;

    border-radius: 4px;

    text-decoration: none;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

    font-weight: 700;

    white-space: nowrap;

    transition: 0.3s ease;
}


.tsr-services-cta span {
    color: #FFB800;

    font-size: 16px;
}


.tsr-services-cta:hover {
    color: #0B3A70;

    background: #FFB800;

    border-color: #FFB800;
}


.tsr-services-cta:hover span {
    color: #0B3A70;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .tsr-services {
        padding: 80px 0;
    }

    .tsr-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .tsr-services {
        padding: 70px 0;
    }


    .tsr-services-container {
        width: 90%;
    }


    .tsr-services-heading {
        margin-bottom: 38px;
    }


    .tsr-services-heading h2 {
        font-size: 37px;
    }


    .tsr-services-heading > p {
        font-size: 13px;

        line-height: 1.75;
    }


    .tsr-services-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .tsr-service-card {
        min-height: auto;

        padding: 27px 23px;
    }


    .tsr-service-icon {
        width: 52px;
        height: 52px;

        margin-bottom: 20px;
    }


    .tsr-service-content h3 {
        font-size: 17px;
    }


    .tsr-service-content p {
        font-size: 12px;
    }


    .tsr-services-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        padding: 20px;
    }


    .tsr-services-bottom-text {
        align-items: flex-start;
    }


    .tsr-services-bottom-text p {
        font-size: 12px;

        line-height: 1.5;
    }


    .tsr-services-cta {
        width: 100%;

        justify-content: center;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .tsr-services-heading h2 {
        font-size: 32px;
    }


    .tsr-services-label {
        font-size: 8px;

        letter-spacing: 1.7px;
    }


    .tsr-service-number {
        font-size: 60px;
    }

}

/* =========================
   PREMIUM GALLERY
========================= */

.tsr-gallery {
    width: 100%;
    padding: 100px 6%;
    background: #f8f8f6;
    box-sizing: border-box;
}

.tsr-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.tsr-gallery-tag {
    display: inline-block;
    color: #d99a00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.tsr-gallery-header h2 {
    margin: 0;
    color: #07294f;
    font-family: "Playfair Display", serif;
    font-size: 44px;
    line-height: 1.2;
}

.tsr-gallery-line {
    width: 65px;
    height: 3px;
    background: #ffb800;
    margin: 18px auto 0;
    border-radius: 10px;
}


/* GALLERY GRID */

.tsr-gallery-grid {
    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* IMAGE */

.tsr-gallery-item {
    position: relative;
    overflow: hidden;
    height: 310px;
    background: #ddd;
    cursor: pointer;
    border-radius: 4px;
}

.tsr-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition:
        transform 0.6s ease,
        filter 0.6s ease;
}


/* PREMIUM HOVER */

.tsr-gallery-item::after {
    content: "+";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;

    border: 1px solid #fff;
    border-radius: 50%;

    color: #fff;
    font-size: 32px;
    font-weight: 300;

    background: rgba(7, 41, 79, 0.65);

    transition: all 0.35s ease;
}

.tsr-gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(0.72);
}

.tsr-gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}


/* =========================
   LIGHTBOX
========================= */

.tsr-lightbox {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: rgba(3, 15, 29, 0.96);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    z-index: 99999;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.tsr-lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* IMAGE WRAPPER */

.tsr-lightbox-image-wrap {
    width: min(85vw, 1100px);
    height: min(82vh, 750px);

    display: flex;
    align-items: center;
    justify-content: center;
}

.tsr-lightbox-image-wrap img {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;

    border-radius: 4px;

    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
}


/* CLOSE BUTTON */

.tsr-lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;

    width: 48px;
    height: 48px;

    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 50%;

    background: transparent;
    color: #fff;

    font-size: 32px;
    line-height: 1;

    cursor: pointer;

    transition: all 0.3s ease;
}

.tsr-lightbox-close:hover {
    background: #ffb800;
    color: #07294f;
    border-color: #ffb800;
}


/* SLIDER BUTTONS */

.tsr-slider-btn {
    position: absolute;

    width: 55px;
    height: 55px;

    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;

    background: rgba(7, 41, 79, 0.7);

    color: #fff;
    font-size: 25px;

    cursor: pointer;

    transition: all 0.3s ease;
}

.tsr-slider-btn:hover {
    background: #ffb800;
    color: #07294f;
    border-color: #ffb800;
}

.tsr-prev {
    left: 35px;
}

.tsr-next {
    right: 35px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    .tsr-gallery {
        padding: 80px 5%;
    }

    .tsr-gallery-header h2 {
        font-size: 38px;
    }

    .tsr-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .tsr-gallery-item {
        height: 280px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .tsr-gallery {
        padding: 65px 20px;
    }

    .tsr-gallery-header {
        margin-bottom: 35px;
    }

    .tsr-gallery-tag {
        font-size: 11px;
        letter-spacing: 2.5px;
    }

    .tsr-gallery-header h2 {
        font-size: 30px;
    }

    .tsr-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tsr-gallery-item {
        height: 260px;
    }

    .tsr-lightbox-image-wrap {
        width: 90vw;
        height: 70vh;
    }

    .tsr-slider-btn {
        width: 43px;
        height: 43px;
        font-size: 19px;
    }

    .tsr-prev {
        left: 12px;
    }

    .tsr-next {
        right: 12px;
    }

    .tsr-lightbox-close {
        top: 18px;
        right: 18px;
        width: 42px;
        height: 42px;
        font-size: 27px;
    }
}

/* =========================
   PREMIUM FAQ SECTION
========================= */

.tsr-faq {
    position: relative;
    width: 100%;
    padding: 110px 6%;
    background: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}


/* SUBTLE BACKGROUND DETAIL */

.tsr-faq::before {
    content: "";
    position: absolute;

    width: 420px;
    height: 420px;

    left: -230px;
    top: 100px;

    border: 1px solid rgba(255, 184, 0, 0.15);
    border-radius: 50%;
}

.tsr-faq::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    right: -170px;
    bottom: 50px;

    border: 1px solid rgba(7, 41, 79, 0.08);
    border-radius: 50%;
}


/* MAIN CONTAINER */

.tsr-faq-container {
    position: relative;
    z-index: 2;

    max-width: 1250px;
    margin: auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;
    align-items: start;
}


/* =========================
   LEFT INTRO
========================= */

.tsr-faq-intro {
    position: sticky;
    top: 100px;
}

.tsr-faq-label {
    display: inline-block;

    color: #d49a00;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 18px;
}

.tsr-faq-intro h2 {
    margin: 0;

    color: #07294f;

    font-family: "Playfair Display", serif;

    font-size: 52px;
    line-height: 1.12;
    font-weight: 700;
}

.tsr-faq-intro h2 span {
    display: block;
    color: #d49a00;
    font-style: italic;
}

.tsr-faq-intro > p {
    margin: 25px 0 35px;

    max-width: 440px;

    color: #626b76;

    font-family: "DM Sans", sans-serif;

    font-size: 15px;
    line-height: 1.8;
}


/* NUMBER */

.tsr-faq-number {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 28px;
}

.tsr-faq-number strong {
    color: #07294f;

    font-family: "Playfair Display", serif;

    font-size: 72px;
    line-height: 0.9;
}

.tsr-faq-number span {
    color: #777;

    font-size: 13px;
    line-height: 1.5;

    text-transform: uppercase;
    letter-spacing: 1px;
}


/* GOLD LINE */

.tsr-faq-mini-line {
    width: 70px;
    height: 3px;

    background: #ffb800;

    margin-bottom: 30px;
}


/* CONTACT */

.tsr-faq-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tsr-faq-contact span {
    color: #777;
    font-size: 13px;
}

.tsr-faq-contact a {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    color: #07294f;

    font-size: 15px;
    font-weight: 800;

    text-decoration: none;

    transition: 0.3s ease;
}

.tsr-faq-contact a span {
    color: #d49a00;
    font-size: 20px;
}

.tsr-faq-contact a:hover {
    color: #d49a00;
}


/* =========================
   FAQ LIST
========================= */

.tsr-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* FAQ ITEM */

.tsr-faq-item {
    position: relative;

    border: 1px solid #e7e9ec;

    background: #ffffff;

    transition:
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.tsr-faq-item:hover {
    border-color: rgba(255, 184, 0, 0.6);

    box-shadow: 0 12px 35px rgba(7, 41, 79, 0.07);
}


/* ACTIVE */

.tsr-faq-item.active {
    border-color: #ffb800;

    box-shadow: 0 15px 40px rgba(7, 41, 79, 0.08);
}


/* GOLD SIDE BAR */

.tsr-faq-item.active::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #ffb800;
}


/* QUESTION */

.tsr-faq-question {
    width: 100%;

    display: grid;
    grid-template-columns: 48px 1fr 40px;
    align-items: center;

    gap: 10px;

    padding: 23px 24px;

    border: none;
    background: transparent;

    text-align: left;

    cursor: pointer;
}


/* NUMBER */

.tsr-faq-count {
    color: #b0b4ba;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1px;

    transition: 0.3s ease;
}

.tsr-faq-item.active .tsr-faq-count {
    color: #d49a00;
}


/* QUESTION TEXT */

.tsr-faq-title {
    color: #07294f;

    font-size: 15px;
    font-weight: 700;

    line-height: 1.5;
}


/* ICON */

.tsr-faq-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dfe2e5;
    border-radius: 50%;

    color: #07294f;

    font-size: 22px;
    font-weight: 300;

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        color 0.35s ease,
        border-color 0.35s ease;
}

.tsr-faq-item.active .tsr-faq-icon {
    transform: rotate(45deg);

    background: #ffb800;
    color: #07294f;

    border-color: #ffb800;
}


/* =========================
   ANSWER
========================= */

.tsr-faq-answer {
    display: grid;
    grid-template-rows: 0fr;

    transition: grid-template-rows 0.4s ease;
}

.tsr-faq-answer p {
    overflow: hidden;

    margin: 0;
    padding: 0 82px 0 82px;

    color: #68717d;

    font-size: 14px;
    line-height: 1.8;

    transition:
        padding 0.4s ease,
        opacity 0.3s ease;

    opacity: 0;
}


/* OPEN ANSWER */

.tsr-faq-item.active .tsr-faq-answer {
    grid-template-rows: 1fr;
}

.tsr-faq-item.active .tsr-faq-answer p {
    padding-top: 0;
    padding-bottom: 25px;

    opacity: 1;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .tsr-faq {
        padding: 85px 5%;
    }

    .tsr-faq-container {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .tsr-faq-intro {
        position: relative;
        top: auto;
    }

    .tsr-faq-intro h2 {
        font-size: 46px;
    }

    .tsr-faq-intro > p {
        max-width: 650px;
    }

    .tsr-faq-number {
        display: none;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .tsr-faq {
        padding: 70px 18px;
    }

    .tsr-faq-container {
        gap: 40px;
    }

    .tsr-faq-intro h2 {
        font-size: 36px;
    }

    .tsr-faq-intro > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .tsr-faq-list {
        gap: 10px;
    }

    .tsr-faq-question {
        grid-template-columns: 32px 1fr 34px;

        gap: 7px;

        padding: 18px 14px;
    }

    .tsr-faq-title {
        font-size: 14px;
        line-height: 1.45;
    }

    .tsr-faq-count {
        font-size: 9px;
    }

    .tsr-faq-icon {
        width: 30px;
        height: 30px;

        font-size: 19px;
    }

    .tsr-faq-answer p {
        padding-left: 53px;
        padding-right: 20px;

        font-size: 13px;
        line-height: 1.7;
    }

    .tsr-faq-item.active .tsr-faq-answer p {
        padding-bottom: 20px;
    }

    .tsr-faq-contact {
        margin-top: 5px;
    }

}

/* =========================
   PREMIUM FOOTER
========================= */

.tsr-footer {
    position: relative;
    width: 100%;
    background: #07294f;
    color: #ffffff;
    overflow: hidden;
}


/* =========================
   TOP CTA
========================= */

.tsr-footer-cta {
    max-width: 1250px;
    margin: auto;

    padding: 70px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    border-bottom: 1px solid rgba(255,255,255,0.12);
}


.tsr-footer-cta-content span {
    display: block;

    margin-bottom: 12px;

    color: #ffb800;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}


.tsr-footer-cta-content h2 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}


.tsr-footer-cta-content h2 em {
    color: #ffb800;
    font-style: italic;
}


.tsr-footer-cta-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}


.tsr-footer-cta-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 145px;

    padding: 15px 22px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition: all 0.3s ease;
}


.tsr-footer-call {
    background: #ffb800;
    color: #07294f;
}


.tsr-footer-call:hover {
    background: #ffffff;
}


.tsr-footer-whatsapp {
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
}


.tsr-footer-whatsapp:hover {
    background: #ffffff;
    color: #07294f;
}


.tsr-footer-cta-buttons span {
    font-size: 18px;
}


/* =========================
   MAIN FOOTER
========================= */

.tsr-footer-main {
    max-width: 1250px;
    margin: auto;

    padding: 70px 6% 60px;

    display: grid;

    grid-template-columns:
        1.5fr
        0.7fr
        0.9fr
        1.1fr;

    gap: 60px;
}


/* =========================
   BRAND
========================= */

.tsr-footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}


.tsr-footer-logo img {
    width: 190px;
    max-width: 100%;
    height: auto;
    display: block;
}


.tsr-footer-brand > p {
    max-width: 370px;

    margin: 0 0 25px;

    color: rgba(255,255,255,0.65);

    font-size: 13px;
    line-height: 1.9;
}


.tsr-footer-phone {
    display: inline-flex;
    flex-direction: column;

    gap: 4px;

    text-decoration: none;
}


.tsr-footer-phone span {
    color: #ffb800;

    font-size: 18px;
    font-weight: 800;
}


.tsr-footer-phone small {
    color: rgba(255,255,255,0.5);

    font-size: 11px;
}


/* =========================
   FOOTER HEADINGS
========================= */

.tsr-footer-main h3 {
    position: relative;

    margin: 8px 0 25px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1px;
}


.tsr-footer-main h3::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 10px;

    background: #ffb800;
}


/* =========================
   LINKS
========================= */

.tsr-footer-links ul {
    list-style: none;

    padding: 0;
    margin: 0;
}


.tsr-footer-links li {
    margin-bottom: 13px;
}


.tsr-footer-links a {
    position: relative;

    color: rgba(255,255,255,0.62);

    text-decoration: none;

    font-size: 13px;

    transition: all 0.3s ease;
}


.tsr-footer-links a::before {
    content: "→";

    position: absolute;

    left: -17px;

    color: #ffb800;

    opacity: 0;

    transition: 0.3s ease;
}


.tsr-footer-links a:hover {
    color: #ffb800;
    padding-left: 17px;
}


.tsr-footer-links a:hover::before {
    opacity: 1;
}


/* =========================
   CONTACT
========================= */

.tsr-contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;
}


.tsr-contact-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,184,0,0.45);

    color: #ffb800;

    font-size: 15px;
}


.tsr-contact-detail p {
    margin: 0;

    color: rgba(255,255,255,0.62);

    font-size: 13px;
    line-height: 1.7;
}


.tsr-contact-detail a {
    color: rgba(255,255,255,0.75);

    text-decoration: none;

    font-size: 13px;

    word-break: break-word;

    transition: 0.3s ease;
}


.tsr-contact-detail a:hover {
    color: #ffb800;
}


/* =========================
   BOTTOM
========================= */

.tsr-footer-bottom {
    max-width: 1250px;
    margin: auto;

    padding: 22px 6%;

    border-top: 1px solid rgba(255,255,255,0.12);

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
}


.tsr-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.45);

    font-size: 11px;
}


.tsr-footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}


.tsr-footer-bottom-links a {
    color: rgba(255,255,255,0.5);

    text-decoration: none;

    font-size: 11px;

    transition: 0.3s ease;
}


.tsr-footer-bottom-links a:hover {
    color: #ffb800;
}


.tsr-footer-bottom-links span {
    color: #ffb800;
}


/* =========================
   STICKY BUTTONS
========================= */

.tsr-sticky-buttons {
    position: fixed;

    right: 20px;
    bottom: 25px;

    z-index: 9999;

    display: flex;
    flex-direction: column;

    gap: 10px;
}


.tsr-sticky-buttons a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    font-size: 22px;

    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}


.tsr-sticky-call {
    background: #ffb800;
    color: #07294f;
}


.tsr-sticky-whatsapp {
    background: #ffffff;
    color: #07294f;
}


.tsr-sticky-buttons a:hover {
    transform: translateY(-5px);
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .tsr-footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 50px 35px;
    }

    .tsr-footer-brand {
        grid-column: span 2;
    }

    .tsr-footer-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .tsr-footer-cta {
        padding: 55px 20px;

        gap: 28px;
    }

    .tsr-footer-cta-content h2 {
        font-size: 34px;
    }

    .tsr-footer-cta-content span {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .tsr-footer-cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .tsr-footer-cta-buttons a {
        width: 100%;
    }


    .tsr-footer-main {
        padding: 55px 20px 40px;

        grid-template-columns: 1fr;

        gap: 40px;
    }

    .tsr-footer-brand {
        grid-column: auto;
    }


    .tsr-footer-logo img {
        width: 165px;
    }


    .tsr-footer-bottom {
        padding: 20px;

        flex-direction: column;

        text-align: center;

        gap: 12px;
    }


    .tsr-sticky-buttons {
        right: 14px;
        bottom: 18px;
    }

    .tsr-sticky-buttons a {
        width: 47px;
        height: 47px;

        font-size: 19px;
    }

}

/* =================================
   STICKY CALL + WHATSAPP BUTTONS
================================= */

.tsr-floating-contact {
    position: fixed;

    right: 20px;
    bottom: 25px;

    z-index: 99999;

    display: flex;
    flex-direction: column;

    gap: 12px;
}


/* COMMON BUTTON */

.tsr-floating-contact a {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    position: relative;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.22);

    transition:
        width 0.35s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* ICON */

.tsr-float-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 22px;
}


/* TEXT */

.tsr-float-text {
    position: absolute;

    right: 62px;

    white-space: nowrap;

    padding: 9px 14px;

    border-radius: 5px;

    background: #07294f;
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    opacity: 0;
    visibility: hidden;

    transform: translateX(10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        visibility 0.3s ease;
}


/* ARROW */

.tsr-float-text::after {
    content: "";

    position: absolute;

    right: -6px;
    top: 50%;

    width: 10px;
    height: 10px;

    background: #07294f;

    transform: translateY(-50%) rotate(45deg);
}


/* HOVER TEXT */

.tsr-floating-contact a:hover .tsr-float-text {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);
}


/* CALL */

.tsr-float-call {
    background: #ffb800;
    color: #07294f;
}


/* WHATSAPP */

.tsr-float-whatsapp {
    background: #ffffff;
    color: #07294f;
}


/* HOVER */

.tsr-floating-contact a:hover {
    transform: translateY(-4px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.30);
}


/* PULSE EFFECT */

.tsr-float-call::before,
.tsr-float-whatsapp::before {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(255, 184, 0, 0.35);

    border-radius: 50%;

    animation: tsrPulse 2.2s infinite;
}


@keyframes tsrPulse {

    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.25);
        opacity: 0;
    }

    100% {
        transform: scale(1.25);
        opacity: 0;
    }

}


/* =================================
   MOBILE
================================= */

@media (max-width: 600px) {

    .tsr-floating-contact {
        right: 14px;
        bottom: 18px;

        gap: 10px;
    }


    .tsr-floating-contact a,
    .tsr-float-icon {
        width: 48px;
        height: 48px;
    }


    .tsr-float-icon {
        font-size: 19px;
    }


    /* Mobile par text hide */
    .tsr-float-text {
        display: none;
    }

}

/* =========================================
   PREMIUM ABOUT BREADCRUMB
========================================= */

.tsr-about-breadcrumb {
    position: relative;
    min-height: 330px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    background:
        linear-gradient(
            120deg,
            rgba(7, 41, 79, 0.97),
            rgba(11, 58, 112, 0.90)
        ),
        url("../images/about-breadcrumb.png") center/cover no-repeat;
}

/* Decorative gold glow */
.tsr-about-breadcrumb::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 50%;
    right: -80px;
    top: -90px;
}

.tsr-about-breadcrumb::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255, 184, 0, 0.18);
    border-radius: 50%;
    left: -70px;
    bottom: -90px;
}

.tsr-about-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(7, 41, 79, 0.25),
            transparent,
            rgba(7, 41, 79, 0.35)
        );
}

.tsr-about-breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.tsr-about-breadcrumb-tag {
    display: inline-block;
    color: #ffb800;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 14px;
}

.tsr-about-breadcrumb-content h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1px;
}

.tsr-about-breadcrumb-line {
    width: 55px;
    height: 3px;
    background: #ffb800;
    margin: 22px auto 18px;
    border-radius: 10px;
}

.tsr-about-breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.tsr-about-breadcrumb-nav a {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.tsr-about-breadcrumb-nav a:hover {
    color: #ffb800;
}

.tsr-about-breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.55);
}

.tsr-about-breadcrumb-nav span:last-child {
    color: #ffb800;
    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 768px) {

    .tsr-about-breadcrumb {
        min-height: 270px;
    }

    .tsr-about-breadcrumb-content {
        padding: 50px 18px;
    }

    .tsr-about-breadcrumb-content h1 {
        font-size: 46px;
    }

    .tsr-about-breadcrumb-tag {
        font-size: 10px;
        letter-spacing: 2.5px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 480px) {

    .tsr-about-breadcrumb {
        min-height: 235px;
    }

    .tsr-about-breadcrumb-content {
        padding: 40px 15px;
    }

    .tsr-about-breadcrumb-content h1 {
        font-size: 38px;
    }

    .tsr-about-breadcrumb-line {
        margin: 16px auto 14px;
    }

    .tsr-about-breadcrumb-nav {
        font-size: 13px;
    }
}

/* =========================================
   PREMIUM CONTACT SECTION
========================================= */

.tsr-contact-main {
    position: relative;
    padding: 100px 20px;
    background: #f7f8fa;
    overflow: hidden;
}

/* Decorative circles */

.tsr-contact-main::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 184, 0, 0.18);
    border-radius: 50%;
    top: -220px;
    left: -180px;
}

.tsr-contact-main::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(11, 58, 112, 0.08);
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
}


.tsr-contact-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;

    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.tsr-contact-content {
    padding-right: 20px;
}

.tsr-contact-label {
    display: inline-block;
    color: #ffb800;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.tsr-contact-content h1 {
    margin: 0 0 24px;

    color: #07294f;

    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.tsr-contact-content h1 span {
    display: block;
    color: #ffb800;
}

.tsr-contact-content p {
    max-width: 570px;
    margin: 0 0 17px;

    color: #667085;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   CONTACT BUTTONS
========================================= */

.tsr-contact-buttons {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.tsr-contact-call,
.tsr-contact-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 190px;
    padding: 14px 20px;

    text-decoration: none;
    border-radius: 8px;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.tsr-contact-call {
    color: #ffffff;
    background: #07294f;
}

.tsr-contact-whatsapp {
    color: #07294f;
    background: #ffb800;
}

.tsr-contact-call:hover,
.tsr-contact-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(7, 41, 79, 0.18);
}

.tsr-contact-btn-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 19px;
}

.tsr-contact-call .tsr-contact-btn-icon {
    color: #ffb800;
    background: rgba(255, 184, 0, 0.12);
}

.tsr-contact-whatsapp .tsr-contact-btn-icon {
    color: #ffffff;
    background: #07294f;
}

.tsr-contact-buttons small {
    display: block;
    margin-bottom: 2px;

    font-size: 10px;
    font-weight: 600;
    opacity: 0.7;
}


/* =========================================
   RIGHT CONTACT CARD
========================================= */

.tsr-contact-card {
    position: relative;

    padding: 38px;

    background: #07294f;

    border-radius: 18px;

    box-shadow:
        0 25px 70px rgba(7, 41, 79, 0.20);

    overflow: hidden;
}

/* Gold corner */

.tsr-contact-card::after {
    content: "";
    position: absolute;

    width: 160px;
    height: 160px;

    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 50%;

    right: -80px;
    top: -80px;
}


.tsr-contact-card-top {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 28px;
}

.tsr-contact-card-top span {
    color: #ffb800;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;

    white-space: nowrap;
}

.tsr-contact-card-top div {
    width: 55px;
    height: 2px;
    background: #ffb800;
}


/* =========================================
   CONTACT ITEM
========================================= */

.tsr-contact-item {
    display: flex;
    gap: 18px;

    padding: 21px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.tsr-contact-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 184, 0, 0.10);

    border: 1px solid rgba(255, 184, 0, 0.25);

    border-radius: 50%;
}

.tsr-contact-icon svg {
    width: 21px;
    height: 21px;

    fill: #ffb800;
}

.tsr-contact-item small,
.tsr-service-area small {
    color: #ffb800;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.tsr-contact-item h3 {
    margin: 5px 0 5px;

    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.tsr-contact-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.62);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================
   SERVICE AREAS
========================================= */

.tsr-service-area {
    padding-top: 25px;
}

.tsr-area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 13px;
}

.tsr-area-tags span {
    display: inline-block;

    padding: 7px 11px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 11px;

    border: 1px solid rgba(255, 184, 0, 0.22);
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.035);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .tsr-contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
        max-width: 700px;
    }

    .tsr-contact-content {
        padding-right: 0;
    }

    .tsr-contact-content h1 {
        font-size: 50px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .tsr-contact-main {
        padding: 65px 15px;
    }

    .tsr-contact-container {
        gap: 40px;
    }

    .tsr-contact-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .tsr-contact-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .tsr-contact-buttons {
        flex-direction: column;
    }

    .tsr-contact-call,
    .tsr-contact-whatsapp {
        width: 100%;
    }

    .tsr-contact-card {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .tsr-contact-item {
        gap: 13px;
    }

    .tsr-contact-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
    }

    .tsr-contact-item h3 {
        font-size: 14px;
        word-break: break-word;
    }

    .tsr-contact-item p {
        font-size: 12px;
    }

    .tsr-area-tags span {
        font-size: 10px;
    }
}

/* =========================================
   PREMIUM MAP SECTION
========================================= */

.tsr-map-section {
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.tsr-map-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    background: #07294f;
    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 25px 70px rgba(7, 41, 79, 0.18);
}


/* =========================================
   MAP
========================================= */

.tsr-map-box {
    min-height: 500px;
    position: relative;
}

.tsr-map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: 0;
    display: block;

    filter: grayscale(15%);
}


/* =========================================
   CONTENT
========================================= */

.tsr-map-content {
    padding: 65px 50px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tsr-map-label {
    color: #ffb800;

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;

    margin-bottom: 15px;
}

.tsr-map-content h2 {
    color: #ffffff;

    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.1;

    margin: 0 0 20px;
}

.tsr-map-content h2 span {
    color: #ffb800;
}

.tsr-map-content > p {
    color: rgba(255, 255, 255, 0.68);

    font-size: 15px;
    line-height: 1.8;

    margin: 0 0 30px;
}


/* =========================================
   ADDRESS
========================================= */

.tsr-map-address {
    display: flex;
    gap: 16px;

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.tsr-map-icon {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 184, 0, 0.10);
    border: 1px solid rgba(255, 184, 0, 0.25);
}

.tsr-map-icon svg {
    width: 21px;
    height: 21px;
    fill: #ffb800;
}

.tsr-map-address small {
    display: block;

    color: #ffb800;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;

    margin-bottom: 7px;
}

.tsr-map-address p {
    margin: 0;

    color: #ffffff;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   BUTTONS
========================================= */

.tsr-map-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;

    margin-top: 28px;
}

.tsr-map-directions,
.tsr-map-call {
    min-height: 50px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    transition: 0.3s ease;
}

.tsr-map-directions {
    color: #07294f;
    background: #ffb800;
}

.tsr-map-call {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.tsr-map-directions svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.tsr-map-directions:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.tsr-map-call:hover {
    background: #ffb800;
    color: #07294f;
    border-color: #ffb800;
    transform: translateY(-3px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .tsr-map-container {
        grid-template-columns: 1fr;
    }

    .tsr-map-box {
        min-height: 400px;
    }

    .tsr-map-box iframe {
        min-height: 400px;
    }

    .tsr-map-content {
        padding: 50px 40px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .tsr-map-section {
        padding: 65px 15px;
    }

    .tsr-map-container {
        border-radius: 14px;
    }

    .tsr-map-box {
        min-height: 320px;
    }

    .tsr-map-box iframe {
        min-height: 320px;
    }

    .tsr-map-content {
        padding: 40px 24px;
    }

    .tsr-map-content h2 {
        font-size: 36px;
    }

    .tsr-map-content > p {
        font-size: 14px;
    }

    .tsr-map-actions {
        flex-direction: column;
    }

    .tsr-map-directions,
    .tsr-map-call {
        width: 100%;
    }
}