:root {
    --primary-color: #862066; /* Gedik Logo Dark Pink */
    --secondary-color: #B21F8C; /* Gedik Logo Magenta */
    --accent-color: #B21F8C; 
    --text-main: #333333;
    --text-muted: #666666;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.05);
    --hover-bg: rgba(255, 255, 255, 1);
    --bg-color: #f9f7f8;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

/* Subtle background animation */
.background-animation {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(178, 31, 140, 0.05) 0%, transparent 40%),
                radial-gradient(circle, rgba(134, 32, 102, 0.03) 0%, transparent 40%);
    background-position: 0 0, 50% 50%;
    animation: drift 30s infinite linear;
    z-index: -1;
    pointer-events: none;
}

@keyframes drift {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.main-container {
    max-width: 600px;
}

/* Profile Section */
.logo-container {
    max-width: 220px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.brand-logo {
    width: 100%;
    height: auto;
    max-height: 85px;
    object-fit: contain;
}

.avatar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px auto;
}

.profile-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(134, 32, 102, 0.15);
    transition: all 0.4s ease;
}

.profile-avatar:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 12px 30px rgba(134, 32, 102, 0.25);
    border-color: var(--secondary-color);
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-color);
}

.profile-title {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 5px 15px rgba(134, 32, 102, 0.2);
}

.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 7px;
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.btn-action:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(134, 32, 102, 0.2);
}

/* Link Cards */
.link-card {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 16px 20px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(134, 32, 102, 0.05), transparent);
    transition: all 0.5s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: scale(1.02);
    background: #fff;
    color: var(--primary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(134, 32, 102, 0.1);
}

.link-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    margin-right: 15px;
    color: var(--secondary-color);
}

.link-text {
    flex-grow: 1;
    font-weight: 500;
    font-size: 1.1rem;
}

.link-arrow {
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
    opacity: 1;
    transform: translateX(5px);
    color: var(--primary-color);
}

/* Dropdown Card Styling */
.dropdown-card {
    display: block !important;
    padding: 0 !important;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dropdown-trigger {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    color: var(--text-main);
    text-decoration: none;
    user-select: none;
    width: 100%;
}

.dropdown-arrow-icon {
    font-size: 0.9rem;
    margin-left: auto;
    opacity: 0.6;
    transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown-card.is-open {
    border-color: var(--secondary-color) !important;
    background: #fff !important;
    box-shadow: 0 8px 25px rgba(134, 32, 102, 0.1) !important;
}

.dropdown-card.is-open .dropdown-trigger {
    color: var(--primary-color);
}

.dropdown-card.is-open .dropdown-arrow-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-color);
}

.dropdown-menu-content {
    position: relative;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.3s ease, padding 0.3s ease;
    background: rgba(134, 32, 102, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.dropdown-card.is-open .dropdown-menu-content {
    max-height: 500px;
    opacity: 1;
    padding: 8px 0 8px 15px;
}

/* Vertical indicator line */
.dropdown-menu-content::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), rgba(178, 31, 140, 0.1));
    opacity: 0.6;
    border-radius: 2px;
}

.dropdown-item-link {
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 25px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.25s ease;
    font-size: 1rem;
    font-weight: 500;
}

.dropdown-item-link:hover {
    color: var(--primary-color);
    padding-left: 32px;
    background: rgba(134, 32, 102, 0.04);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.dropdown-item-icon {
    font-size: 1.1rem;
    width: 32px;
    text-align: center;
    margin-right: 12px;
    color: var(--secondary-color);
    transition: transform 0.25s ease;
}

.dropdown-item-link:hover .dropdown-item-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* Accordion for Locations */
.section-title {
    font-weight: 600;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.custom-accordion {
    --bs-accordion-bg: #fff;
    --bs-accordion-border-color: transparent;
    --bs-accordion-color: var(--text-main);
    --bs-accordion-btn-color: var(--text-main);
    --bs-accordion-btn-bg: #fff;
    --bs-accordion-active-color: var(--primary-color);
    --bs-accordion-active-bg: #fff;
    gap: 15px;
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border: none;
    border-radius: 12px !important;
    overflow: hidden;
    background: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.accordion-item:hover {
    box-shadow: 0 6px 20px rgba(134, 32, 102, 0.1);
}

.accordion-button {
    font-weight: 500;
    border-radius: 12px !important;
    box-shadow: none !important;
    padding: 18px 20px;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    font-weight: 700;
    color: var(--primary-color);
    background-color: #fff;
}

.accordion-button::after {
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(21%) sepia(87%) saturate(2258%) hue-rotate(303deg) brightness(84%) contrast(100%);
}

.accordion-body {
    padding: 5px 20px 20px 20px;
    background: #fff;
    border-top: none;
}

.address-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.address-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-main);
}

.btn-copy {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.btn-copy i {
    margin-right: 4px;
}

.btn-copy:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

.address-divider {
    border-top: 1px solid rgba(0,0,0,0.05);
    margin: 15px 0;
}

.contact-details p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-details i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
    color: var(--secondary-color);
}

.map-link a {
    border-color: var(--primary-color);
    color: var(--primary-color);
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
}

.map-link a:hover {
    background: var(--primary-color);
    color: #fff;
}

.footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Custom Tabs */
.custom-tabs {
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.custom-tabs .nav-item {
    flex: 1;
    text-align: center;
}

.custom-tabs .nav-link {
    color: var(--text-muted);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px;
    width: 100%;
    border: none;
    background: transparent;
}

.custom-tabs .nav-link:hover {
    color: var(--primary-color);
}

.custom-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(134, 32, 102, 0.2);
}

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

.profile-section, .action-buttons, .custom-tabs, .tab-content {
    animation: fadeIn 0.8s ease forwards;
}

.action-buttons { animation-delay: 0.1s; }
.custom-tabs { animation-delay: 0.2s; }
.tab-content { animation-delay: 0.3s; }
