/*
Theme Name: Relax Point Theme
Theme URI: https://relaxpoint.si
Author: Relax Point
Description: Custom WordPress tema za Relax Point.
Version: 1.0
Text Domain: relaxpoint
*/
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

h1,
h2,
h3,
.logo-title,
.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif;
}


/* HEADER */

.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;

    background:
        rgba(5,5,5,0.34);

    backdrop-filter: blur(20px);

    border-bottom:
        1px solid rgba(255,255,255,0.04);

    transition:
        background 0.35s ease,
        padding 0.35s ease,
        border 0.35s ease;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;

    padding: 26px 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 40px;

    transition: 0.35s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-icon {
    color: #c8a46b;
    font-size: 34px;
    line-height: 1;
}

.logo-title {
    color: #c8a46b;
    font-size: 28px;
    letter-spacing: 3px;
    font-family: Georgia, serif;
}

.logo-subtitle {
    color: #c8a46b;
    font-size: 11px;
    letter-spacing: 3px;
    margin-top: 3px;
}

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

.main-nav a {
    position: relative;

    color: #f5f5f5;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 2px;

    padding-bottom: 8px;

    transition: 0.35s ease;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0%;
    height: 1px;

    background: #c8a46b;

    transition: 0.35s ease;
}

.main-nav a:hover {
    color: #c8a46b;
}

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

.main-nav a:hover {
    color: #c8a46b;
}

.header-button {
    border: 1px solid rgba(200,164,107,0.38);

    color: #c8a46b;

    padding: 16px 28px;

    border-radius: 14px;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 2px;

    transition: 0.35s ease;

    background:
        rgba(255,255,255,0.02);

    backdrop-filter: blur(10px);
}

.header-button:hover {
    background: #c8a46b;
    color: #050505;
}


/* HOME HERO IMAGE */

.home-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(5, 5, 5, 1) 0%,
            rgba(5, 5, 5, 0.92) 35%,
            rgba(5, 5, 5, 0.35) 70%,
            rgba(5, 5, 5, 0.05) 100%
        ),
        url("assets/images/hero-headspa.jpg");
    background-size: cover;
    background-position: center right;
}

/* QUICK BENEFITS */

.quick-benefits {
    max-width: 1400px;
    margin: -90px auto 0;
    padding: 0 70px 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    position: relative;
    z-index: 5;
}

.benefit-item {
    padding: 30px 24px;
    text-align: center;
    border-right: 1px solid rgba(200, 164, 107, 0.18);
}

.benefit-item:last-child {
    border-right: none;
}

.benefit-icon {
    color: #c8a46b;
    font-size: 34px;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #d8d8d8;
    font-size: 15px;
    margin: 0;
}

/* SERVICES SECTION */

.services-section {
    padding: 120px 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    color: #c8a46b;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 54px;
    font-weight: 300;
    margin: 0;
}

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

.service-card {
    background: #0b0b0b;
    border: 1px solid rgba(200, 164, 107, 0.15);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 164, 107, 0.45);
}

.service-card img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
}

.service-content p {
    color: #cfcfcf;
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-content a {
    color: #c8a46b;
    text-decoration: none;
    font-weight: 600;
}


/* EXPERIENCE SECTION */

.experience-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 70px 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.experience-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(200, 164, 107, 0.25);
}

.experience-content h2 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 300;
    margin: 0 0 30px;
}

.experience-content h2 span {
    color: #c8a46b;
}

.experience-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.experience-content li {
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    padding-left: 34px;
}

.experience-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c8a46b;
}


/* TESTIMONIALS */

.testimonials-section {
    padding: 100px 70px;
    max-width: 1400px;
    margin: 0 auto;
    border-top: 1px solid rgba(200, 164, 107, 0.12);
}

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

.testimonial-card {
    background: linear-gradient(145deg, #0b0b0b, #111111);
    border: 1px solid rgba(200, 164, 107, 0.16);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.stars {
    color: #c8a46b;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonial-card p {
    color: #eeeeee;
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 26px;
}

.testimonial-card h4 {
    color: #c8a46b;
    font-size: 18px;
    margin: 0;
}


/* GIFT SECTION */

.gift-section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 70px;
    display: grid;
    grid-template-columns: 1.2fr 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.gift-section {
    background: linear-gradient(145deg, rgba(200, 164, 107, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(200, 164, 107, 0.24);
    border-radius: 22px;
    padding-top: 40px;
    padding-bottom: 40px;
}

.gift-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
}

.gift-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin: 0 0 18px;
}

.gift-content p {
    color: #d8d8d8;
    line-height: 1.7;
    margin-bottom: 30px;
}

.gift-options {
    border-left: 1px solid rgba(200, 164, 107, 0.18);
    padding-left: 40px;
}

.gift-options div {
    margin-bottom: 34px;
}

.gift-options div:last-child {
    margin-bottom: 0;
}

.gift-options h4 {
    color: #c8a46b;
    font-size: 20px;
    margin: 0 0 10px;
}

.gift-options p {
    color: #cfcfcf;
    margin: 0;
    line-height: 1.6;
}


/* FOOTER */

.site-footer {
    background: #050505;
    border-top: 1px solid rgba(200, 164, 107, 0.14);
    padding-top: 80px;
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-brand h3 {
    color: #c8a46b;
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 300;
}

.footer-brand p {
    color: #d0d0d0;
    line-height: 1.8;
    max-width: 360px;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: #c8a46b;
    margin-bottom: 22px;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-links a,
.footer-social a {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 14px;
    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #c8a46b;
}

.footer-contact p {
    color: #d0d0d0;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(200, 164, 107, 0.1);
    text-align: center;
    padding: 24px;
    color: #9c9c9c;
    font-size: 14px;
}


/* RESPONSIVE DESIGN */

@media (max-width: 1100px) {
    .header-inner {
        padding: 20px 30px;
    }

    .main-nav {
        gap: 22px;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-section,
    .gift-section {
        grid-template-columns: 1fr;
    }

    .gift-options {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(200, 164, 107, 0.18);
        padding-top: 30px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .main-nav,
    .header-button {
        display: none;
    }

    .header-inner {
        padding: 18px 22px;
    }

    .logo-title {
        font-size: 22px;
    }

    .logo-subtitle {
        font-size: 9px;
    }

    .hero {
        padding: 150px 24px 80px;
        min-height: 92vh;
    }

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

    .hero-description {
        font-size: 17px;
    }

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

    .quick-benefits {
        margin: 0;
        padding: 30px 24px;
        grid-template-columns: repeat(2, 1fr);
    }

    .benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(200, 164, 107, 0.14);
    }

    .services-section,
    .testimonials-section {
        padding: 80px 24px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

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

    .experience-section {
        padding: 20px 24px 80px;
        gap: 40px;
    }

    .experience-image img {
        height: 360px;
    }

    .experience-content h2 {
        font-size: 38px;
    }

    .gift-section {
        margin: 0 24px 80px;
        padding: 28px;
    }

    .footer-top {
        padding: 0 24px 50px;
        grid-template-columns: 1fr;
    }
}


/* MOBILE MENU */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(200, 164, 107, 0.4);
    color: #c8a46b;
    font-size: 28px;
    border-radius: 8px;
    padding: 6px 12px;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background: rgba(5, 5, 5, 0.98);
    border-top: 1px solid rgba(200, 164, 107, 0.14);
    padding: 24px;
}

.mobile-menu a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 0;
    border-bottom: 1px solid rgba(200, 164, 107, 0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-menu a:hover {
    color: #c8a46b;
}

.mobile-reservation-button {
    color: #c8a46b !important;
}

.mobile-menu.active {
    display: block;
}

@media (max-width: 760px) {
    .mobile-menu-toggle {
        display: block;
    }
}


/* PREMIUM ANIMATIONS */

.hero-content,
.quick-benefits,
.service-card,
.experience-image,
.experience-content,
.testimonial-card,
.gift-section {
    animation: fadeUp 0.9s ease both;
}

.service-card:nth-child(2),
.testimonial-card:nth-child(2) {
    animation-delay: 0.12s;
}

.service-card:nth-child(3),
.testimonial-card:nth-child(3) {
    animation-delay: 0.24s;
}

.service-card:nth-child(4) {
    animation-delay: 0.36s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* PAGE HERO */

.page-hero {
    padding: 220px 70px 120px;
    text-align: center;
    background:
        linear-gradient(
            rgba(5, 5, 5, 0.88),
            rgba(5, 5, 5, 0.92)
        ),
        url("assets/images/hero-headspa.jpg");
    background-size: cover;
    background-position: center;
}

.page-hero h1 {
    font-size: 74px;
    margin: 0 0 20px;
    font-weight: 300;
}

.page-hero p {
    color: #d8d8d8;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 70px;
}


/* =========================================
   LUXURY HERO
========================================= */

.hero-luxury {
    position: relative;
    min-height: 900px;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    overflow: hidden;
    padding: 190px 70px 90px;
    background:
        radial-gradient(circle at top left,
        rgba(200,164,107,0.12),
        transparent 34%),
        #050505;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(5,5,5,1) 0%,
            rgba(5,5,5,0.96) 32%,
            rgba(5,5,5,0.58) 60%,
            rgba(5,5,5,0.1) 100%
        );
    z-index: 1;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 2;
}

.hero-left {
    max-width: 760px;
}

.hero-kicker {
    color: #c8a46b;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    margin-bottom: 30px;
}

.hero-luxury h1 {
    font-size: 86px;
    line-height: 1.02;
    font-weight: 300;
    margin: 0 0 34px;
}

.hero-luxury h1 span {
    color: #c8a46b;
}

.hero-text {
    font-size: 21px;
    line-height: 1.8;
    color: #dddddd;
    max-width: 560px;
    margin-bottom: 48px;
}

.hero-actions {
    display: flex;
    gap: 22px;
    margin-bottom: 70px;
}

.luxury-btn {
    position: relative;
    overflow: hidden;
    padding: 20px 34px;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.4s ease;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.luxury-btn-primary {
    background: linear-gradient(
        135deg,
        #d5b178,
        #b88b47
    );
    color: #050505;
    box-shadow:
        0 10px 30px rgba(200,164,107,0.18);
}

.luxury-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 18px 40px rgba(200,164,107,0.28);
}

.luxury-btn-secondary {
    border: 1px solid rgba(200,164,107,0.4);
    color: #c8a46b;
    backdrop-filter: blur(10px);
}

.luxury-btn-secondary:hover {
    background: rgba(200,164,107,0.08);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid rgba(200,164,107,0.14);
}

.hero-feature {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-feature-icon {
    color: #c8a46b;
    font-size: 28px;
}

.hero-feature span {
    color: #d7d7d7;
    font-size: 14px;
    line-height: 1.6;
}

.hero-right {
    position: relative;
}

.hero-right img {
    width: 100%;
    height: 830px;
    object-fit: cover;
    object-position: center;
    border-radius: 26px;
    border: 1px solid rgba(200,164,107,0.18);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.5);
}

/* TRUST STRIP */

.trust-strip {
    border-top: 1px solid rgba(200,164,107,0.18);
    border-bottom: 1px solid rgba(200,164,107,0.18);
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.03),
            rgba(200,164,107,0.04)
        );
    padding: 34px 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.trust-icon {
    color: #c8a46b;
    font-size: 36px;
    line-height: 1;
}

.trust-item h3 {
    color: #c8a46b;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    margin: 0 0 8px;
}

.trust-item p {
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* SERVICE CARD POLISH */

.service-card {
    position: relative;
    background:
        linear-gradient(180deg, #121212 0%, #080808 100%);
    border: 1px solid rgba(200,164,107,0.28);
    border-radius: 18px;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(200,164,107,0.12),
            transparent 36%
        );
    opacity: 0;
    transition: 0.35s ease;
    pointer-events: none;
}

.service-card:hover::after {
    opacity: 1;
}

.service-card img {
    height: 240px;
    transition: 0.5s ease;
}

.service-card:hover img {
    transform: scale(1.06);
}

.service-floating-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: #0a0a0a;
    border: 1px solid rgba(200,164,107,0.45);
    color: #c8a46b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    margin: -33px auto 0;
    z-index: 3;
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

.service-content {
    text-align: center;
    padding: 24px 26px 34px;
}

.service-content h3 {
    color: #f2f2f2;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
}

.service-content p {
    font-size: 15px;
}

.service-content a {
    display: inline-block;
    margin-top: 8px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}


/* LUXURY GIFT SECTION */

.gift-luxury {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(200,164,107,0.18), transparent 34%),
        linear-gradient(135deg, #111111, #060606);
    border: 1px solid rgba(200,164,107,0.32);
    box-shadow: 0 35px 100px rgba(0,0,0,0.35);
}

.gift-card-preview {
    height: 300px;
    border-radius: 24px;
    padding: 18px;
    background:
        linear-gradient(135deg, #d6b476, #8d642d);
    transform: rotate(-3deg);
    box-shadow: 0 28px 80px rgba(200,164,107,0.22);
}

.gift-card-inner {
    height: 100%;
    border: 1px solid rgba(5,5,5,0.26);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px;
    color: #050505;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.32),
            rgba(255,255,255,0.04)
        );
}

.gift-card-inner p {
    letter-spacing: 4px;
    font-size: 13px;
    margin: 0 0 20px;
}

.gift-card-inner h3 {
    font-size: 46px;
    margin: 0 0 12px;
    font-weight: 400;
}

.gift-card-inner span {
    font-size: 15px;
    letter-spacing: 1px;
}

.gift-luxury .gift-content h2 {
    font-size: 46px;
    line-height: 1.15;
}

.gift-luxury .gift-options {
    border-left-color: rgba(200,164,107,0.26);
}

/* REAL GIFT VOUCHER IMAGE - HOME */
.gift-card-preview {
    width: 100%;
    max-width: 560px;
    height: 360px;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 24px;
    transform: rotate(-3deg);
    box-shadow: 0 28px 80px rgba(200,164,107,0.22);
    overflow: visible !important;
}

.gift-card-real-img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 24px;
    display: block;
    background: transparent !important;
}


/* LUXURY TESTIMONIALS */

.testimonials-luxury {
    position: relative;
    background:
        radial-gradient(circle at center, rgba(200,164,107,0.08), transparent 42%);
}

.testimonials-luxury .testimonial-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #111111, #070707);
    border: 1px solid rgba(200,164,107,0.24);
    min-height: 260px;
}

.quote-icon {
    position: absolute;
    top: -30px;
    left: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 150px;
    color: rgba(200,164,107,0.12);
    line-height: 1;
}

.featured-testimonial {
    transform: translateY(-20px);
    box-shadow: 0 28px 80px rgba(0,0,0,0.35);
    border-color: rgba(200,164,107,0.45) !important;
}

/* LUXURY MOBILE FIXES */

@media (max-width: 1100px) {
    .hero-luxury {
        grid-template-columns: 1fr;
        padding: 170px 40px 80px;
        min-height: auto;
    }

    .hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(5,5,5,0.96) 0%,
            rgba(5,5,5,0.72) 45%,
            rgba(5,5,5,0.96) 100%
        );
    }

    .hero-luxury h1 {
        font-size: 72px;
    }

    .hero-right img {
        height: 560px;
        margin-top: 60px;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 34px 40px;
    }

    .gift-luxury {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .hero-luxury {
        padding: 135px 22px 60px;
    }

    .hero-luxury h1 {
        font-size: 46px;
        line-height: 1.05;
    }

    .hero-text {
        font-size: 17px;
        margin-bottom: 34px;
    }

    .hero-actions {
        flex-direction: column;
        margin-bottom: 44px;
    }

    .luxury-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .hero-right img {
        height: 380px;
        border-radius: 20px;
        margin-top: 44px;
    }

    .trust-strip {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 32px 24px;
    }

    .featured-testimonial {
        transform: none;
    }

    .gift-card-preview {
        height: 240px;
        transform: rotate(0deg);
    }

    .gift-card-inner h3 {
        font-size: 38px;
    }

    .header-inner {
        padding: 18px 22px !important;
    }
}

/* OFFER PAGE LUXURY */

.offer-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 110px 70px 60px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 80px;
    align-items: end;
}

.offer-intro h2 {
    font-size: 58px;
    line-height: 1.12;
    font-weight: 300;
    margin: 0;
}

.offer-intro > p {
    color: #d8d8d8;
    font-size: 18px;
    line-height: 1.9;
}

.offer-services {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 70px 130px;
    display: grid;
    gap: 36px;
}

.offer-service-card {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: linear-gradient(135deg, #101010, #070707);
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 26px;
    overflow: hidden;
}

.offer-service-card:nth-child(even) {
    grid-template-columns: 1.1fr 0.9fr;
}

.offer-service-card:nth-child(even) img {
    order: 2;
}

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

.offer-service-content {
    padding: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-service-content span {
    color: rgba(200,164,107,0.55);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.offer-service-content h3 {
    font-size: 48px;
    font-weight: 300;
    margin: 0 0 22px;
}

.offer-service-content p {
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.offer-service-content a {
    color: #c8a46b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* OFFER PAGE MOBILE */

@media (max-width: 1100px) {
    .offer-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 90px 40px 40px;
    }

    .offer-service-card,
    .offer-service-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .offer-service-card:nth-child(even) img {
        order: 0;
    }

    .offer-service-content {
        padding: 50px;
    }
}

@media (max-width: 760px) {
    .offer-intro {
        padding: 70px 24px 30px;
    }

    .offer-intro h2 {
        font-size: 38px;
    }

    .offer-intro > p {
        font-size: 16px;
    }

    .offer-services {
        padding: 30px 24px 90px;
        gap: 26px;
    }

    .offer-service-card img {
        height: 280px;
    }

    .offer-service-content {
        padding: 34px 26px;
    }

    .offer-service-content h3 {
        font-size: 34px;
    }

    .offer-service-content p {
        font-size: 15px;
    }
}


/* GIFT PAGE */

.gift-page-luxury {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 70px 90px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.gift-page-card {
    height: 340px;

    background:
        linear-gradient(
            135deg,
            #d8b579,
            #8f652c
        );

    border-radius: 30px;

    padding: 18px;

    transform: rotate(-4deg);

    box-shadow:
        0 35px 90px rgba(200,164,107,0.28);
}

.gift-page-card-inner {
    height: 100%;

    border-radius: 22px;

    border:
        1px solid rgba(5,5,5,0.18);

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,0.34),
            rgba(255,255,255,0.06)
        );

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 44px;

    color: #050505;
}

.gift-page-card-inner p {
    letter-spacing: 4px;
    font-size: 14px;
}

.gift-page-card-inner h2 {
    font-size: 56px;
    margin: 18px 0;
}

.gift-page-content h2 {
    font-size: 58px;
    line-height: 1.12;
    font-weight: 300;
}

.gift-page-content p {
    color: #d8d8d8;
    line-height: 1.9;
}

.gift-page-content ul {
    list-style: none;
    padding: 0;
    margin: 34px 0 40px;
}

.gift-page-content li {
    color: #d8d8d8;
    margin-bottom: 16px;
    padding-left: 34px;
    position: relative;
}

.gift-page-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c8a46b;
}

.gift-options-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px 130px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 34px;
}

.gift-option-card {
    background:
        linear-gradient(180deg, #111111, #070707);

    border:
        1px solid rgba(200,164,107,0.24);

    border-radius: 26px;

    padding: 46px;
}

.gift-option-card h3 {
    color: #c8a46b;
    font-size: 34px;
    margin-bottom: 18px;
}

.gift-option-card p {
    color: #d8d8d8;
    line-height: 1.8;
}

/* GIFT PAGE MOBILE */

@media (max-width: 1100px) {
    .gift-page-luxury {
        grid-template-columns: 1fr;
        padding: 90px 40px 70px;
        gap: 60px;
    }

    .gift-options-section {
        padding: 0 40px 100px;
    }
}

@media (max-width: 760px) {
    .gift-page-luxury {
        padding: 70px 24px 60px;
    }

    .gift-page-card {
        height: 260px;
        transform: rotate(0deg);
    }

    .gift-page-card-inner {
        padding: 30px;
    }

    .gift-page-card-inner h2 {
        font-size: 38px;
    }

    .gift-page-content h2 {
        font-size: 38px;
    }

    .gift-options-section {
        grid-template-columns: 1fr;
        padding: 0 24px 90px;
    }

    .gift-option-card {
        padding: 34px 28px;
    }

    .gift-option-card h3 {
        font-size: 30px;
    }
}

/* CONTACT FORM 7 */

.wpcf7 form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.wpcf7 input,
.wpcf7 textarea {
    width: 100%;

    background: #111111;

    border:
        1px solid rgba(200,164,107,0.14);

    border-radius: 14px;

    padding: 18px;

    color: #ffffff;

    font-size: 16px;

    outline: none;

    box-sizing: border-box;
}

.wpcf7 textarea {
    min-height: 180px;
    resize: vertical;
}

.wpcf7-submit {
    background:
        linear-gradient(
            135deg,
            #d5b178,
            #b88b47
        ) !important;

    color: #050505 !important;

    border: none !important;

    border-radius: 14px !important;

    padding: 18px !important;

    font-size: 15px !important;

    letter-spacing: 1px;

    text-transform: uppercase;

    cursor: pointer;

    transition: 0.35s ease;
}

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

.map-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 28px;
    filter: grayscale(1) brightness(0.85);
}

/* ABOUT PAGE V2 */

.about-hero-v2 {
    min-height: 760px;
    padding: 160px 70px 70px;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
}

.about-hero-text h1 {
    font-size: 72px;
    line-height: 1.02;
    font-weight: 300;
    margin: 0 0 30px;
}

.about-hero-text h1 span {
    color: #c8a46b;
}

.about-hero-text p {
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.85;
    max-width: 620px;
    margin-bottom: 38px;
}

.about-hero-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 0 0 0 120px;
    border: 1px solid rgba(200,164,107,0.2);
    box-shadow: 0 35px 90px rgba(0,0,0,0.45);
}

.about-trust-box {
    max-width: 1400px;
    margin: -20px auto 80px;
    padding: 44px 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
    background: linear-gradient(180deg, #101010, #070707);
    border: 1px solid rgba(200,164,107,0.22);
    border-radius: 24px;
}

.about-trust-box div {
    text-align: center;
    border-right: 1px solid rgba(200,164,107,0.14);
    padding: 0 24px;
}

.about-trust-box div:last-child {
    border-right: none;
}

.about-trust-box span {
    color: #c8a46b;
    font-size: 42px;
    display: block;
    margin-bottom: 18px;
}

.about-trust-box h3 {
    color: #c8a46b;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 15px;
}

.about-trust-box p {
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.7;
}

.studio-section-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 70px 90px;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.studio-text-v2 h2 {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 300;
    margin: 0 0 28px;
}

.studio-text-v2 > p {
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.9;
}

.studio-icons-v2 {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.studio-icons-v2 span {
    color: #c8a46b;
    font-size: 34px;
}

.studio-icons-v2 h4 {
    color: #c8a46b;
    font-size: 14px;
    margin: 16px 0 10px;
}

.studio-icons-v2 p {
    color: #d8d8d8;
    font-size: 12px;
    line-height: 1.6;
}

.studio-gallery-v2 {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 22px;
}

.studio-gallery-v2 img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(200,164,107,0.22);
}

.studio-large-img {
    height: 480px;
}

.studio-gallery-v2 > div {
    display: grid;
    gap: 22px;
}

.studio-gallery-v2 > div img {
    height: 229px;
}

.team-section-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 70px 90px;
    border-top: 1px solid rgba(200,164,107,0.18);
}

.team-section-v2 .section-heading h2 span {
    color: #c8a46b;
}

.team-row-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.team-profile-v2 {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 34px;
    align-items: center;
}

.team-profile-v2 img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid rgba(200,164,107,0.3);
}

.team-profile-v2 h3 {
    font-size: 40px;
    margin: 0 0 6px;
}

.team-role {
    color: #c8a46b !important;
    margin-bottom: 22px !important;
}

.team-profile-v2 p {
    color: #d8d8d8;
    line-height: 1.75;
}

.team-profile-v2 ul {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.team-profile-v2 li {
    color: #d8d8d8;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.team-profile-v2 li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c8a46b;
}

.about-cta-v2 {
    max-width: 1400px;
    margin: 0 auto 70px;
    padding: 40px 60px;
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta-v2 span {
    color: #c8a46b;
    font-size: 48px;
}

.about-cta-v2 h2 {
    font-size: 34px;
    margin: 0 0 8px;
    font-weight: 300;
}

.about-cta-v2 p {
    color: #d8d8d8;
    margin: 0;
}

.about-info-strip-v2 {
    max-width: 1400px;
    margin: 0 auto 70px;
    padding: 0 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px;
}

.about-info-strip-v2 div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-info-strip-v2 span {
    color: #c8a46b;
    font-size: 40px;
}

.about-info-strip-v2 h4 {
    color: #c8a46b;
    margin: 0;
}

.about-info-strip-v2 p {
    color: #d8d8d8;
    line-height: 1.7;
    margin: 0;
}

/* ABOUT V2 MOBILE */

@media (max-width: 1200px) {
    .about-hero-v2 {
        grid-template-columns: 1fr;
        padding: 150px 40px 60px;
    }

    .about-hero-image img {
        height: 480px;
        border-radius: 28px;
    }

    .about-trust-box {
        margin: 0 40px 70px;
        grid-template-columns: repeat(2, 1fr);
    }

    .about-trust-box div:nth-child(2) {
        border-right: none;
    }

    .studio-section-v2 {
        grid-template-columns: 1fr;
        padding: 40px 40px 80px;
    }

    .team-row-v2 {
        grid-template-columns: 1fr;
    }

    .about-info-strip-v2 {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px;
    }
}

@media (max-width: 760px) {
    .about-hero-v2 {
        padding: 130px 24px 50px;
        gap: 40px;
    }

    .about-hero-text h1 {
        font-size: 44px;
    }

    .about-hero-image img {
        height: 340px;
    }

    .about-trust-box {
        margin: 0 24px 60px;
        padding: 34px 24px;
        grid-template-columns: 1fr;
    }

    .about-trust-box div {
        border-right: none;
        border-bottom: 1px solid rgba(200,164,107,0.14);
        padding: 0 0 28px;
    }

    .about-trust-box div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .studio-section-v2 {
        padding: 30px 24px 70px;
        gap: 44px;
    }

    .studio-text-v2 h2 {
        font-size: 38px;
    }

    .studio-icons-v2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .studio-gallery-v2 {
        grid-template-columns: 1fr;
    }

    .studio-large-img,
    .studio-gallery-v2 > div img {
        height: 280px;
    }

    .team-section-v2 {
        padding: 30px 24px 70px;
    }

    .team-profile-v2 {
        grid-template-columns: 1fr;
    }

    .team-profile-v2 img {
        height: 340px;
    }

    .about-cta-v2 {
        margin: 0 24px 60px;
        padding: 34px 26px;
        flex-direction: column;
        align-items: flex-start;
    }

    .about-info-strip-v2 {
        grid-template-columns: 1fr;
        padding: 0 24px;
        margin-bottom: 60px;
    }
}

/* CONTACT PAGE V2 */

.contact-hero-v2 {
    max-width: 1500px;
    margin: 0 auto;
    padding: 150px 70px 50px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-hero-text h1 {
    font-size: 68px;
    line-height: 1.04;
    font-weight: 300;
    margin: 0 0 28px;
}

.contact-hero-text h1 span {
    color: #c8a46b;
}

.contact-hero-text p {
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.8;
    max-width: 560px;
}

.contact-hero-actions {
    display: flex;
    gap: 18px;
    margin-top: 34px;
}

.contact-hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 0 0 0 120px;
    border: 1px solid rgba(200,164,107,0.2);
}

.contact-info-strip-v2 {
    max-width: 1400px;
    margin: 0 auto 34px;
    padding: 34px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    background: linear-gradient(180deg, #101010, #070707);
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 22px;
}

.contact-info-strip-v2 div {
    border-right: 1px solid rgba(200,164,107,0.14);
    padding-right: 24px;
}

.contact-info-strip-v2 div:last-child {
    border-right: none;
}

.contact-info-strip-v2 span {
    color: #c8a46b;
    font-size: 34px;
}

.contact-info-strip-v2 h4 {
    color: #c8a46b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin: 14px 0 10px;
}

.contact-info-strip-v2 p {
    color: #d8d8d8;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.contact-main-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px 34px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
}

.contact-form-card-v2,
.whatsapp-card-v2,
.map-box-v2 {
    background: linear-gradient(180deg, #101010, #070707);
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 24px;
    padding: 40px;
}

.contact-form-card-v2 h2 {
    font-size: 42px;
    font-weight: 300;
    margin: 0 0 30px;
}

.contact-side-v2 {
    display: grid;
    gap: 34px;
}

.whatsapp-card-v2 {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: start;
}

.whatsapp-card-v2 > span {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1px solid rgba(200,164,107,0.35);
    color: #c8a46b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.whatsapp-card-v2 h3 {
    font-size: 30px;
    margin: 0 0 12px;
}

.whatsapp-card-v2 p {
    color: #d8d8d8;
    line-height: 1.75;
}

.map-box-v2 .map-card {
    height: 340px;
    margin-top: 22px;
}

.parking-v2 {
    max-width: 1400px;
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: linear-gradient(180deg, #101010, #070707);
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 24px;
    overflow: hidden;
}

.parking-text-v2 {
    padding: 42px;
    display: flex;
    gap: 24px;
    align-items: center;
}

.parking-text-v2 span {
    font-size: 42px;
}

.parking-text-v2 h3 {
    color: #c8a46b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px;
}

.parking-text-v2 p {
    color: #d8d8d8;
    line-height: 1.8;
    margin: 0;
}

.parking-v2 img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.contact-final-cta-v2 {
    max-width: 1400px;
    margin: 0 auto 90px;
    padding: 38px 54px;
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-final-cta-v2 div {
    display: flex;
    align-items: center;
    gap: 28px;
}

.contact-final-cta-v2 span {
    color: #c8a46b;
    font-size: 48px;
}

.contact-final-cta-v2 h2 {
    font-size: 30px;
    font-weight: 300;
    margin: 0 0 6px;
}

.contact-final-cta-v2 p {
    color: #d8d8d8;
    margin: 0;
}


/* CONTACT V2 MOBILE */

@media (max-width: 1100px) {
    .contact-hero-v2 {
        grid-template-columns: 1fr;
        padding: 150px 40px 50px;
    }

    .contact-hero-image img {
        height: 460px;
        border-radius: 28px;
    }

    .contact-info-strip-v2 {
        margin: 0 40px 34px;
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-info-strip-v2 div:nth-child(2) {
        border-right: none;
    }

    .contact-main-v2 {
        grid-template-columns: 1fr;
        padding: 0 40px 34px;
    }

    .parking-v2 {
        margin: 0 40px 34px;
        grid-template-columns: 1fr;
    }

    .contact-final-cta-v2 {
        margin: 0 40px 90px;
    }
}

@media (max-width: 760px) {
    .contact-hero-v2 {
        padding: 130px 24px 40px;
        gap: 40px;
    }

    .contact-hero-text h1 {
        font-size: 44px;
    }

    .contact-hero-actions {
        flex-direction: column;
    }

    .contact-hero-image img {
        height: 320px;
    }

    .contact-info-strip-v2 {
        margin: 0 24px 30px;
        padding: 30px 26px;
        grid-template-columns: 1fr;
    }

    .contact-info-strip-v2 div {
        border-right: none;
        border-bottom: 1px solid rgba(200,164,107,0.14);
        padding: 0 0 24px;
    }

    .contact-info-strip-v2 div:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .contact-main-v2 {
        padding: 0 24px 30px;
    }

    .contact-form-card-v2,
    .whatsapp-card-v2,
    .map-box-v2 {
        padding: 32px 24px;
    }

    .contact-form-card-v2 h2 {
        font-size: 34px;
    }

    .whatsapp-card-v2 {
        grid-template-columns: 1fr;
    }

    .map-box-v2 .map-card {
        height: 300px;
    }

    .parking-v2 {
        margin: 0 24px 30px;
    }

    .parking-text-v2 {
        padding: 32px 24px;
        align-items: flex-start;
    }

    .parking-v2 img {
        height: 220px;
    }

    .contact-final-cta-v2 {
        margin: 0 24px 80px;
        padding: 34px 26px;
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
    }

    .contact-final-cta-v2 div {
        align-items: flex-start;
    }
}


/* BLOG PAGE V2 */

.blog-hero-v2 {
    max-width: 1500px;
    margin: 0 auto;
    padding: 150px 70px 50px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.blog-hero-text h1 {
    font-size: 72px;
    line-height: 1.02;
    font-weight: 300;
    margin: 0 0 28px;
}

.blog-hero-text h1 span {
    color: #c8a46b;
}

.blog-hero-text p {
    color: #d8d8d8;
    font-size: 17px;
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 34px;
}

.blog-hero-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 0 0 0 120px;
    border: 1px solid rgba(200,164,107,0.2);
}

.blog-categories-v2 {
    max-width: 1400px;
    margin: 0 auto 34px;
    padding: 22px 28px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    background: linear-gradient(180deg, #101010, #070707);
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 20px;
}

.blog-categories-v2 a {
    color: #f2f2f2;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 16px 14px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.blog-categories-v2 a.active,
.blog-categories-v2 a:hover {
    background: linear-gradient(135deg, #d5b178, #b88b47);
    color: #050505;
}

.blog-grid-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px 70px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.blog-card-v2 {
    background: linear-gradient(180deg, #101010, #070707);
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s ease;
}

.blog-card-v2:hover {
    transform: translateY(-8px);
    border-color: rgba(200,164,107,0.45);
}

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

.blog-card-v2 div {
    padding: 30px;
}

.blog-card-v2 span {
    color: #c8a46b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-v2 h3 {
    font-size: 30px;
    line-height: 1.15;
    font-weight: 300;
    margin: 16px 0;
}

.blog-card-v2 p {
    color: #d8d8d8;
    line-height: 1.75;
    margin-bottom: 24px;
}

.blog-card-v2 a {
    color: #c8a46b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 600;
}

.newsletter-v2 {
    max-width: 1400px;
    margin: 0 auto 90px;
    padding: 42px 54px;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 24px;
    background: linear-gradient(180deg, #101010, #070707);
}

.newsletter-v2 > div {
    display: flex;
    align-items: center;
    gap: 30px;
}

.newsletter-v2 span {
    color: #c8a46b;
    font-size: 58px;
}

.newsletter-v2 h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 300;
    margin: 0;
}

.newsletter-v2 form {
    display: grid;
    grid-template-columns: 1fr auto;
}

.newsletter-v2 input {
    background: #0b0b0b;
    border: 1px solid rgba(200,164,107,0.24);
    color: #fff;
    padding: 18px;
    border-radius: 12px 0 0 12px;
    outline: none;
}

.newsletter-v2 button {
    border: none;
    padding: 18px 30px;
    border-radius: 0 12px 12px 0;
    background: linear-gradient(135deg, #d5b178, #b88b47);
    color: #050505;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

/* BLOG V2 MOBILE */

@media (max-width: 1100px) {
    .blog-hero-v2 {
        grid-template-columns: 1fr;
        padding: 150px 40px 50px;
    }

    .blog-hero-image img {
        height: 460px;
        border-radius: 28px;
    }

    .blog-categories-v2 {
        margin: 0 40px 34px;
        grid-template-columns: repeat(3, 1fr);
    }

    .blog-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 40px 70px;
    }

    .newsletter-v2 {
        margin: 0 40px 90px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .blog-hero-v2 {
        padding: 130px 24px 40px;
        gap: 40px;
    }

    .blog-hero-text h1 {
        font-size: 44px;
    }

    .blog-hero-image img {
        height: 320px;
    }

    .blog-categories-v2 {
        margin: 0 24px 30px;
        grid-template-columns: 1fr 1fr;
        padding: 18px;
    }

    .blog-categories-v2 a {
        font-size: 12px;
        padding: 14px 10px;
    }

    .blog-grid-v2 {
        grid-template-columns: 1fr;
        padding: 0 24px 60px;
    }

    .blog-card-v2 img {
        height: 240px;
    }

    .blog-card-v2 h3 {
        font-size: 28px;
    }

    .newsletter-v2 {
        margin: 0 24px 80px;
        padding: 34px 26px;
    }

    .newsletter-v2 > div {
        align-items: flex-start;
    }

    .newsletter-v2 h2 {
        font-size: 26px;
    }

    .newsletter-v2 form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .newsletter-v2 input,
    .newsletter-v2 button {
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
}

/* SINGLE BLOG POST */

.single-post-page {
    padding: 160px 24px 100px;
}

.single-post-container {
    max-width: 960px;
    margin: 0 auto;
}

.single-post-container h1 {
    font-size: 68px;
    line-height: 1.05;
    font-weight: 300;
    margin: 24px 0 16px;
}

.single-post-meta {
    color: #c8a46b;
    margin-bottom: 42px;
    letter-spacing: 1px;
}

.single-post-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 26px;
    border: 1px solid rgba(200,164,107,0.24);
    margin-bottom: 54px;
}

.single-post-content {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.9;
}

.single-post-content h2 {
    color: #ffffff;
    font-size: 42px;
    font-weight: 300;
    margin-top: 54px;
}

.single-post-content h3 {
    color: #c8a46b;
    font-size: 30px;
    margin-top: 42px;
}

.single-post-content p {
    margin-bottom: 26px;
}

.single-post-content a {
    color: #c8a46b;
}

.back-to-blog {
    display: inline-block;
    margin-top: 60px;
    color: #c8a46b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-message {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.6;
}

.newsletter-message.success {
    color: #c8a46b;
}

.newsletter-message.error {
    color: #ff8a8a;
}

/* VOUCHER ORDER PAGE */

.voucher-buy-hero {
    padding: 180px 70px 70px;
    text-align: center;
}

.voucher-buy-content {
    max-width: 850px;
    margin: 0 auto;
}

.voucher-buy-content h1 {
    font-size: 68px;
    font-weight: 300;
    margin: 0 0 24px;
}

.voucher-buy-content p {
    color: #d8d8d8;
    font-size: 18px;
    line-height: 1.8;
}

.voucher-order-section {
    max-width: 900px;
    margin: 0 auto 120px;
    padding: 0 24px;
}

.voucher-order-form {
    background: linear-gradient(180deg, #101010, #070707);
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 28px;
    padding: 46px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.voucher-order-form h2 {
    font-size: 40px;
    font-weight: 300;
    margin: 0 0 20px;
}

.voucher-order-form label {
    color: #c8a46b;
    font-size: 14px;
    letter-spacing: 1px;
}

.voucher-order-form input,
.voucher-order-form select,
.voucher-order-form textarea {
    background: #111111;
    border: 1px solid rgba(200,164,107,0.16);
    border-radius: 14px;
    padding: 17px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.voucher-order-form textarea {
    min-height: 130px;
    resize: vertical;
}

.voucher-order-form button {
    margin-top: 20px;
    background: linear-gradient(135deg, #d5b178, #b88b47);
    color: #050505;
    border: none;
    border-radius: 14px;
    padding: 18px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.voucher-message {
    margin: 34px auto 0;
    max-width: 760px;
    padding: 18px 22px;
    border-radius: 14px;
    line-height: 1.7;
}

.voucher-message.success {
    background: rgba(200,164,107,0.1);
    border: 1px solid rgba(200,164,107,0.28);
    color: #c8a46b;
}

.voucher-message.error {
    background: rgba(255,0,0,0.08);
    border: 1px solid rgba(255,0,0,0.24);
    color: #ff8a8a;
}

.voucher-payment-note {
    color: #c8a46b;
    font-size: 14px;
    line-height: 1.6;
    margin: -8px 0 10px;
}

.custom-amount-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* WOOCOMMERCE RELAX POINT */

.woocommerce div.product {
    max-width: 1400px;
    margin: 0 auto;
    padding: 170px 70px 100px;
    color: #ffffff;
}

.woocommerce div.product .product_title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 20px;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #c8a46b !important;
    font-size: 42px !important;
    margin-bottom: 30px !important;
}

.woocommerce-product-gallery img {
    border-radius: 28px;
    border: 1px solid rgba(200,164,107,0.24);
}

.rp-voucher-fields {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.rp-voucher-fields label {
    color: #c8a46b;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.rp-voucher-fields input,
.rp-voucher-fields select,
.rp-voucher-fields textarea {
    width: 100%;
    background: #111111;
    border: 1px solid rgba(200,164,107,0.2);
    border-radius: 14px;
    padding: 16px;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.rp-voucher-fields textarea {
    min-height: 120px;
    resize: vertical;
}

.woocommerce div.product form.cart {
    margin-top: 30px;
}

.woocommerce .quantity .qty {
    background: #111111;
    border: 1px solid rgba(200,164,107,0.2);
    color: #ffffff;
    border-radius: 12px;
    height: 52px;
}

.woocommerce button.button.alt {
    background: linear-gradient(135deg, #d5b178, #b88b47) !important;
    color: #050505 !important;
    border-radius: 14px !important;
    padding: 18px 34px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px !important;
    transition: 0.3s ease;
}

.woocommerce button.button.alt:hover {
    opacity: 0.92;
}

.woocommerce-tabs {
    margin-top: 70px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    border: none;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: #111111;
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 14px 14px 0 0;
    margin-right: 10px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #ffffff;
}

.woocommerce div.product .woocommerce-tabs .panel {
    background: linear-gradient(180deg, #101010, #070707);
    border: 1px solid rgba(200,164,107,0.24);
    border-radius: 0 20px 20px 20px;
    padding: 40px;
}

.product_meta {
    margin-top: 30px;
    color: #d8d8d8;
}

.product_meta a {
    color: #c8a46b;
}

.related.products {
    margin-top: 100px;
}

.related.products h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 40px;
}

.product_meta {
    display: none;
}

.rp-voucher-intro {
    margin-bottom: 16px;
}

.rp-voucher-intro h2 {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
    margin: 8px 0 14px;
}

.rp-voucher-intro p {
    color: #d8d8d8;
    line-height: 1.7;
}

/* FIX SINGLE PRODUCT LAYOUT */

body.single-product .single-post-page,
body.single-product .single-post-container {
    max-width: none;
    padding: 0;
    margin: 0;
}

body.single-product .back-to-blog,
body.single-product .single-post-meta,
body.single-product .single-post-container > .section-subtitle,
body.single-product .single-post-container > h1 {
    display: none !important;
}

body.single-product .single-post-content {
    max-width: none;
    padding: 0;
    margin: 0;
}

body.single-product .woocommerce div.product {
    min-height: calc(100vh - 260px);
}

body.single-product footer,
body.single-product .site-footer {
    clear: both;
    margin-top: 80px;
}

.rp-page-default {
    padding: 160px 24px 100px;
    min-height: 70vh;
}

.rp-page-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   WOOCOMMERCE
========================= */

.woocommerce {
    color: #fff;
}

.woocommerce-cart,
.woocommerce-checkout {
    background: #050505;
}

.woocommerce table.shop_table {
    border: 1px solid rgba(201, 160, 74, 0.15);
    background: #0b0b0b;
    border-radius: 24px;
    overflow: hidden;
}

.woocommerce table.shop_table th {
    color: #c9a04a;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 22px;
    border-color: rgba(201,160,74,.1);
}

.woocommerce table.shop_table td {
    color: #fff;
    padding: 24px 22px;
    border-color: rgba(201,160,74,.08);
}

.woocommerce a {
    color: #d4aa57;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout-review-order {
    background: #0b0b0b;
    border: 1px solid rgba(201,160,74,.15);
    border-radius: 24px;
    padding: 30px;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #payment #place_order {
    background: linear-gradient(135deg,#d4aa57,#b8862f);
    color: #111 !important;
    border-radius: 14px;
    padding: 16px 28px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .3s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #payment #place_order:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,170,87,.25);
}

.woocommerce input,
.woocommerce textarea,
.woocommerce select {
    background: #111 !important;
    border: 1px solid rgba(201,160,74,.15) !important;
    color: #fff !important;
    border-radius: 14px !important;
    min-height: 54px;
    padding: 14px 18px !important;
}

.woocommerce textarea {
    min-height: 120px;
}

.woocommerce-checkout #payment {
    background: #0b0b0b;
    border-radius: 24px;
    border: 1px solid rgba(201,160,74,.15);
}

.woocommerce-info,
.woocommerce-message {
    background: #111;
    border-top: 2px solid #d4aa57;
    color: #fff;
}

.woocommerce-remove-coupon,
.product-remove a {
    color: #ff5f5f !important;
}

.woocommerce ul#shipping_method li {
    color: #fff;
}

/* MOBILE */

@media(max-width:768px){

    .woocommerce table.shop_table td,
    .woocommerce table.shop_table th {
        padding: 14px;
    }

    .woocommerce-cart .cart-collaterals .cart_totals,
    .woocommerce-checkout-review-order {
        padding: 20px;
    }

}

.woocommerce-cart .coupon,
.woocommerce-checkout .woocommerce-form-coupon-toggle {
    display: none !important;
}

.woocommerce-cart .cart-collaterals {
    margin-top: 40px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
    float: none;
    width: 100%;
    max-width: 620px;
    margin-left: auto;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    width: 100%;
    text-align: center;
    display: block;
}

.woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: start;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review,
.woocommerce-checkout #order_review_heading {
    background: #0b0b0b;
    border: 1px solid rgba(201,160,74,.15);
    border-radius: 24px;
    padding: 32px;
}

.woocommerce-checkout #order_review_heading {
    margin-bottom: 18px;
}

.woocommerce-checkout h3 {
    color: #c9a04a;
    font-size: 22px;
    letter-spacing: 1px;
}

.woocommerce-checkout label {
    color: #d4aa57;
    font-size: 14px;
    margin-bottom: 8px;
}

.woocommerce-checkout .form-row {
    margin-bottom: 18px;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.woocommerce-checkout #billing_email_field,
.woocommerce-checkout #billing_phone_field {
    grid-column: span 2;
}

.woocommerce-checkout-review-order-table {
    margin-bottom: 28px !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid rgba(201,160,74,.15);
}

.woocommerce-checkout #payment div.payment_box {
    background: #111;
    color: #fff;
    border-radius: 16px;
}

.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: #111;
}

@media(max-width:900px) {
    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
        grid-template-columns: 1fr;
    }

    .woocommerce-checkout #billing_email_field,
    .woocommerce-checkout #billing_phone_field {
        grid-column: span 1;
    }
}

/* CHECKOUT FIX */

.woocommerce-checkout form.checkout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px) !important;
    gap: 42px !important;
    align-items: start !important;
}

.woocommerce-checkout #customer_details {
    display: block !important;
}

.woocommerce-checkout .col2-set,
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    float: none !important;
    width: 100% !important;
}

.woocommerce-checkout .col2-set {
    display: block !important;
}

.woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
}

.woocommerce-checkout #billing_phone_field,
.woocommerce-checkout #billing_email_field {
    grid-column: span 2 !important;
}

.woocommerce-checkout .woocommerce-additional-fields {
    margin-top: 28px !important;
}

.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout .woocommerce-additional-fields__field-wrapper {
    display: none !important;
}

.woocommerce-checkout #order_review_heading {
    grid-column: 2 !important;
    margin: 0 0 18px !important;
}

.woocommerce-checkout #order_review {
    grid-column: 2 !important;
}

.woocommerce-checkout #customer_details {
    grid-column: 1 !important;
    grid-row: 1 / span 2 !important;
}

@media(max-width:900px) {
    .woocommerce-checkout form.checkout {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-checkout #customer_details,
    .woocommerce-checkout #order_review_heading,
    .woocommerce-checkout #order_review {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
        grid-template-columns: 1fr !important;
    }

    .woocommerce-checkout #billing_phone_field,
    .woocommerce-checkout #billing_email_field {
        grid-column: span 1 !important;
    }
}

.rp-booking-page {
    background: #030303;
    color: #fff;
    padding: 140px 20px 100px;
}

.rp-booking-hero {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.rp-booking-hero p {
    color: #d4a84f;
    letter-spacing: 6px;
    font-size: 14px;
    margin-bottom: 20px;
}

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

.rp-booking-hero span {
    font-size: 20px;
    color: #f5f5f5;
}

.rp-booking-card {
    max-width: 900px;
    margin: 0 auto;
    background: #0b0b0b;
    border: 1px solid rgba(212,168,79,0.28);
    border-radius: 28px;
    padding: 45px;
}

.rp-booking-card h2 {
    color: #d4a84f;
    font-size: 28px;
    margin-bottom: 35px;
}

.rp-booking-card form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.rp-booking-card label {
    color: #d4a84f;
    font-size: 15px;
    margin-bottom: 8px;
    display: block;
}

.rp-booking-card input,
.rp-booking-card select {
    width: 100%;
    height: 56px;
    background: #111;
    color: #fff;
    border: 1px solid rgba(212,168,79,0.25);
    border-radius: 14px;
    padding: 0 18px;
    font-size: 16px;
}

.rp-booking-card button,
.rp-booking-card input[type="submit"] {
    grid-column: 1 / -1;
    height: 58px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #d4a84f, #f0d27a);
    color: #000;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .rp-booking-hero h1 {
        font-size: 42px;
    }

    .rp-booking-card {
        padding: 28px;
    }

    .rp-booking-card form {
        grid-template-columns: 1fr;
    }
}

.rp-booking-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
}

.rp-booking-card {
    background: #080808;
    border: 1px solid rgba(212, 165, 74, 0.25);
    border-radius: 28px;
    padding: 48px;
}

.rp-booking-card h2 {
    color: #fff;
    font-size: 34px;
    margin-bottom: 32px;
}

.rp-booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.rp-booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rp-booking-field label {
    color: #d4a54a;
    font-size: 14px;
    letter-spacing: 1px;
}

.rp-booking-field input,
.rp-booking-field select {
    height: 56px;
    background: #111;
    border: 1px solid rgba(212, 165, 74, 0.25);
    border-radius: 14px;
    color: #fff;
    padding: 0 16px;
    font-size: 15px;
}

.rp-booking-submit {
    grid-column: span 2;
    background: #d4a54a;
    color: #000;
    border: none;
    border-radius: 999px;
    padding: 18px 36px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .rp-booking-form {
        grid-template-columns: 1fr;
    }

    .rp-booking-submit {
        grid-column: span 1;
    }
}

.single-service-page {
  background: #050505;
  color: #fff;
}

.single-service-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  overflow: hidden;
}

.headspa-hero {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.8)),
    url('/wp-content/themes/relaxpoint-theme/assets/images/service-headspa.jpg');
  background-size: cover;
  background-position: center;
}

.single-service-hero-content {
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.single-service-label {
  color: #c9a45c;
  letter-spacing: 5px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}

.single-service-hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  font-family: Georgia, serif;
  font-weight: 400;
  margin-bottom: 24px;
}

.single-service-hero p {
  font-size: 20px;
  line-height: 1.7;
  color: #e6e6e6;
  max-width: 720px;
  margin: 0 auto 34px;
}

.single-service-btn {
  display: inline-block;
  padding: 15px 34px;
  background: #c9a45c;
  color: #050505;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: .3s ease;
}

.single-service-btn:hover {
  background: #fff;
  transform: translateY(-2px);
}

.single-service-content {
  padding: 90px 20px;
}

.single-service-container {
  max-width: 1180px;
  margin: 0 auto;
}

.single-service-intro {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.single-service-intro h2,
.single-service-benefits h2,
.single-service-cta h2 {
  font-family: Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  margin-bottom: 22px;
}

.single-service-intro p {
  color: #d5d5d5;
  font-size: 18px;
  line-height: 1.8;
}

.single-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 90px;
}

.single-service-card {
  background: linear-gradient(180deg, #111, #080808);
  border: 1px solid rgba(201,164,92,.35);
  border-radius: 26px;
  padding: 36px;
}

.single-service-card span {
  color: #c9a45c;
  font-size: 14px;
  letter-spacing: 3px;
}

.single-service-card h3 {
  font-size: 24px;
  margin: 18px 0;
}

.single-service-card p {
  color: #cfcfcf;
  line-height: 1.7;
}

.single-service-benefits {
  text-align: center;
  margin-bottom: 90px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 35px;
}

.benefits-list div {
  border: 1px solid rgba(201,164,92,.35);
  border-radius: 18px;
  padding: 20px;
  color: #eee;
  background: rgba(255,255,255,.03);
}

.single-service-cta {
  text-align: center;
  background: linear-gradient(135deg, #111, #050505);
  border: 1px solid rgba(201,164,92,.45);
  border-radius: 34px;
  padding: 70px 30px;
}

.single-service-cta p {
  color: #d5d5d5;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .single-service-grid,
  .benefits-list {
    grid-template-columns: 1fr;
  }

  .single-service-hero {
    min-height: 60vh;
    padding: 90px 20px;
  }
}

.feet-hero {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.8)),
    url('/wp-content/themes/relaxpoint-theme/assets/images/service-feet.jpg');
  background-size: cover;
  background-position: center;
}

.beauty-hero {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.8)),
   url('/wp-content/themes/relaxpoint-theme/assets/images/service-beauty.jpg');
  background-size: cover;
  background-position: center;
}

.chair-hero {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.8)),
    url('/wp-content/themes/relaxpoint-theme/assets/images/service-chair.jpg');
  background-size: cover;
  background-position: center;
}

.beauty-hero {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.8)),
    url('/wp-content/themes/relaxpoint-theme/assets/images/studio-relaxpoint.jpg');

  background-size: cover;
  background-position: center;
}

/* CHECKOUT NOTICE FIX */

.woocommerce-checkout .woocommerce-NoticeGroup,
.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    margin: 0 0 28px !important;
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
    max-width: 1180px;
    margin: 0 auto 28px !important;
    background: #111 !important;
    color: #fff !important;
    border-top: 3px solid #d4aa57 !important;
    border-radius: 16px !important;
    padding: 20px 26px 20px 58px !important;
    box-sizing: border-box;
}

.woocommerce-checkout .woocommerce-error {
    border-top-color: #d9534f !important;
}

.woocommerce-checkout .woocommerce-error li {
    color: #fff !important;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border: 1px solid #c9a45c;
    border-radius: 12px;
    color: #c9a45c;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    transition: all .3s ease;
    background: transparent;
}

.btn-primary:hover {
    background: #c9a45c;
    color: #000;
}

.rp-intro-body {
    margin: 0;
    background: #000;
    overflow: hidden;
}

.rp-intro-page {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.rp-intro-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rp-intro-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.38);
    z-index: 1;
}

.rp-intro-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.rp-intro-content h1 {
    color: #c8a46b;
    font-size: 82px;
    font-weight: 300;
    margin: 0 0 18px;
}

.rp-intro-content p {
    color: #fff;
    font-size: 22px;
    margin-bottom: 42px;
}

.rp-intro-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 38px;
    border: 1px solid #c8a46b;
    border-radius: 14px;
    color: #c8a46b;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.rp-intro-button:hover {
    background: #c8a46b;
    color: #050505;
}

@media(max-width:768px) {
    .rp-intro-content h1 {
        font-size: 48px;
    }

    .rp-intro-content p {
        font-size: 18px;
    }
}

.newsletter-consent {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8d8d8;
    font-size: 14px;
    margin-top: 14px;
}

.newsletter-consent input {
    width: 16px;
    height: 16px;
    accent-color: #c8a46b;
}

#newsletter-message {
    margin-top: 14px;
    color: #c8a46b;
    font-size: 15px;
}

#newsletter-message {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.5;
}

#newsletter-message.success {
    color: #c8a46b;
}

#newsletter-message.error {
    color: #ff6b6b;
}

.map-box-v2 h2 {
    font-size: 42px;
    font-weight: 300;
    margin: 12px 0 16px;
}

.map-address {
    color: #d8d8d8;
    line-height: 1.7;
    margin-bottom: 24px;
}

.map-card {
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(200,164,107,0.24);
}
