/* Clean Home Category Cards */

.category-card {
    min-height:390px;
}

.category-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 24px;
}

.category-count {
    margin-bottom: 8px;
    color: #dfb731;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.category-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.2;
}

.category-content p {
    display: none;
}

.category-content a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 16px;
    padding-top: 13px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: color 0.3s ease;
}

.category-content a span {
    color: #dfb731;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-content a {
    color: #dfb731;
}

.category-card:hover .category-content a span {
    transform: translateX(6px);
}

.showcase-image {
    transition:
        opacity 0.28s ease,
        transform 0.28s ease;
}

.showcase-image.is-changing {
    opacity: 0.45;
    transform: scale(0.99);
}

.showcase-image {
    position: relative;
    overflow: hidden;
}

.showcase-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: #07101d;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.showcase-image.is-changing::after {
    opacity: 0.72;
}

.showcase-details,
.slider-arrow {
    z-index: 3;
}

/* ==================================
   HOME FEATURED SLIDER - TRACK SYSTEM
================================== */

.showcase-slider {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: #07101d;
}

.showcase-track {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 470px;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.showcase-slide {
    position: relative;
    min-width: 100%;
    min-height: 470px;
    flex-shrink: 0;
    overflow: hidden;
}

.showcase-slide img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.showcase-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(4, 9, 18, 0.76) 0%,
            rgba(4, 9, 18, 0.18) 43%,
            rgba(4, 9, 18, 0.02) 100%
        );
    pointer-events: none;
}

.showcase-slider .slider-arrow {
    z-index: 5;
}

.showcase-slider .showcase-details {
    z-index: 4;
}

@media (max-width: 1350px) {
    .showcase-slider,
    .showcase-track,
    .showcase-slide,
    .showcase-slide img {
        min-height: 440px;
    }
}

@media (max-width: 780px) {
    .showcase-slider,
    .showcase-track,
    .showcase-slide,
    .showcase-slide img {
        min-height: 420px;
    }
}

@media (max-width: 480px) {
    .showcase-slider,
    .showcase-track,
    .showcase-slide,
    .showcase-slide img {
        min-height: 390px;
    }
}

/* ==================================
   RAINBOW RIBBON S TRANSITION
================================== */

.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: grid;
    place-items: center;

    visibility: hidden;
    pointer-events: none;
    opacity: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(255, 255, 255, 0.07),
            transparent 30%
        ),
        rgba(246, 247, 250, 0.98);

    transition:
        opacity 0.16s ease,
        visibility 0.16s ease;
}

.page-transition.active {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
}


/* Main loader container */

.rainbow-s-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    opacity: 0;
    transform: scale(0.72);
}

.page-transition.active .rainbow-s-loader {
    animation:
        rainbowLoaderEnter 0.2s ease forwards,
        rainbowLoaderExit 0.18s ease 0.82s forwards;
}


/* Rainbow SVG */

.rainbow-s-symbol {
    width: 148px;
    height: 172px;
    overflow: visible;

    filter:
        drop-shadow(0 14px 18px rgba(26, 36, 58, 0.22));
}


/* Main thick ribbons */

.rainbow-ribbon {
    fill: none;
    stroke-width: 36;
    stroke-linecap: round;
    stroke-linejoin: round;

    filter: url("#ribbonShadow");

    stroke-dasharray: 350;
    stroke-dashoffset: 350;

    transform-box: fill-box;
    transform-origin: center;
}

.rainbow-ribbon-top {
    opacity: 0;
    transform: translate(-26px, -18px) rotate(-18deg);
}

.rainbow-ribbon-middle {
    opacity: 0;
    transform: scale(0.6) rotate(24deg);
}

.rainbow-ribbon-bottom {
    opacity: 0;
    transform: translate(27px, 22px) rotate(18deg);
}


/* Active ribbon animation */

.page-transition.active .rainbow-ribbon-top {
    animation: ribbonTopAssemble 0.52s
        cubic-bezier(0.2, 0.9, 0.25, 1)
        0.04s forwards;
}

.page-transition.active .rainbow-ribbon-middle {
    animation: ribbonMiddleAssemble 0.42s
        cubic-bezier(0.2, 0.9, 0.25, 1)
        0.22s forwards;
}

.page-transition.active .rainbow-ribbon-bottom {
    animation: ribbonBottomAssemble 0.52s
        cubic-bezier(0.2, 0.9, 0.25, 1)
        0.18s forwards;
}


/* White highlights for dimensional look */

.ribbon-highlight {
    fill: none;
    stroke: rgba(255, 255, 255, 0.42);
    stroke-width: 5;
    stroke-linecap: round;

    stroke-dasharray: 230;
    stroke-dashoffset: 230;

    opacity: 0;
}

.page-transition.active .ribbon-highlight-top {
    animation: highlightDraw 0.34s ease 0.45s forwards;
}

.page-transition.active .ribbon-highlight-bottom {
    animation: highlightDraw 0.34s ease 0.5s forwards;
}


/* Brand name under S */

.rainbow-loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;

    opacity: 0;
    transform: translateY(9px);
}

.page-transition.active .rainbow-loader-brand {
    animation: rainbowBrandReveal 0.25s ease 0.55s forwards;
}

.rainbow-loader-brand strong {
    color: #172033;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 5px;
}

.rainbow-loader-brand span {
    color: #667085;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


/* Final white flash */

.page-transition::after {
    content: "";
    position: absolute;
    inset: 0;

    background: #ffffff;

    opacity: 0;
    pointer-events: none;
}

.page-transition.active::after {
    animation: rainbowFinalFlash 0.22s ease 0.78s forwards;
}


/* ==================================
   RAINBOW ANIMATION KEYFRAMES
================================== */

@keyframes rainbowLoaderEnter {
    from {
        opacity: 0;
        transform: scale(0.72);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes ribbonTopAssemble {
    0% {
        opacity: 0;
        stroke-dashoffset: 350;
        transform: translate(-26px, -18px) rotate(-18deg);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        stroke-dashoffset: 0;
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes ribbonMiddleAssemble {
    0% {
        opacity: 0;
        stroke-dashoffset: 350;
        transform: scale(0.6) rotate(24deg);
    }

    100% {
        opacity: 1;
        stroke-dashoffset: 0;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes ribbonBottomAssemble {
    0% {
        opacity: 0;
        stroke-dashoffset: 350;
        transform: translate(27px, 22px) rotate(18deg);
    }

    35% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        stroke-dashoffset: 0;
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes highlightDraw {
    from {
        opacity: 0;
        stroke-dashoffset: 230;
    }

    to {
        opacity: 1;
        stroke-dashoffset: 0;
    }
}

@keyframes rainbowBrandReveal {
    from {
        opacity: 0;
        transform: translateY(9px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rainbowLoaderExit {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(1.08);
    }
}

@keyframes rainbowFinalFlash {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* ==================================
   SMALL SCREEN
================================== */

@media (max-width: 600px) {
    .rainbow-s-symbol {
        width: 124px;
        height: 148px;
    }

    .rainbow-ribbon {
        stroke-width: 34;
    }

    .rainbow-loader-brand strong {
        font-size: 18px;
    }

    .rainbow-loader-brand span {
        font-size: 8px;
        letter-spacing: 1.3px;
    }
}


/* Reduced-motion accessibility */

@media (prefers-reduced-motion: reduce) {
    .rainbow-ribbon,
    .ribbon-highlight,
    .rainbow-s-loader,
    .rainbow-loader-brand {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
    }
}

/* ==================================
   SERVICES SECTION
================================== */

.services-section {
    padding: 95px 4.5%;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(223, 183, 49, 0.07),
            transparent 28%
        ),
        #07101d;
}

.services-grid {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    position: relative;
    min-height: 275px;
    padding: 30px 27px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(18, 29, 46, 0.95),
            rgba(10, 19, 33, 0.95)
        );
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: #dfb731;
    transition: width 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(223, 183, 49, 0.62);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.32),
        0 0 22px rgba(223, 183, 49, 0.06);
}

.service-card:hover::before {
    width: 100%;
}

.service-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(255, 255, 255, 0.1);
    font-size: 42px;
    font-weight: 900;
}

.service-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    border: 1px solid rgba(223, 183, 49, 0.45);
    border-radius: 14px;
    background: rgba(223, 183, 49, 0.07);
    color: #dfb731;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 13px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.25;
}

.service-card p {
    color: #aeb7c5;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1050px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .services-section {
        padding: 70px 5%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }
}

/* ==================================
   OUR WORK SECTION
================================== */

.work-section {
    padding: 95px 4.5%;
    background:
        radial-gradient(
            circle at 12% 16%,
            rgba(223, 183, 49, 0.06),
            transparent 26%
        ),
        #08111f;
}

.work-grid {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 20px;
}

.work-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: #101a29;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.work-card-large {
    grid-row: span 2;
}

.work-card-wide {
    grid-column: span 2;
}

.work-card:hover {
    transform: translateY(-7px);
    border-color: rgba(223, 183, 49, 0.68);
    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.35),
        0 0 25px rgba(223, 183, 49, 0.07);
}

.work-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.work-card:hover img {
    transform: scale(1.07);
}

.work-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(4, 9, 18, 0.94) 0%,
            rgba(4, 9, 18, 0.32) 48%,
            rgba(4, 9, 18, 0.04) 100%
        );
}

.work-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 24px;
}

.work-category {
    display: inline-block;
    margin-bottom: 8px;
    color: #dfb731;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.work-overlay h3 {
    color: #ffffff;
    font-size: 23px;
    line-height: 1.25;
}

.work-view-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 0;
    border: none;
    background: transparent;
    color: #d9dfe8;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transform: translateY(10px);
    transition:
        color 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.work-view-button span {
    color: #dfb731;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.work-card:hover .work-view-button {
    opacity: 1;
    transform: translateY(0);
}

.work-view-button:hover {
    color: #dfb731;
}

.work-view-button:hover span {
    transform: translateX(6px);
}

@media (max-width: 1050px) {
    .work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .work-card-wide {
        grid-column: span 1;
    }
}

@media (max-width: 650px) {
    .work-section {
        padding: 70px 5%;
    }

    .work-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 320px;
    }

    .work-card-large,
    .work-card-wide {
        grid-row: span 1;
        grid-column: span 1;
    }

    .work-view-button {
        opacity: 1;
        transform: none;
    }
}

/* ==================================
   ABOUT SECTION
================================== */

.about-section {
    padding: 105px 4.5%;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(223, 183, 49, 0.07),
            transparent 27%
        ),
        #07101d;
}

.about-container {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 75px;
}


/* About images */

.about-visual {
    position: relative;
    min-height: 560px;
}

.about-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 500px;
    overflow: hidden;
    border: 1px solid rgba(223, 183, 49, 0.5);
    border-radius: 24px;
    background: #101a29;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.about-image-main img,
.about-image-small img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.about-image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 43%;
    height: 270px;
    overflow: hidden;
    border: 6px solid #07101d;
    border-radius: 20px;
    background: #101a29;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.35);
}

.about-experience-card {
    position: absolute;
    left: 28px;
    bottom: 20px;
    z-index: 3;
    min-width: 190px;
    padding: 18px 22px;
    border: 1px solid rgba(223, 183, 49, 0.55);
    border-radius: 15px;
    background: rgba(7, 16, 29, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-experience-card strong {
    display: block;
    color: #dfb731;
    font-size: 24px;
    font-weight: 900;
}

.about-experience-card span {
    display: block;
    margin-top: 5px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}


/* About content */

.about-content h2 {
    max-width: 620px;
    margin-top: 12px;
    color: #ffffff;
    font-size: clamp(38px, 4vw, 55px);
    line-height: 1.12;
    letter-spacing: -1.7px;
}

.about-content h2 span {
    display: block;
    margin-top: 5px;
    color: #dfb731;
}

.about-description {
    max-width: 650px;
    margin-top: 21px;
    color: #aeb7c5;
    font-size: 15px;
    line-height: 1.8;
}


/* About points */

.about-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 13px;
    background: rgba(14, 24, 40, 0.65);
}

.about-check {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(223, 183, 49, 0.12);
    color: #dfb731;
    font-size: 14px;
    font-weight: 900;
}

.about-point strong {
    display: block;
    color: #ffffff;
    font-size: 14px;
}

.about-point small {
    display: block;
    margin-top: 5px;
    color: #98a3b2;
    font-size: 11px;
    line-height: 1.5;
}


/* About buttons */

.about-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 31px;
}

.about-primary-button,
.about-secondary-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 21px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.about-primary-button {
    border: 1px solid #dfb731;
    background: #dfb731;
    color: #08111f;
}

.about-primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(223, 183, 49, 0.18);
}

.about-primary-button span {
    font-size: 19px;
}

.about-secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    background: transparent;
}

.about-secondary-button:hover {
    transform: translateY(-3px);
    color: #dfb731;
    border-color: #dfb731;
}


/* Responsive */

@media (max-width: 1050px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-visual,
    .about-content {
        max-width: 850px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 650px) {
    .about-section {
        padding: 75px 5%;
    }

    .about-visual {
        min-height: 430px;
    }

    .about-image-main {
        width: 88%;
        height: 390px;
    }

    .about-image-small {
        width: 45%;
        height: 210px;
    }

    .about-experience-card {
        left: 15px;
        bottom: 12px;
        min-width: 160px;
        padding: 14px 17px;
    }

    .about-experience-card strong {
        font-size: 20px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .about-primary-button,
    .about-secondary-button {
        width: 100%;
    }
}

/* ==================================
   WHY CHOOSE US SECTION
================================== */

.why-section {
    padding: 95px 4.5%;
    background:
        radial-gradient(
            circle at 18% 18%,
            rgba(223, 183, 49, 0.06),
            transparent 27%
        ),
        #08111f;
}

.why-grid {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.why-card {
    position: relative;
    min-height: 245px;
    padding: 29px 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(15, 25, 41, 0.96),
            rgba(9, 17, 30, 0.96)
        );
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 3px;
    background: #dfb731;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(223, 183, 49, 0.62);
    box-shadow:
        0 26px 60px rgba(0, 0, 0, 0.32),
        0 0 22px rgba(223, 183, 49, 0.06);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-number {
    position: absolute;
    top: 20px;
    right: 23px;
    color: rgba(255, 255, 255, 0.08);
    font-size: 39px;
    font-weight: 900;
}

.why-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid rgba(223, 183, 49, 0.45);
    border-radius: 14px;
    background: rgba(223, 183, 49, 0.07);
    color: #dfb731;
}

.why-icon svg {
    width: 29px;
    height: 29px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-card h3 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
}

.why-card p {
    color: #aeb7c5;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1050px) {
    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .why-section {
        padding: 70px 5%;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        min-height: auto;
    }
}

/* ==================================
   CONTACT SECTION
================================== */

.contact-section {
    padding: 100px 4.5%;
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(223, 183, 49, 0.07),
            transparent 28%
        ),
        #07101d;
}

.contact-container {
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
    gap: 28px;
    align-items: stretch;
}


/* Contact information cards */

.contact-info-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.contact-card {
    min-height: 170px;
    display: flex;
    align-items: flex-start;
    gap: 17px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    background:
        linear-gradient(
            145deg,
            rgba(16, 27, 44, 0.96),
            rgba(9, 18, 31, 0.96)
        );
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(223, 183, 49, 0.6);
    box-shadow:
        0 24px 58px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(223, 183, 49, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(223, 183, 49, 0.45);
    border-radius: 14px;
    background: rgba(223, 183, 49, 0.07);
    color: #dfb731;
}

.contact-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.contact-card-content > span {
    margin-bottom: 8px;
    color: #98a3b2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-card-content a,
.contact-card-content strong {
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-card-content a:hover {
    color: #dfb731;
}

.contact-card-content small {
    margin-top: 7px;
    color: #8f9aa9;
    font-size: 11px;
    line-height: 1.5;
}

.contact-card-content address {
    color: #ffffff;
    font-size: 14px;
    font-style: normal;
    line-height: 1.7;
}

.contact-card-address {
    grid-column: span 2;
}


/* Right action panel */

.contact-action-panel {
    position: relative;
    overflow: hidden;
    padding: 38px 34px;
    border: 1px solid rgba(223, 183, 49, 0.35);
    border-radius: 22px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(223, 183, 49, 0.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(17, 28, 45, 0.98),
            rgba(8, 16, 29, 0.98)
        );
    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(223, 183, 49, 0.05);
}

.contact-action-panel::before {
    content: "";
    position: absolute;
    top: -85px;
    right: -85px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(223, 183, 49, 0.12);
    border-radius: 50%;
}

.contact-small-label {
    color: #dfb731;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.contact-action-panel h3 {
    max-width: 430px;
    margin-top: 15px;
    color: #ffffff;
    font-size: clamp(32px, 3vw, 47px);
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.contact-action-panel > p:not(.contact-small-label) {
    margin-top: 20px;
    color: #aeb7c5;
    font-size: 14px;
    line-height: 1.8;
}

.contact-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-top: 28px;
}

.contact-whatsapp-button,
.contact-call-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 21px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-whatsapp-button {
    color: #08111f;
    border: 1px solid #dfb731;
    background: #dfb731;
}

.contact-whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(223, 183, 49, 0.18);
}

.contact-whatsapp-button span {
    font-size: 20px;
}

.contact-call-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.contact-call-button:hover {
    transform: translateY(-3px);
    color: #dfb731;
    border-color: #dfb731;
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-note span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(223, 183, 49, 0.12);
    color: #dfb731;
    font-size: 12px;
    font-weight: 900;
}

.contact-note p {
    color: #9da7b5;
    font-size: 12px;
    line-height: 1.6;
}


/* Responsive */

@media (max-width: 1050px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-action-panel {
        max-width: none;
    }
}

@media (max-width: 700px) {
    .contact-section {
        padding: 75px 5%;
    }

    .contact-info-panel {
        grid-template-columns: 1fr;
    }

    .contact-card-address {
        grid-column: span 1;
    }

    .contact-card {
        min-height: auto;
    }

    .contact-action-panel {
        padding: 29px 23px;
    }
}

/* ==================================
   PREMIUM FOOTER
================================== */

.footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(223, 183, 49, 0.35);
    background:
        radial-gradient(
            circle at 12% 10%,
            rgba(223, 183, 49, 0.07),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #08111d 0%,
            #040b14 100%
        );
}

.footer-glow-line {
    width: 100%;
    height: 2px;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(223, 183, 49, 0.35),
            #dfb731,
            rgba(223, 183, 49, 0.35),
            transparent
        );
    box-shadow: 0 0 16px rgba(223, 183, 49, 0.4);
}


/* Main layout */

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        minmax(380px, 1.28fr)
        minmax(180px, 0.58fr)
        minmax(220px, 0.72fr)
        minmax(350px, 1.05fr);
    gap: 55px;
    padding: 70px 4.5% 60px;
}


/* Brand */

.footer-brand {
    max-width: 450px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.footer-logo-mark {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border: 1px solid #dfb731;
    border-radius: 16px;
    background: rgba(223, 183, 49, 0.05);
    color: #dfb731;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 1px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-text strong {
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.footer-logo-text small {
    margin-top: 8px;
    color: #a1acba;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.footer-tagline {
    margin-top: 31px;
    color: #ffffff;
    font-size: clamp(30px, 2.6vw, 43px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -1.2px;
}

.footer-tagline span {
    display: block;
    margin-top: 5px;
    color: #dfb731;
}

.footer-description {
    max-width: 410px;
    margin-top: 22px;
    color: #aab5c3;
    font-size: 15px;
    line-height: 1.85;
}


/* WhatsApp */

.footer-whatsapp {
    min-height: 57px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-top: 29px;
    padding: 14px 21px;
    border: 1px solid #dfb731;
    border-radius: 12px;
    background: rgba(223, 183, 49, 0.055);
    color: #dfb731;
    text-decoration: none;
    font-size: 15px;
    font-weight: 850;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-whatsapp svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-whatsapp strong {
    margin-left: auto;
    font-size: 21px;
}

.footer-whatsapp:hover {
    color: #07101d;
    background: #dfb731;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(223, 183, 49, 0.18);
}


/* Benefits cards */

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-top: 31px;
}

.footer-stat {
    min-height: 136px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
    text-align: center;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.footer-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(223, 183, 49, 0.55);
}

.footer-stat-icon {
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    margin-bottom: 11px;
    color: #dfb731;
}

.footer-stat-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-stat strong {
    color: #ffffff;
    font-size: 14px;
}

.footer-stat small {
    margin-top: 5px;
    color: #a3adba;
    font-size: 11px;
}


/* Headings */

.footer-column h3 {
    position: relative;
    margin-bottom: 28px;
    padding-bottom: 14px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 850;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 44px;
    height: 2px;
    border-radius: 999px;
    background: #dfb731;
}


/* Links */

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-service-links {
    display: flex;
    flex-direction: column;
}

.footer-links a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #adb8c6;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a span {
    color: #dfb731;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}


/* Contact */

.footer-contact-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    margin-bottom: 21px;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(223, 183, 49, 0.7);
    border-radius: 50%;
    color: #dfb731;
}

.footer-contact-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-item strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-contact-item a,
.footer-contact-item address,
.footer-contact-item p {
    color: #adb8c6;
    font-size: 13px;
    font-style: normal;
    line-height: 1.75;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: #dfb731;
}

.footer-direction-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 4px 0 14px;
    color: #dfb731;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
}

.footer-direction-link span {
    font-size: 20px;
    transition: transform 0.25s ease;
}

.footer-direction-link:hover span {
    transform: translateX(6px);
}


/* Map */

.footer-map {
    width: 100%;
    height: 195px;
    overflow: hidden;
    border: 1px solid rgba(223, 183, 49, 0.8);
    border-radius: 15px;
    background: #0e1725;
    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.25);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    filter:
        saturate(0.82)
        contrast(1.03);
}


/* Bottom */

.footer-bottom {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 4.5%;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 140px;
    height: 2px;
    background: #dfb731;
    box-shadow: 0 0 12px rgba(223, 183, 49, 0.55);
    transform: translateX(-50%);
}

.footer-bottom p {
    color: #8d99a8;
    font-size: 12px;
}

.footer-bottom strong {
    color: #dfb731;
}


/* Responsive */

@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns:
            minmax(360px, 1.2fr)
            minmax(170px, 0.6fr)
            minmax(210px, 0.7fr);
    }

    .footer-contact {
        grid-column: 1 / -1;
        max-width: 720px;
    }
}

@media (max-width: 850px) {
    .footer-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 650px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 58px 5% 45px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: auto;
    }

    .footer-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-stat {
        min-height: 112px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 21px 5%;
    }
}

@media (max-width: 460px) {
    .footer-stats {
        grid-template-columns: 1fr;
    }

    .footer-stat {
        min-height: 95px;
    }

    .footer-map {
        height: 180px;
    }
}

/* ================================
   FLOATING CONTACT
================================ */

.floating-contact{
    position:fixed;
    right:28px;
    bottom:28px;
    z-index:9999;
}

.floating-contact-main{

    width:62px;
    height:62px;

    border:none;
    border-radius:50%;

    cursor:pointer;

    background:#dfb731;

    color:#07101d;

    font-size:26px;
    font-weight:bold;

    box-shadow:
        0 15px 35px rgba(0,0,0,.35);

    transition:.35s;
}

.floating-contact:hover
.floating-contact-main{

    transform:rotate(45deg)
    scale(1.05);

}

.floating-contact-menu{

    position:absolute;

    right:0;
    bottom:78px;

    display:flex;
    flex-direction:column;
    gap:12px;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.35s;

}

.floating-contact:hover
.floating-contact-menu{

    opacity:1;
    visibility:visible;
    transform:translateY(0);

}

.contact-option{

    display:flex;
    align-items:center;
    gap:12px;

    width:170px;

    padding:12px 18px;

    border-radius:40px;

    background:#111b28;

    border:1px solid rgba(223,183,49,.35);

    color:white;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.contact-option:hover{

    background:#dfb731;

    color:#07101d;

    transform:translateX(-8px);

}

.contact-option-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;

    fill: none;
    stroke: #25d366;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-option:hover .contact-option-icon {
    stroke: #07101d;
}

/* ==================================
   SCROLL REVEAL ANIMATION
================================== */

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal.reveal-left {
    transform: translateX(-55px);
}

.reveal.reveal-right {
    transform: translateX(55px);
}

.reveal.reveal-scale {
    transform: scale(0.92);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}


/* Optional delays */

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}


/* Mobile par thoda fast */

@media (max-width: 700px) {
    .reveal {
        transform: translateY(28px);
        transition-duration: 0.65s;
    }

    .reveal.reveal-left,
    .reveal.reveal-right {
        transform: translateY(28px);
    }
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal.reveal-left,
    .reveal.reveal-right,
    .reveal.reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 120px;
}

/* ==================================
   IMAGE LIGHTBOX
================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: rgba(3, 8, 16, 0.92);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lightbox img {
    max-width: min(1100px, 86vw);
    max-height: 82vh;

    display: block;

    border: 1px solid rgba(223, 183, 49, 0.55);
    border-radius: 18px;

    object-fit: contain;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(223, 183, 49, 0.08);

    opacity: 0;
    transform: scale(0.88);

    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.active img {
    opacity: 1;
    transform: scale(1);
}


/* Close button */

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;

    width: 52px;
    height: 52px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(223, 183, 49, 0.55);
    border-radius: 50%;

    background: rgba(11, 21, 35, 0.9);
    color: #ffffff;

    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.lightbox-close:hover {
    color: #07101d;
    background: #dfb731;
    border-color: #dfb731;
    transform: rotate(90deg);
}


/* Previous and Next arrows */

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;

    width: 56px;
    height: 56px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(223, 183, 49, 0.5);
    border-radius: 50%;

    background: rgba(11, 21, 35, 0.88);
    color: #ffffff;

    font-size: 28px;

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.lightbox-prev {
    left: 28px;
}

.lightbox-next {
    right: 28px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: #07101d;
    background: #dfb731;
    border-color: #dfb731;
}

.lightbox-prev:hover {
    transform: translateY(-50%) translateX(-4px);
}

.lightbox-next:hover {
    transform: translateY(-50%) translateX(4px);
}


/* Hide page scroll while lightbox is open */

body.lightbox-open {
    overflow: hidden;
}


/* Responsive */

@media (max-width: 700px) {
    .lightbox {
        padding: 18px;
    }

    .lightbox img {
        max-width: 92vw;
        max-height: 76vh;
        border-radius: 14px;
    }

    .lightbox-close {
        top: 16px;
        right: 16px;

        width: 46px;
        height: 46px;

        font-size: 29px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 46px;
        height: 46px;

        font-size: 22px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lightbox,
    .lightbox img,
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        transition: none;
    }
}

/* ==================================
   LIGHTBOX DETAILS
================================== */

.lightbox-content {
    width: min(1100px, 86vw);
    max-height: 88vh;

    display: flex;
    flex-direction: column;

    opacity: 0;
    transform: scale(0.88);

    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.active .lightbox-content {
    opacity: 1;
    transform: scale(1);
}

.lightbox-content img {
    width: 100%;
    max-width: none;
    max-height: 74vh;

    border-radius: 18px 18px 0 0;
}

.lightbox-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 18px 21px;

    border: 1px solid rgba(223, 183, 49, 0.45);
    border-top: none;
    border-radius: 0 0 18px 18px;

    background:
        linear-gradient(
            145deg,
            rgba(17, 28, 45, 0.98),
            rgba(8, 16, 29, 0.98)
        );

    box-shadow:
        0 25px 65px rgba(0, 0, 0, 0.32);
}

.lightbox-category {
    display: block;

    margin-bottom: 6px;

    color: #dfb731;

    font-size: 11px;
    font-weight: 850;
    letter-spacing: 1px;

    text-transform: uppercase;
}

.lightbox-details h3 {
    margin: 0;

    color: #ffffff;

    font-size: 21px;
    line-height: 1.3;
}

.lightbox-counter {
    flex-shrink: 0;

    padding: 8px 12px;

    border: 1px solid rgba(223, 183, 49, 0.4);
    border-radius: 999px;

    background: rgba(223, 183, 49, 0.08);
    color: #dfb731;

    font-size: 12px;
    font-weight: 850;
}

@media (max-width: 700px) {
    .lightbox-content {
        width: 92vw;
    }

    .lightbox-content img {
        max-height: 68vh;
    }

    .lightbox-details {
        padding: 15px 16px;
    }

    .lightbox-details h3 {
        font-size: 17px;
    }
}

.lightbox-content > img {
    width: 100%;
    height: auto;
    min-height: 250px;
    max-height: 70vh;
    display: block !important;
    object-fit: contain;
    opacity: 1;
    visibility: visible;
}

/* ==================================
   MOBILE FOOTER COMPACT LAYOUT
================================== */

@media (max-width: 650px) {

    .footer-stats {
        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;

        gap: 8px;
    }

    .footer-stat {
        min-width: 0;
        min-height: 105px;
        padding: 12px 5px;
    }

    .footer-stat-icon {
        width: 34px;
        height: 34px;
        margin-bottom: 7px;
    }

    .footer-stat-icon svg {
        width: 30px;
        height: 30px;
    }

    .footer-stat strong {
        font-size: 12px;
    }

    .footer-stat small {
        font-size: 9px;
    }


    .footer-container {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        column-gap: 25px;
        row-gap: 38px;

        padding: 50px 5% 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column {
        min-width: 0;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-column h3 {
        margin-bottom: 20px;
        font-size: 17px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 13px;
    }
}


/* ==================================
   VERY SMALL MOBILE
================================== */

@media (max-width: 460px) {

    .footer-stats {
        grid-template-columns:
            repeat(3, minmax(0, 1fr)) !important;
    }

    .footer-stat {
        min-height: 100px;
    }
}

/* ==================================
   STATIC LOCATION MAP IMAGE
================================== */

.footer-map-link {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.footer-map-link img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: inherit;

    transition: transform 0.3s ease;
}

.footer-map-link:hover img {
    transform: scale(1.02);
}

/* ==================================
   PREMIUM HOME UI POLISH
================================== */


/* HERO */

.hero {
    position: relative;

    background:
        radial-gradient(
            circle at 75% 18%,
            rgba(226, 185, 52, 0.10),
            transparent 26%
        ),
        radial-gradient(
            circle at 12% 70%,
            rgba(80, 120, 155, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #07131f 0%,
            #0b1b2a 48%,
            #07121e 100%
        );
}


.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px
        );

    background-size:
        80px 80px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.35),
            transparent 85%
        );
}


.hero-content,
.hero-visual {
    position: relative;
    z-index: 1;
}


/* HERO LABEL */

.hero-label {
    color:
        var(--ssf-gold-bright);
}

.hero-label::before {
    border-radius: 999px;

    background:
        linear-gradient(
            to bottom,
            #f0ca4b,
            #bd8e1c
        );

    box-shadow:
        0 0 16px
        rgba(226, 185, 52, 0.26);
}


/* MAIN HEADING */

.hero h1 {
    color: #f8fafc;

    text-shadow:
        0 8px 25px
        rgba(0, 0, 0, 0.16);
}

.hero h1 span {
    color:
        var(--ssf-gold);
}


/* DESCRIPTION */

.hero-description {
    color:
        #b8c4cf;
}


/* FEATURE CARDS */

.trust-item {
    border:
        1px solid
        rgba(161, 182, 202, 0.15);

    background:
        linear-gradient(
            145deg,
            rgba(20, 39, 58, 0.88),
            rgba(9, 22, 36, 0.90)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.025),
        0 10px 25px
        rgba(0, 0, 0, 0.12);
}


.trust-item:hover {
    border-color:
        rgba(226, 185, 52, 0.48);

    background:
        linear-gradient(
            145deg,
            rgba(28, 48, 68, 0.96),
            rgba(12, 27, 43, 0.96)
        );
}


/* BUTTONS */

.btn-primary {
    background:
        linear-gradient(
            135deg,
            #f0c943,
            #d9a821
        );

    border-color:
        rgba(245, 205, 71, 0.9);

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.3),
        0 10px 28px
        rgba(185, 135, 18, 0.18);
}


.btn-secondary {
    border:
        1px solid
        rgba(171, 190, 208, 0.25);

    background:
        linear-gradient(
            145deg,
            rgba(19, 37, 56, 0.8),
            rgba(7, 19, 32, 0.8)
        );

    backdrop-filter:
        blur(10px);
}


/* FEATURED WORK */

.showcase-card {
    border:
        1px solid
        rgba(226, 185, 52, 0.52);

    background:
        linear-gradient(
            145deg,
            #0d2031,
            #081724
        );

    box-shadow:
        0 32px 85px
        rgba(0, 0, 0, 0.38),
        0 0 45px
        rgba(226, 185, 52, 0.05);
}


.showcase-header {
    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.05);

    background:
        linear-gradient(
            100deg,
            rgba(226, 185, 52, 0.10),
            rgba(14, 33, 50, 0.95)
        );
}


.showcase-details {
    background:
        linear-gradient(
            135deg,
            rgba(7, 18, 30, 0.82),
            rgba(16, 34, 50, 0.74)
        );

    border:
        1px solid
        rgba(193, 207, 220, 0.18);

    backdrop-filter:
        blur(16px);

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, 0.28);
}


/* GENERAL SECTION DEPTH */

.categories-section,
.work-section {
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(226, 185, 52, 0.045),
            transparent 25%
        ),
        #081725;
}


.services-section,
.about-section {
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(85, 125, 160, 0.06),
            transparent 28%
        ),
        #0a1928;
}


/* SERVICE / ABOUT CARDS */

.service-card,
.about-point {
    border:
        1px solid
        rgba(171, 191, 208, 0.12);

    background:
        linear-gradient(
            145deg,
            rgba(19, 39, 58, 0.94),
            rgba(10, 24, 39, 0.94)
        );

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.025),
        0 16px 35px
        rgba(0, 0, 0, 0.15);
}

/* ==================================
   PREMIUM BRIGHTER COLOR TUNING
   NO ANIMATION CHANGES
================================== */

/* HERO BACKGROUND */

.hero {
    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(226, 185, 52, 0.12),
            transparent 27%
        ),
        radial-gradient(
            circle at 18% 72%,
            rgba(92, 136, 171, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #0a1826 0%,
            #10263a 48%,
            #0b1b2a 100%
        ) !important;
}


/* FEATURE CARDS */

.trust-item {
    background:
        linear-gradient(
            145deg,
            rgba(24, 47, 69, 0.96),
            rgba(14, 31, 48, 0.96)
        ) !important;

    border-color:
        rgba(170, 194, 214, 0.18) !important;
}


/* FEATURED WORK CARD */

.showcase-card {
    background:
        linear-gradient(
            145deg,
            #10293d,
            #0c1d2d
        ) !important;

    border-color:
        rgba(226, 185, 52, 0.58) !important;
}


/* FEATURED HEADER */

.showcase-header {
    background:
        linear-gradient(
            100deg,
            rgba(226, 185, 52, 0.12),
            rgba(20, 43, 63, 0.96)
        ) !important;
}


/* DETAILS PANEL */

.showcase-details {
    background:
        linear-gradient(
            135deg,
            rgba(13, 31, 47, 0.88),
            rgba(25, 49, 68, 0.82)
        ) !important;

    border-color:
        rgba(193, 211, 225, 0.20) !important;
}


/* MAIN SECTION COLORS */

.categories-section,
.work-section {
    background:
        radial-gradient(
            circle at 12% 12%,
            rgba(226, 185, 52, 0.055),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #0b1b2b,
            #102337
        ) !important;
}


.services-section,
.about-section {
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(94, 139, 174, 0.08),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #102437,
            #0d1d2d
        ) !important;
}


/* SERVICE CARDS */

.service-card,
.about-point {
    background:
        linear-gradient(
            145deg,
            rgba(26, 52, 75, 0.96),
            rgba(16, 34, 52, 0.96)
        ) !important;

    border-color:
        rgba(175, 198, 216, 0.14) !important;
}


/* TEXT SLIGHTLY BRIGHTER */

.hero-description,
.section-description,
.service-card p,
.about-description {
    color:
        #c2ced9 !important;
}


/* GOLD A LITTLE CLEANER */

.hero h1 span,
.section-label,
.hero-label,
.trust-icon,
.design-icon,
.slide-number strong {
    color:
        #f0c84b !important;
}

/* ==================================
   FEATURED CARD FINAL COLOR MATCH
================================== */

.showcase-header {
    background:
        linear-gradient(
            100deg,
            rgba(226, 185, 52, 0.11),
            rgba(22, 46, 66, 0.97)
        ) !important;
}

.showcase-details {
    background:
        linear-gradient(
            135deg,
            rgba(15, 35, 52, 0.90),
            rgba(27, 53, 73, 0.84)
        ) !important;
}

/* Services heading - one line on desktop */
@media (min-width: 900px) {
    .services-section .section-heading h2 {
        max-width: none;
        width: 100%;
        white-space: nowrap;
    }
}

/* Our Work heading - one line on desktop */
@media (min-width: 900px) {
    .work-section .section-heading h2 {
        max-width: none;
        width: 100%;
        white-space: nowrap;
    }
}

@media (min-width: 900px) {
    #contact .section-heading {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: block;
    }

    #contact .section-heading h2 {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
        white-space: nowrap;
    }
}

/* ==================================
   FINAL FOOTER LOGO + BRAND STYLE
================================== */

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo-mark.footer-logo-mark-image {
    width: 78px;
    height: 62px;
    min-width: 78px;

    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;

    padding: 0;
    overflow: visible;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-mark-image img {
    width: 78px;
    height: 62px;
    object-fit: contain;
    display: block;
}

.footer-logo-text strong {
    color: #e4bd3a !important;
    font-weight: 850;
}

.footer-logo-text small {
    color: #ffffff !important;
    font-weight: 900 !important;
}

