:root {
    --background: #070707;
    --background-soft: #0d0d0d;
    --surface: #121212;
    --surface-light: #1a1a1a;
    --gold: #d5a72b;
    --gold-light: #f2cc62;
    --text: #f8f8f5;
    --text-muted: #aaa9a4;
    --border: rgba(255, 255, 255, 0.1);
    --max-width: 1240px;
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background: rgba(7, 7, 7, 0.88);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(18px);
}

.nav-container {
    width: min(calc(100% - 48px), var(--max-width));
    min-height: 94px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 240px;
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.brand-location {
    color: var(--text-muted);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.main-nav a:hover {
    color: white;
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-button {
    padding: 13px 22px;
    border: 1px solid rgba(213, 167, 43, 0.65);
    border-radius: 999px;
    color: var(--gold-light);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.nav-button:hover {
    background: var(--gold);
    color: #080808;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background: white;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url("images/porsche.jpg");
    background-size: cover;
    background-position: center 58%;
    transform: scale(1.03);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.65) 45%,
            rgba(0, 0, 0, 0.18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.85) 0%,
            transparent 40%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding-top: 130px;
}

.eyebrow {
    margin-bottom: 18px;
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.hero h1 {
    max-width: 870px;
    margin-bottom: 28px;
    font-family: "Playfair Display", serif;
    font-size: clamp(3.8rem, 8vw, 7.8rem);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

.hero h1 span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
}

.hero-description {
    max-width: 640px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 29px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--gold);
    color: #0b0b0b;
    box-shadow: 0 14px 35px rgba(213, 167, 43, 0.22);
}

.button-primary:hover {
    background: var(--gold-light);
}

.button-secondary {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    backdrop-filter: blur(12px);
}

.button-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.1);
}

.hero-details {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 760px;
    margin-top: 74px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-details div {
    padding: 22px 24px 0 0;
}

.hero-details strong,
.hero-details span {
    display: block;
}

.hero-details strong {
    margin-bottom: 7px;
    color: white;
    font-size: 0.87rem;
}

.hero-details span {
    max-width: 180px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.74rem;
    line-height: 1.5;
}

.scroll-indicator {
    position: absolute;
    right: 40px;
    bottom: 30px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.68rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transform: rotate(90deg);
    transform-origin: right bottom;
}

.scroll-line {
    width: 60px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
}

.scroll-line::after {
    content: "";
    display: block;
    width: 35%;
    height: 100%;
    background: var(--gold);
    animation: scrollLine 2s infinite ease-in-out;
}

@keyframes scrollLine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(320%);
    }
}

.section {
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
    padding: 120px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 62px;
}

.section-heading h2,
.about-content h2,
.feature-banner-content h2,
.contact-copy h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.section-heading > p {
    color: var(--text-muted);
    line-height: 1.8;
}

.services-section {
    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(213, 167, 43, 0.08),
            transparent 28%
        );
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 520px;
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(213, 167, 43, 0.18);
    border-radius: 50%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(213, 167, 43, 0.45);
    background: rgba(255, 255, 255, 0.04);
}

.service-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 44px;
    border: 1px solid rgba(213, 167, 43, 0.45);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold-light);
    font-size: 1.3rem;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 1.45rem;
}

.service-card > p {
    margin-bottom: 34px;
    color: var(--text-muted);
    line-height: 1.75;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    position: relative;
    margin: 16px 0;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
}

.service-card li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 7px;
    height: 7px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
}

.feature-banner {
    position: relative;
    min-height: 670px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.feature-banner-image {
    position: absolute;
    inset: 0;
    background-image: url("images/ferrari.jpg");
    background-size: cover;
    background-position: center;
}

.feature-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92),
            rgba(0, 0, 0, 0.55) 55%,
            rgba(0, 0, 0, 0.15)
        );
}

.feature-banner-content {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 48px), var(--max-width));
    margin: 0 auto;
}

.feature-banner-content h2 {
    max-width: 820px;
    margin-bottom: 35px;
}

.feature-banner-content h2 span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: white;
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.text-link span {
    color: var(--gold);
    font-size: 1.4rem;
    transition: transform 0.25s ease;
}

.text-link:hover span {
    transform: translateX(6px);
}

.work-section {
    padding-bottom: 140px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    grid-auto-rows: 350px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: var(--surface);
}

.gallery-large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.7s ease,
        filter 0.7s ease;
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.9),
            transparent 55%
        );
}

.gallery-item figcaption {
    position: absolute;
    left: 26px;
    bottom: 24px;
    z-index: 2;
}

.gallery-item figcaption span,
.gallery-item figcaption strong {
    display: block;
}

.gallery-item figcaption span {
    margin-bottom: 5px;
    color: var(--gold-light);
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.gallery-item figcaption strong {
    font-size: 1.25rem;
}

.gallery-item:hover img {
    transform: scale(1.045);
    filter: brightness(1.06);
}

.about-section {
    border-top: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    align-items: center;
    gap: 90px;
}

.about-image {
    position: relative;
    min-height: 680px;
}

.about-image > img {
    width: 100%;
    height: 680px;
    border-radius: 26px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    right: -30px;
    bottom: 42px;
    width: 220px;
    padding: 26px;
    border: 1px solid rgba(213, 167, 43, 0.4);
    border-radius: 18px;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
}

.image-badge strong,
.image-badge span {
    display: block;
}

.image-badge strong {
    margin-bottom: 7px;
    color: var(--gold-light);
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
}

.image-badge span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

.about-content h2 {
    margin-bottom: 28px;
}

.about-intro {
    margin-bottom: 46px;
    color: var(--text-muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

.benefit-list {
    display: grid;
    gap: 0;
}

.benefit {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 26px 0;
    border-top: 1px solid var(--border);
}

.benefit:last-child {
    border-bottom: 1px solid var(--border);
}

.benefit > span {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.benefit h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.benefit p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.process-section {
    background: var(--background-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--border);
}

.process-step {
    min-height: 300px;
    padding: 42px;
    background: var(--background-soft);
}

.process-step > span {
    display: inline-block;
    margin-bottom: 70px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.process-step h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
}

.process-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

.contact-section {
    padding-top: 120px;
    padding-bottom: 120px;
}

.contact-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    padding: 72px;
    border: 1px solid rgba(213, 167, 43, 0.26);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 0% 0%,
            rgba(213, 167, 43, 0.12),
            transparent 35%
        ),
        var(--surface);
    box-shadow: var(--shadow);
}

.contact-copy h2 {
    margin-bottom: 24px;
}

.contact-copy > p:not(.eyebrow) {
    color: var(--text-muted);
    line-height: 1.8;
}

.contact-information {
    display: grid;
    gap: 22px;
    margin-top: 44px;
}

.contact-information a,
.contact-information div {
    color: white;
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-information span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-light);
    font-size: 0.64rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.quote-form {
    padding: 38px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.24);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.74rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    outline: none;
    background: rgba(255, 255, 255, 0.035);
    color: white;
    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.form-group input,
.form-group select {
    height: 52px;
    padding: 0 16px;
}

.form-group textarea {
    min-height: 125px;
    padding: 15px 16px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: #111;
    color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(213, 167, 43, 0.65);
    background: rgba(255, 255, 255, 0.055);
}

.form-button {
    width: 100%;
    border: 0;
}

.form-note {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.36);
    font-size: 0.68rem;
    line-height: 1.5;
    text-align: center;
}

.site-footer {
    border-top: 1px solid var(--border);
    background: #040404;
}

.footer-container {
    width: min(calc(100% - 48px), var(--max-width));
    min-height: 180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    margin-bottom: 3px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-brand span {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-container > p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.72rem;
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1000px) {
    .main-nav {
        gap: 20px;
    }

    .brand-location {
        display: none;
    }

    .brand {
        min-width: auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image,
    .about-image > img {
        min-height: 550px;
        height: 550px;
    }

    .image-badge {
        right: 24px;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        padding: 45px 0;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        justify-content: center;
    }

    .footer-container > p {
        text-align: center;
    }
}

@media (max-width: 800px) {
    .nav-container {
        min-height: 78px;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .brand-name {
        font-size: 0.85rem;
    }

    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1002;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        inset: 0;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        background: rgba(5, 5, 5, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        font-family: "Playfair Display", serif;
        font-size: 2rem;
    }

    .hero {
        min-height: 900px;
    }

    .hero-background {
        background-position: 62% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0, 0, 0, 0.88),
                rgba(0, 0, 0, 0.45)
            ),
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.92),
                transparent 50%
            );
    }

    .hero-content {
        padding-top: 110px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 16vw, 5.4rem);
    }

    .hero-details {
        grid-template-columns: 1fr;
        margin-top: 55px;
    }

    .hero-details div {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .scroll-indicator {
        display: none;
    }

    .section {
        padding: 90px 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 45px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 360px;
    }

    .gallery-large {
        grid-row: auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        min-height: auto;
    }

    .process-step > span {
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .nav-container,
    .hero-content,
    .feature-banner-content,
    .section,
    .footer-container {
        width: min(calc(100% - 30px), var(--max-width));
    }

    .brand-text {
        display: none;
    }

    .hero {
        min-height: 840px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .feature-banner {
        min-height: 600px;
    }

    .feature-banner-image {
        background-position: 65% center;
    }

    .about-image,
    .about-image > img {
        min-height: 440px;
        height: 440px;
    }

    .image-badge {
        right: 14px;
        bottom: 14px;
        width: 190px;
    }

    .contact-card {
        padding: 28px 20px;
    }

    .quote-form {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-links {
        flex-wrap: wrap;
    }
}
/* Premium Services */

.premium-services{
    padding:140px 8%;
    background:#080808;
}

.premium-header{
    max-width:700px;
    margin:auto;
    text-align:center;
    margin-bottom:70px;
}

.premium-header h2{
    font-size:3rem;
    margin:15px 0;
}

.premium-header p{
    color:#bfbfbf;
    line-height:1.8;
}

.premium-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

.premium-card{

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:45px;

    transition:.35s;

    position:relative;

    overflow:hidden;
}

.premium-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:4px;

background:#d5a72b;

transform:scaleX(0);

transition:.35s;

}

.premium-card:hover{

transform:translateY(-10px);

border-color:#d5a72b;

}

.premium-card:hover::before{

transform:scaleX(1);

}

.featured-card{

background:linear-gradient(180deg,#1b1608,#111);

border:1px solid #d5a72b;

}

.premium-icon{

font-size:2.7rem;

display:block;

margin-bottom:25px;

}

.premium-card h3{

font-size:1.8rem;

margin-bottom:15px;

}

.premium-card p{

color:#bfbfbf;

line-height:1.7;

margin-bottom:25px;

}

.premium-card ul{

list-style:none;

padding:0;

}

.premium-card li{

padding:8px 0;

color:white;

font-weight:500;

}