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

/* BODY */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #0f0f0f;
    color: #ffffff;
    line-height: 1.6;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    background: url("https://images.unsplash.com/photo-1558611848-73f7eb4001a1?q=80&w=1974&auto=format&fit=crop") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 22px;
    color: #dddddd;
    margin-bottom: 40px;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 18px 45px;
    background: #c9a227;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 18px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(201,162,39,0.15);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(201,162,39,0.35);
}

/* SECTIONS */
section {
    padding: 100px 20px;
    max-width: 1100px;
    margin: auto;
}

h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #c9a227;
    display: block;
    margin: 15px auto 0;
}

/* ABOUT */
.about p {
    text-align: center;
    max-width: 700px;
    margin: auto;
    font-size: 18px;
    color: #cccccc;
}

/* CONTACT */
.contact {
    text-align: center;
}

.contact p {
    margin: 10px 0;
    font-size: 18px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 40px;
    background: #000000;
    color: #777777;
    font-size: 14px;
}


/* TRANSFORMATIONS */
.transformations {
    background: #161616;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s;
}

.card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.card p {
    padding: 20px;
    font-weight: bold;
    color: #c9a227;
}

.card:hover {
    transform: translateY(-10px);
}


/* FOOTER UPGRADE */
.site-footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid #1f1f1f;
}

.footer-content p {
    margin: 8px 0;
}

.credit {
    font-size: 14px;
    color: #888;
}

.credit a {
    color: #c9a227;
    text-decoration: none;
    font-weight: bold;
}

.credit a:hover {
    text-decoration: underline;
}

/* TESTIMONIALS */
.testimonials {
    background: #141414;
    padding: 120px 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.testimonial-card {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.stars {
    color: #c9a227;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #ddd;
}

.testimonial-card span {
    font-size: 14px;
    color: #999;
}


/* PRICING */
.pricing {
    padding: 120px 20px;
    background: #0f0f0f;
    text-align: center;
}

.pricing-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
    max-width: 1200px;
    margin: 80px auto 0;
}

.price-box {
    flex: 1;
    padding: 40px 30px;
    background: #151515;
    border-radius: 20px;
    position: relative;
    transition: 0.4s ease;
}

.price-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

.price {
    font-size: 38px;
    font-weight: bold;
    color: #c9a227;
    margin: 20px 0;
}

.price-box ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.price-box ul li {
    margin: 10px 0;
    color: #ddd;
}

.price-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #c9a227;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(201,162,39,0.15);
}

.price-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(201,162,39,0.3);
}

.divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, #c9a227, transparent);
}

.featured {
    border: 2px solid #c9a227;
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #c9a227;
    color: #000;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 20px;
}

/* OFFER */

.offer {
    padding: 140px 20px;
    background: #0b0b0b;
}

.offer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1200px;
    margin: auto;
    align-items: center;
}

.offer-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.offer-intro {
    color: #bbb;
    font-size: 16px;
    line-height: 1.6;
}

.offer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.offer-box {
    background: #141414;
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #1f1f1f;
    transition: 0.4s ease;
}

.offer-box:hover {
    transform: translateY(-8px);
    border-color: #c9a227;
    box-shadow: 0 20px 40px rgba(201,162,39,0.15);
}

.offer-box h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.offer-box p {
    font-size: 14px;
    color: #aaa;
}

/* CONTACT UPGRADE */
.contact {
    padding: 140px 20px;
    background: linear-gradient(180deg, #0f0f0f, #121212);
    text-align: center;
}

.contact-wrapper {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
    font-size: 20px;
}

.contact-item .icon {
    font-size: 22px;
    color: #c9a227;
}

.contact-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #c9a227;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(201,162,39,0.15);
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(201,162,39,0.35);
}

/* SOCIAL MEDIA PREMIUM */
.social-icons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    border-color: #c9a227;
    color: #c9a227;
    transform: translateY(-4px);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #aaa;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #c9a227;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Sticky Effect */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
}

/* SMOOTH SCROLL */
html {
    scroll-behavior: smooth;
}

/* OFFSET POD FIXED NAVBAR */
section {
    scroll-margin-top: 100px;
}

/* FADE IN SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

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


.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    width: 100%;
}

/* ========================= */
/* MOBILE & TABLET FIX */
/* ========================= */

@media (max-width: 992px) {

    /* NAVBAR */
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }

    /* OFFER */
    .offer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .offer-right {
        grid-template-columns: 1fr;
    }

    /* PRICING */
    .pricing-row {
        flex-direction: column;
        gap: 30px;
        margin-top: 50px;
    }

    .divider {
        display: none;
    }

    .featured {
        transform: none;
    }

    .price-box {
        width: 100%;
    }
}

@media (max-width: 600px) {

    .hero {
        height: auto;
        padding: 120px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    section {
        padding: 80px 20px;
    }

    .pricing {
        padding: 80px 20px;
    }

}

/* ===== NAVBAR MOBILE FIX ===== */

@media (max-width: 768px) {

    .nav-container {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .logo {
        font-size: 18px;
    }
}
