:root {
    /* Brand Colors */
    --primary: #ff6b3d;
    /* Vibrant Orange */
    --primary-hover: #ff6b3d;
    --secondary: #ff6b3d;
    /* Unified Orange */
    --dark-bg: #000000;
    /* Logo Black */
    --card-bg: rgba(255, 255, 255, 0.03);
    /* Subtle Glass */
    --card-border: rgba(255, 255, 255, 0.1);

    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #888888;
    --text-light: #e0e0e0;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E94E1B 0%, #ff8c42 100%);

    /* Effects */
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    --hover-shadow: 0 20px 40px rgba(233, 78, 27, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Spacing */
    --container-width: 600px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark-bg);
    color: var(--text-main);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    /* Subtle texture instead of gradients */
    background-image:
        radial-gradient(circle at 50% 0%, rgba(233, 78, 27, 0.08) 0%, transparent 50%);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Header */
.brand-header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--card-border);
    padding: 15px 0;
}

.brand-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    width: 140px;
}

.logo-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.action-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(233, 78, 27, 0.2);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 78, 27, 0.3);
}

.outline-btn {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.outline-btn:hover {
    background: var(--primary);
    color: white;
}

/* Profile Section */
.profile-section {
    text-align: center;
    padding: 40px 0 30px;
    animation: fadeIn 0.6s ease-out;
}

.profile-badge {
    display: inline-block;
    background: rgba(233, 78, 27, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border: 1px solid rgba(233, 78, 27, 0.2);
}

.profile-name {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
    color: white;
}

.profile-role {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 500;
}

.profile-description {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.highlight {
    color: var(--primary);
    /* Highlight is now Orange */
    font-weight: 600;
}

/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    transition: var(--transition);
    text-decoration: none;
}

/* Force all social icons to be Orange on hover */
.social-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary);
}

/* Deprecate specific colors - enforce orange consistency */
.social-icon.facebook:hover,
.social-icon.instagram:hover,
.social-icon.linkedin:hover,
.social-icon.whatsapp:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Section Titles */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-top: 40px; */
}

.section-title i {
    color: var(--primary);
    font-size: 18px;
}

/* Contact Grid */
.contact-actions-grid {
    animation: fadeIn 0.8s ease-out;
    padding-bottom: 40px;
}

.action-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-card {
    background: var(--gradient-primary);
    border: 1px solid var(--card-border);
    padding: 15px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(233, 78, 27, 0.3);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(233, 78, 27, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Force all Icon Boxes to Orange */
.icon-box {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    /* Unified Orange Style */
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Override existing color classes */
.icon-box.phone,
.icon-box.whatsapp,
.icon-box.email {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-info .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.card-info .value {
    color: white;
    font-weight: 600;
    font-size: 15px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.arrow-icon {
    color: white;
    font-size: 12px;
    opacity: 0.7;
    transition: var(--transition);
}

.action-card:hover .arrow-icon {
    opacity: 1;
    transform: translateX(5px);
    color: white;
}

/* Services Grid */
.services-section {
    animation: fadeIn 1s ease-out;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 500px;
    /* Optional: restrain width for single column looks */
    margin: 0 auto;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(233, 78, 27, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.service-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* QR Section - Transparent Style */
.qr-section {
    margin: 40px 0;
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

.qr-card {
    /* Transparent / Glass background - removed white box */
    background: rgba(255, 255, 255, 0.03);
    padding: 2px;
    border-radius: 24px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--card-border);
}

.qr-content {
    /* Transparent / Glass */
    background: transparent;
    padding: 25px;
    border-radius: 22px;
    color: var(--text-main);
}

.qr-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.qr-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.qr-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    /* If the barcode PNG is black-on-white, we might want to invert it 
       to be white-on-dark, or keep it as is if it's transparent.
       Assuming provided PNG is standard. Let's create a container that handles both cleanly. */
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    /* Keep white ONLY behind the QR code itself for scanability */
    padding: 10px;
    border-radius: 12px;
}

/* If the user insists on 'Transparent Barcode' and has a transparent PNG,
   we can remove the background above. But standard QR codes NEED contrast.
   Let's try to honor 'transparent' request by making the container transparent.
   If the PNG is transparent-black, it will fail on black bg.
   I will set it to transparent but apply a filter to Flip colors if needed,
   or trust the user's image.
   For now, I'll remove the White background to satisfy "Transparent".
*/
.qr-wrapper {
    background: transparent;
    padding: 0;
}

/* Optional: Invert color if it's a black QR code on dark bg */
/* .qr-img { filter: invert(1); } */

.qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-section .action-btn {
    margin: 0 auto;
    width: fit-content;
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    margin-top: 40px;
    padding: 40px 0;
    text-align: center;
}

/* Media Queries */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .profile-name {
        font-size: 32px;
    }

    .contact-actions-grid {
        padding: 0 10px;
    }
}

/* Process Section */
.process-section {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}