:root {
    --bg-black: #ff8c00; 
    --gold-primary: #ffffff; 
    --gold-light: #ffe0b2;
    --text-white: #ffffff; 
    --text-gray: #333333;
    --border-gold: rgba(255, 255, 255, 0.5);
    --btn-bg: #ffffff; 
}

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

body {
    font-family: 'Noto Nastaliq Urdu', 'Tajawal', sans-serif;
    /* 3D HD Aluminum Metallic Malta (Orange) Color */
    background: radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
                radial-gradient(ellipse at bottom right, rgba(0, 0, 0, 0.4) 0%, transparent 50%),
                linear-gradient(135deg, #cc4400 0%, #ff7300 20%, #ffb44d 50%, #ff7300 80%, #cc4400 100%);
    background-attachment: fixed;
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Background glowing arcs adapted for Malta background */
.gold-arc {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 80vw;
    max-width: 600px;
    height: 300px;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.top-arc {
    top: -200px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 50px 100px 20px rgba(255, 255, 255, 0.15);
}

.bottom-arc {
    bottom: -200px;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 -50px 100px 20px rgba(255, 255, 255, 0.15);
}

.container {
    width: 100%;
    max-width: 420px;
    padding: 3rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

/* Header Section */
.header {
    text-align: center;
    margin-bottom: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), inset 0 2px 5px rgba(255,255,255,0.5);
    background: #ffffff;
}

.brand-name {
    font-family: 'El Messiri', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.brand-desc {
    font-family: 'Noto Nastaliq Urdu', serif;
    color: #ffecd2;
    font-size: 1rem;
    font-weight: 600;
    line-height: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Links Section */
.links-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px; 
}

.link-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--btn-bg);
    border: 1px solid rgba(255, 255, 255, 0.8);
    /* Circle type corners requested by user */
    border-radius: 50px; 
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-gray);
    transition: all 0.3s ease;
    /* 3D button effect */
    box-shadow: 0 10px 20px rgba(150, 40, 0, 0.4), inset 0 -4px 5px rgba(0, 0, 0, 0.05);
}

.link-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(150, 40, 0, 0.5), inset 0 -4px 5px rgba(0, 0, 0, 0.05);
}

.btn-icon {
    width: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
}

.btn-text {
    flex-grow: 1;
    text-align: center;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #222222;
    line-height: 1.8;
}

.btn-arrow {
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #ff7300;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.link-btn:hover .btn-arrow {
    transform: translateX(-4px);
    opacity: 1;
}

/* Address Card Section */
.address-card {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 1);
    /* Circle type corners */
    border-radius: 30px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    /* 3D shadow */
    box-shadow: 0 10px 25px rgba(150, 40, 0, 0.4), inset 0 -4px 5px rgba(0, 0, 0, 0.05);
}

.address-icon {
    font-size: 1.8rem;
    color: #ff7300;
    margin-bottom: 5px;
}

.address-details h3 {
    font-family: 'Noto Nastaliq Urdu', serif;
    color: #ff7300;
    font-size: 1.25rem;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.8;
}

.address-details p {
    font-size: 0.85rem;
    color: #444444;
    line-height: 1.6;
    margin-bottom: 15px;
    direction: ltr; 
    font-weight: 600;
}

.map-link {
    display: inline-block;
    padding: 6px 24px;
    background: linear-gradient(135deg, #ff9b30, #e65c00);
    color: #ffffff; 
    text-decoration: none;
    border-radius: 30px; /* Circle type corners */
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.8;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.map-link i {
    margin-left: 5px;
}

.map-link:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffaf54, #ff6600);
}

/* Footer */
.footer {
    margin-top: 2rem;
    text-align: center;
    color: #ffffff;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}
