@font-face {
    font-family: 'Trajan Pro';
    src: url('fonts/TrajanPro-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Trajan Pro';
    src: url('fonts/TrajanPro-Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;
}

/* NAVBAR */

.navbar {
    width: 100%;
    height: 105px;
    background: rgba(0, 0, 0, 0.96);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 45px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo img {
    width: 145px;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 34px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #e5b958;
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -14px;
    width: 100%;
    height: 2px;
    background: #e5b958;
}

.call-btn {
    background: linear-gradient(180deg, #f5d372, #ba8425);
    color: #000;
    padding: 16px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 16px;
}

/* LANDING */

.landing {
    min-height: 125vh;
    padding: 150px 35px 70px;
    background:
        linear-gradient(rgba(0,0,0,.20), rgba(0,0,0,.80)),
        url("images/background.jpeg") center top / cover no-repeat;
}

/* HERO */

.hero-title {
    text-align: center;
    margin-top: 20px;
}

.hero-title h1 {
    font-family: 'Trajan Pro', serif;
    color: #d4af37;
    font-size: 76px;
    line-height: 1;
    letter-spacing: 3px;
    font-weight: 500;
    text-shadow: 0 8px 18px rgba(0,0,0,.75);
}

.hero-title p {
    color: #fff;
    font-size: 22px;
    letter-spacing: 2px;
    margin-top: 18px;
}

.hero-line {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.hero-line span {
    width: 170px;
    height: 1px;
    background: #d4af37;
}

.hero-line h3 {
    color: #fff;
    font-size: 28px;
    letter-spacing: 14px;
    font-weight: 300;
}

/* SERVICE CARDS */

.service-cards {
    max-width: 1220px;
    margin: 80px auto 60px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 160px;
}

.service-card {
    width: 380px;
    background: rgba(0, 0, 0, 0.84);
    border: 1px solid #c99235;
    border-radius: 16px;
    padding: 58px 32px 30px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,.75);
}

.circle-icon {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    width: 84px;
    height: 84px;
    border: 2px solid #c99235;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.service-card h2 {
    font-family: 'Trajan Pro', serif;
    color: #e5b958;
    font-size: 44px;
    margin-bottom: 18px;
}

.service-card ul {
    list-style: none;
    border-top: 1px solid rgba(229,185,88,.45);
}

.service-card li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.service-card li a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    display: block;
}

.service-card li a:hover {
    color: #e5b958;
}

/* CTA */

.cta-box {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(0,0,0,.87);
    border: 1px solid #c99235;
    border-radius: 16px;
    padding: 35px 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.cta-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: .3s;
}

.cta-link:hover {
    transform: translateY(-5px);
}
.cta-link:hover {
    transform: translateY(-5px);
}

.cta-item {
    width: 45%;
}

.cta-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border: 2px solid #c99235;
    border-radius: 50%;
    color: #e5b958;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.cta-item h3 {
    font-family: 'Trajan Pro', serif;
    color: #e5b958;
    font-size: 28px;
}

.cta-item p {
    color: #f5d9a0;
    font-size: 20px;
    margin-top: 8px;
}

.divider {
    width: 1px;
    height: 115px;
    background: #c99235;
}

/* DETAIL SECTIONS */

.detail-section {
    min-height: 100vh;
    padding: 120px 70px;
    background: #030303;
    border-top: 1px solid rgba(212,175,55,.35);
    display: flex;
    align-items: center;
    scroll-margin-top: 120px;
}

.detail-container {
    width: 100%;
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
    gap: 70px;
}

.detail-image {
    display: flex;
    justify-content: center;
}

.detail-image img {
    width: 92%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
    border-radius: 22px;
    border: 2px solid #d4af37;
    background: #111;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0,0,0,.7);
}

.detail-content {
    max-width: 570px;
}

.detail-content h2 {
    font-family: 'Trajan Pro', serif;
    color: #e5b958;
    font-size: 54px;
    line-height: 1.05;
    margin-bottom: 25px;
}

.detail-content p {
    color: #fff;
    font-size: 21px;
    line-height: 1.7;
}

.detail-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 32px;
    background: linear-gradient(180deg,#f5d372,#ba8425);
    color: #000;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
}

/* FINAL CTA */

.final-cta {
    padding: 110px 30px;
    text-align: center;
    background: #050505;
}

.final-cta h2 {
    font-family: 'Trajan Pro', serif;
    color: #d4af37;
    font-size: 56px;
    margin-bottom: 20px;
}

.final-cta p {
    color: #fff;
    font-size: 28px;
}

.cta-phone {
    display: inline-block;
    margin: 40px 0;
    padding: 18px 45px;
    border-radius: 45px;
    background: linear-gradient(#f3cf69,#b47b21);
    color: #000;
    font-weight: bold;
    text-decoration: none;
    font-size: 28px;
}

.final-cta h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 400;
}

/* FOOTER */

.footer {
    background: #040404;
    border-top: 1px solid rgba(212,175,55,.35);
}

.footer-container {
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 80px;
    padding: 70px 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
}

.footer-logo {
    width: 230px;
    height: auto;
    border-radius: 12px;
}

.company p {
    color: #d6d6d6;
    line-height: 1.9;
    max-width: 470px;
    margin-top: 25px;
    font-size: 17px;
}

.footer-column h3 {
    font-family: 'Trajan Pro', serif;
    color: #d4af37;
    font-size: 32px;
    margin-bottom: 28px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 16px;
}

.footer-column a {
    color: #d8d8d8;
    text-decoration: none;
    transition: .3s;
}

.footer-column a:hover {
    color: #d4af37;
    padding-left: 8px;
}

.footer-column p {
    color: #d8d8d8;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 15px 34px;
    background: linear-gradient(180deg,#f3cf69,#b67d22);
    border-radius: 40px;
    color: #000 !important;
    font-weight: bold;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(212,175,55,.18);
    text-align: center;
    padding: 25px;
}

.footer-bottom p {
    color: #9c9c9c;
    font-size: 15px;
}

/* BACK TO TOP */

#backToTop {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(180deg,#f4d06b,#b98022);
    color: #000;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .35s;
    z-index: 9999;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* TABLET */

@media (max-width: 1100px) {
    .nav-menu {
        gap: 22px;
    }

    .hero-title h1 {
        font-size: 62px;
    }

    .service-cards {
        gap: 80px;
    }
}

/* MOBILE */

@media (max-width: 768px) {

    .navbar {
        height: 120px;
        padding: 12px 20px;
        position: fixed;
        top:0;
    left:0;
    width:100%;
    z-index:9999;
    background:#000;
    border-bottom:1px solid #9b7728;
    }

    .logo img {
        width: 110px;
    }

    .nav-menu {
        display: none;
    }

    .call-btn {
        padding: 14px 26px;
        font-size: 18px;
        white-space: nowrap;
    }

    .landing{
    min-height:850px;
    background:
    linear-gradient(rgba(0,0,0,.20),rgba(0,0,0,.75)),
    url("images/background.jpeg") center top/contain no-repeat;
    background-color:#000;
    padding-top: 180px;
}

    .hero-title h1 {
        font-size: 58px;
        line-height: .92;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-title p {
        font-size: 18px;
        margin-top: 18px;
    }

    .hero-line span {
        display: none;
    }

    .hero-line h3 {
        font-size: 22px;
        letter-spacing: 9px;
    }

    .service-cards {
        flex-direction: column;
        align-items: center;
        gap: 90px;
        margin: 100px auto 55px;
    }

    .service-card {
        width: 100%;
        max-width: 430px;
        padding: 58px 32px 30px;
    }

    .service-card h2 {
        font-size: 42px;
    }

    .service-card li {
        padding: 14px 0;
    }

    .service-card li a {
        font-size: 14px;
    }

    .circle-icon {
        width: 82px;
        height: 82px;
        top: -41px;
        font-size: 34px;
    }

    .cta-box {
        flex-direction: column;
        gap: 30px;
        padding: 32px 25px;
    }

    .cta-item {
        width: 100%;
    }

    .divider {
        width: 100%;
        height: 1px;
    }

    .detail-section {
        min-height: auto;
        padding: 90px 22px;
    }

    .detail-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .detail-image img {
        width: 100%;
        max-width: 100%;
    }

    .detail-content h2 {
        font-size: 42px;
    }

    .detail-content p {
        font-size: 18px;
    }

    .final-cta {
        padding: 80px 24px;
    }

    .final-cta h2 {
        font-size: 40px;
    }

    .final-cta p {
        font-size: 22px;
    }

    .cta-phone {
        font-size: 22px;
        padding: 16px 32px;
    }

    .final-cta h3 {
        font-size: 24px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 25px;
        gap: 45px;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo {
        width: 230px;
    }

    .company p {
        margin: 25px auto 0;
    }

    #backToTop {
        width: 48px;
        height: 48px;
        right: 22px;
        bottom: 24px;
        font-size: 24px;
    }
}

/* SMALL MOBILE */

@media (max-width: 430px) {

    .navbar {
        height: 118px;
        padding: 12px 16px;
        position: fixed;
    }

    .logo img {
        width: 112px;
    }

    .call-btn {
        padding: 11px 17px;
        font-size: 13px;
    }

    .landing {
        padding-top: 140px;
    }

    .hero-title h1 {
        font-size: 42px;
    }

    .hero-title p {
        font-size: 16px;
    }

    .hero-line h3 {
        font-size: 19px;
        letter-spacing: 7px;
    }

    .service-card {
        padding: 55px 26px 28px;
    }

    .service-card h2 {
        font-size: 36px;
    }

    .service-card li a {
        font-size: 13px;
    }
}