:root {
    --primary-color: #0d1c6e;
    --primary-light: #2a3a8c;
    --accent-color: #00a1e4;
    --accent-light: #33b5ea;
    --text-dark: #1a1a2e;
    --text-gray: #5a5a6e;
    --text-light: #8a8a9e;
    --white: #ffffff;
    --bg-main: #f8f9fc;
    --whatsapp: #25D366;
    --facebook: #1877f2;
    --instagram: #e4405f;
    --tiktok: #000000;
    --youtube: #ff0000;
    --map-sm: #007bff;
    --map-gama: #28a745;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Nunito', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    background: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* App Wrapper */
.app-wrapper {
    max-width: 520px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 24px 20px;
    position: relative;
}

/* Background Decoration */
.bg-decoration {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-decoration::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 161, 228, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.bg-decoration::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 28, 110, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Header */
.main-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.logo-area {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.logo-circle {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--white) 0%, #f0f4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(13, 28, 110, 0.15);
    border: 4px solid var(--primary-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-circle::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.logo-circle:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(13, 28, 110, 0.25);
}

.logo-circle:hover::before {
    opacity: 0.2;
}

.logo-circle img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.header-text h1 {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 400;
    font-style: italic;
}

/* Content Grid */
.content-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Section Headers */
.section-header {
    margin-bottom: -16px;
}

.section-header h2 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-left: 4px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    gap: 12px;
}

.action-card {
    background: var(--white);
    border-radius: 16px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--whatsapp);
    transition: width 0.3s ease;
}

.action-card:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.2);
}

.action-card:hover::before {
    width: 8px;
}

.icon-box {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--whatsapp) 0%, #20bd5f 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.action-card:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
}

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

.card-info span {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.card-info strong {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.action-card .arrow {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.action-card:hover .arrow {
    transform: translateX(4px);
}

/* Social Row */
.social-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.social-pill {
    aspect-ratio: 1;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.6rem;
    color: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.social-pill:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.social-pill i {
    position: relative;
    z-index: 1;
}

.social-pill.instagram::before {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-pill.facebook::before {
    background: var(--facebook);
}

.social-pill.tiktok::before {
    background: var(--tiktok);
}

.social-pill.youtube::before {
    background: var(--youtube);
}

/* Locations Grid */
.locations-grid {
    display: grid;
    gap: 12px;
}

.location-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: height 0.3s ease;
}

.location-card:nth-child(1)::before {
    background: var(--map-sm);
}

.location-card:nth-child(2)::before {
    background: var(--map-gama);
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.location-card:hover::before {
    height: 6px;
}

.map-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.map-icon.sm {
    background: linear-gradient(135deg, var(--map-sm) 0%, #0056b3 100%);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.map-icon.gama {
    background: linear-gradient(135deg, var(--map-gama) 0%, #1e7e34 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.location-card:hover .map-icon {
    transform: scale(1.1);
}

.loc-info h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.loc-info p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Highlights Section */
.highlights-section {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight-banner {
    background: var(--white);
    border-radius: 18px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.highlight-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: width 0.3s ease;
}

.highlight-banner.promo::before {
    background: linear-gradient(180deg, #ff6b6b 0%, #ee5a6f 100%);
}

.highlight-banner.work::before {
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--primary-color) 100%);
}

.highlight-banner:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.highlight-banner:hover::before {
    width: 8px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.highlight-banner.promo .icon-circle {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.highlight-banner.work .icon-circle {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    box-shadow: 0 4px 12px rgba(0, 161, 228, 0.3);
}

.highlight-banner:hover .icon-circle {
    transform: scale(1.15) rotate(10deg);
}

.banner-content .text h3 {
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.banner-content .text p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.link-icon {
    font-size: 1.1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.highlight-banner:hover .link-icon {
    transform: translateX(4px);
    color: var(--accent-color);
}

/* Footer */
footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 2px solid rgba(13, 28, 110, 0.08);
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a i {
    font-size: 0.85rem;
}

.footer-links span {
    color: var(--text-light);
}

footer p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 480px) {
    .app-wrapper {
        padding: 20px 16px;
    }
    
    .header-text h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.15rem;
    }
    
    .action-card {
        padding: 16px 18px;
    }
    
    .icon-box {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }
    
    .social-row {
        gap: 10px;
    }
    
    .social-pill {
        font-size: 1.4rem;
    }
}
