/* Owner Details Section with Premium Animations */
.owner {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.owner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    animation: floatingOrb 8s ease-in-out infinite;
}

@keyframes floatingOrb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 50px);
    }
}

.owner-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.owner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #003d82;
    font-weight: 700;
    animation: sectionTitleReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.owner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    animation: ownerCardReveal 0.8s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes ownerCardReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.owner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.owner-photo {
    flex-shrink: 0;
    position: relative;
    animation: photoEnter 0.8s 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes photoEnter {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.owner-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #ffd700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.owner-img:hover {
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.owner-info {
    text-align: left;
    animation: infoEnter 0.8s 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes infoEnter {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.owner-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #003d82;
    font-weight: 600;
    transition: color 0.3s ease;
}

.owner-info h3:hover {
    color: #ffd700;
}

.owner-role {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.owner-role::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.owner-card:hover .owner-role::after {
    width: 100%;
}

.owner-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.owner-card:hover .owner-info p {
    color: #003d82;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .owner-card {
        flex-direction: column;
        text-align: center;
    }

    .owner-info {
        text-align: center;
    }

    .owner-img {
        width: 120px;
        height: 120px;
    }
}