:root {
    --gold-light: #f7e7b2;
    --gold: #d5a337;
    --gold-deep: #9a671e;
    --charcoal: #090a0f;
    --card-bg: #0f1117;
    --card-border: rgba(247, 231, 178, 0.08);
    --text-muted: rgba(255, 255, 255, 0.7);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    background: radial-gradient(circle at 15% 20%, #1b1b21, #050507 60%);
    color: #fdfaf1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    perspective: 1200px;
}

.profile-card {
    width: min(480px, 100%);
    background: linear-gradient(145deg, rgba(10, 12, 19, 0.95), rgba(9, 9, 13, 0.95));
    border-radius: 28px;
    border: 1px solid var(--card-border);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
    padding: 40px 32px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform-style: preserve-3d;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    will-change: transform;
    transform: rotateX(0deg) rotateY(0deg);
}

.brand-identity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 180px;
    filter: drop-shadow(0 10px 25px rgba(213, 163, 55, 0.35));
}

.brand-logo img {
    width: 100%;
    display: block;
}

.brand-category {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--text-muted);
}

.intro-text h1 {
    margin: 0;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
}

.intro-text p {
    margin: 8px 0 0;
    font-size: 1.05rem;
    color: var(--text-muted);
}

.intro-text .highlight {
    margin-top: 12px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-light);
}

.service-highlights {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-highlights li {
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(247, 231, 178, 0.05);
    border: 1px solid rgba(247, 231, 178, 0.1);
    color: #fdf4dc;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.service-highlights li::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(247, 231, 178, 0.25), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-highlights li:hover {
    border-color: rgba(247, 231, 178, 0.35);
    transform: translateY(-3px);
}

.service-highlights li.active {
    background: rgba(247, 231, 178, 0.15);
    border-color: rgba(247, 231, 178, 0.45);
}

.service-highlights li.active::after {
    opacity: 1;
}

.service-detail {
    margin: -6px 0 8px;
    font-size: 0.95rem;
    color: var(--gold-light);
    min-height: 1.4em;
}

.location-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    border-radius: 20px;
    background: rgba(247, 231, 178, 0.08);
    border: 1px solid rgba(247, 231, 178, 0.15);
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.location-label {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.location-details {
    margin: 4px 0 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
}

.location-hint {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.location-feedback {
    font-size: 0.95rem;
    color: var(--gold-light);
    min-height: 1.2em;
}

.location-banner.copied {
    border-color: rgba(247, 231, 178, 0.6);
    background: rgba(247, 231, 178, 0.18);
    transform: translateY(-2px);
}

.cta-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(120deg, var(--gold-light), var(--gold), var(--gold-deep));
    color: #1a1207;
    border-radius: 16px;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 15px 30px rgba(213, 163, 55, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 30px 45px rgba(213, 163, 55, 0.5);
}

.cta-button.coming-soon {
    cursor: default;
    filter: grayscale(0.1);
    letter-spacing: 0.2em;
}

.cta-button.coming-soon:hover {
    transform: none;
    box-shadow: 0 15px 30px rgba(213, 163, 55, 0.4);
}

.cta-button.call-button {
    background: transparent;
    color: var(--gold-light);
    border: 1px solid rgba(247, 231, 178, 0.35);
    box-shadow: none;
}

.cta-button.call-button:hover {
    transform: translateY(-2px);
    border-color: rgba(247, 231, 178, 0.6);
    background: rgba(247, 231, 178, 0.08);
    box-shadow: 0 15px 30px rgba(213, 163, 55, 0.25);
}

.cta-button i {
    font-size: 1.4rem;
}

.cta-text {
    font-size: 0.95rem;
}

.links {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.icon-link {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    border: 1px solid rgba(247, 231, 178, 0.2);
    background: rgba(247, 231, 178, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    text-decoration: none;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.icon-link i {
    font-size: 1.5rem;
}

.icon-link:hover {
    transform: translateY(-3px);
    border-color: var(--gold);
    background: rgba(247, 231, 178, 0.15);
    color: var(--gold);
}

@media (max-width: 480px) {
    .profile-card {
        padding: 32px 24px 28px;
        border-radius: 24px;
    }

    .brand-category {
        letter-spacing: 0.2rem;
    }

    .intro-text h1 {
        font-size: 2rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
