/* Styling Tokens */
:root {
    --bg-green-dark: #061c16;
    --bg-green-light: #0c3328;
    --gold-primary: #c39d45;
    --gold-light: #e9c67b;
    --gold-glow: rgba(195, 157, 69, 0.4);
    --text-white: #ffffff;
    --text-muted: #a2b4af;
    --glass-bg: rgba(12, 51, 40, 0.45);
    --glass-border: rgba(195, 157, 69, 0.25);
    --btn-hover-scale: translateY(-2px);
    --font-family: 'Cairo', sans-serif;
}

/* Reset & Base styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    background: linear-gradient(135deg, var(--bg-green-dark), var(--bg-green-light));
    color: var(--text-white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 15px;
    overflow-x: hidden;
}

/* Glassmorphism Container */
.glass-container {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    width: 100%;
    max-width: 480px;
    padding: 35px 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    text-align: center;
}

/* Header Section */
.header {
    margin-bottom: 30px;
}

.logo-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #ffffff;
    padding: 4px;
    border: 2px solid var(--gold-primary);
    box-shadow: 0 0 25px var(--gold-glow);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 4s ease-in-out infinite;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.company-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slogan {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.5px;
}

.separator {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 15px auto 0;
}

/* Links Layout */
.links-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Button Design */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.98rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    width: 100%;
    border: none;
}

/* Primary Button (Gold Accent) */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    color: var(--bg-green-light);
    box-shadow: 0 4px 15px rgba(195, 157, 69, 0.3);
}

.btn-primary:hover {
    transform: var(--btn-hover-scale);
    box-shadow: 0 8px 25px rgba(195, 157, 69, 0.5);
}

/* Secondary Button (Glassmorphic) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1.5px solid var(--glass-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    transform: var(--btn-hover-scale);
    border-color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(195, 157, 69, 0.15);
}

/* Specific Button Types */
.btn-whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.25);
}

.btn-location:hover {
    border-color: #ea4335;
    box-shadow: 0 0 15px rgba(234, 67, 53, 0.25);
}

/* SVG Icons styling */
.svg-icon {
    width: 22px;
    height: 22px;
}

.icon {
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
}

/* Accordion Layout */
.accordion-section {
    border-radius: 16px;
    border: 1.5px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-trigger:hover {
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-light);
}

.trigger-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trigger-icon {
    color: var(--gold-primary);
}

.accordion-trigger .arrow {
    font-size: 0.8rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.accordion-content.active {
    max-height: 500px;
    transition: max-height 0.4s cubic-bezier(0.5, 1, 0.22, 1);
    border-top: 1px solid var(--glass-border);
}

/* Contacts Inside Accordion */
.contacts-grid {
    list-style: none;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.phone-num {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-white);
}

.actions {
    display: flex;
    gap: 10px;
}

.act-btn {
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.act-btn:hover {
    transform: scale(1.15);
}

.act-btn.call:hover {
    background: var(--gold-primary);
    border-color: var(--gold-light);
    color: var(--bg-green-light);
}

.act-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

/* Footer & QR */
.footer {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.qr-container {
    background: #ffffff;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    display: inline-block;
    transition: transform 0.3s ease;
}

.qr-container:hover {
    transform: scale(1.05);
}

.qr-label {
    font-size: 0.75rem;
    color: var(--bg-green-light);
    font-weight: 700;
    margin-bottom: 8px;
}

.qr-image {
    display: block;
    width: 120px;
    height: 120px;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Media Queries for small viewports */
@media (max-width: 380px) {
    .glass-container {
        padding: 25px 15px;
    }
    .company-name {
        font-size: 1.5rem;
    }
    .logo-wrapper {
        width: 100px;
        height: 100px;
    }
    .btn {
        font-size: 0.9rem;
        padding: 14px 15px;
    }
}


/* Social Links styling */
.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(195, 157, 69, 0.08); /* Semi-transparent gold background for visibility */
    color: var(--gold-light); /* Golden icons */
    border: 1.5px solid var(--gold-primary); /* Gold border by default */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-btn .svg-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    display: block;
}

.social-btn:hover {
    transform: translateY(-4px) scale(1.12);
    color: var(--bg-green-light); /* Green icon on hover */
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light)); /* Solid gold background */
    border-color: var(--gold-light);
    box-shadow: 0 8px 20px var(--gold-glow);
}
