.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

.glow-orb-1 {
    top: 80px;
    left: 40px;
    width: 384px;
    height: 384px;
    background: var(--cyan-glow);
    animation-delay: 0s;
}

.glow-orb-2 {
    top: 160px;
    right: 80px;
    width: 320px;
    height: 320px;
    background: var(--purple-glow);
    animation-delay: 1s;
}

.glow-orb-3 {
    bottom: 80px;
    left: 33%;
    width: 288px;
    height: 288px;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: 2s;
}

.stars {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.star {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Main Content */
.main-content {
    margin-top: 4rem;
    position: relative;
    z-index: 10;
    flex: 1;
}

/* Top Header */
.top-header {
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    padding: 0;
    cursor: pointer;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-tree {
    width: 35px;
    height: 35px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--cyan-primary);
    letter-spacing: 1px;
}

.logo-text-sub {
    font-size: 11px;
    color: var(--cyan-primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cart-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    padding: 0;
    cursor: pointer;
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--cyan-primary);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-url {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Page Title */
.page-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

/* Subscribe Section */
.subscribe-section {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.btn-subscribe-small {
    background: var(--cyan-primary);
    color: var(--bg-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 2px 8px rgba(6, 182, 212, 0.3);
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-subscribe-small:hover {
    background: var(--cyan-light);
    transform: translateY(-1px);
}

/* About Card */
.about-card {
    background: linear-gradient(to bottom right, rgba(6, 182, 212, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.2);
    margin-bottom: 2rem;
}

.team-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.team-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 1rem;
}

.team-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.section-block {
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--cyan-primary);
}

.section-text {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact-section-card {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(6, 182, 212, 0.2);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon-sm {
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(6, 182, 212, 0.3);
    flex-shrink: 0;
}

.contact-icon-sm i {
    color: var(--cyan-primary);
    font-size: 1.25rem;
}

.contact-details {
    flex: 1;
}

.contact-phone {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-email {
    font-size: 0.875rem;
    color: #9ca3af;
}

.email-icons {
    display: flex;
    gap: 0.5rem;
}

.email-icon-btn {
    width: 40px;
    height: 40px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--cyan-primary);
    text-decoration: none;
    transition: all 0.3s;
}

.email-icon-btn:hover {
    background: rgba(6, 182, 212, 0.3);
    color: var(--cyan-light);
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding: 0.75rem 0;
    z-index: 100;
}

.bottom-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}
@media (min-width: 768px) {

    .bottom-nav {
        display: none;
    }

    .team-image {
        height: 300px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .about-card {
        padding: 2.5rem;
    }
}
@media(max-width: 768px){
    .main-content {
        margin-top: 3rem;
    }
}